@font-face {
    font-family: 'Silver Pen';
    src: url('Silver-Pen.woff2') format('woff2'),
    url('Silver-Pen.otf') format('opentype'),
    url('Silver-Pen.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    height:100%;
    margin:0px;
}

body {
    margin:0px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #333333;
    background-image: url("circuit-bg-tile-2_60-opacity.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    width:90vw;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.top-bar {
    height: 10px;
    background-color: #f26522;
}

.main {
    flex: 1;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.main-inner {
    padding: 3rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* equal-width columns */
    gap: 2rem;
    align-items: stretch;
}

.panel {
    display: flex;
}

.panel-inner {
    background-color: #ffffff;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

/* middle column: transparent background, no shadow */
.panel-copy .panel-inner {
    background-color: transparent;
    box-shadow: none;
}

.panel-logo {
    justify-content: center;
}

.panel-inner--logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 2.5rem;
    width:100%;
}

.logo-img {
    max-width: 100%;
    height: auto;
}

.hero-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 4.4rem;
    color: #f26522;
    font-family: 'Silver Pen', cursive;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-heading {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.panel-copy p {
    margin: 0 0 0.85rem;
    line-height: 1.6;
    font-size: 0.98rem;
}

.panel-services .panel-inner {
    padding-block: 2.25rem;
    width:100%;
}

.panel-section + .panel-section {
    margin-top: 1.75rem;
}

.section-heading {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #f26522;
}

.list {
    list-style: disc;
    padding-left: 1.1rem;
    margin: 0;
    font-size: 0.95rem;
}

.list li + li {
    margin-top: 0.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.75rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary {
    margin-top: 1.5rem;
    background-color: #f26522;
    color: #ffffff;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.18);
    transition: background-color 0.18s ease, transform 0.18s ease,
    box-shadow 0.18s ease;
    display: block;
    text-align: center;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: #d65317;
    transform: translateY(-1px);
    box-shadow: 0 10px 16px rgba(0, 0, 0, 0.24);
}

.footer {
    margin-top: 0;
    width:100%;
}

.footer-top {
    background-color: #404445;
    color: #ffffff;
    padding: 1.50rem 0;
    border-top:3px solid #f26522;
}

.footer-top-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-link {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.footer-link:hover,
.footer-link:focus-visible {
    text-decoration-thickness: 2px;
}

.footer-separator {
    color: #ffffff;
}

.footer-bottom {
    background-color: #474c4e;
    color: #ffffff;
    padding: 1.5rem 0 6rem 0;
}

.footer-bottom-inner {
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.footer-label {
    font-weight: 700;
    margin-right: 0.4rem;
}

/* Responsive */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.1fr 1.3fr;
        grid-template-rows: auto auto;
    }

    .panel-logo {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .panel-logo .panel-inner--logo {
        max-width: 340px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    body {
        margin:0px;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        color: #333333;
        background-image: url("circuit-bg-tile-2.png");
        background-repeat: repeat;
        background-size: cover;
    }
    .main {
        margin-bottom:0px;
    }
    .main-inner {
        padding: 2.5rem 0 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .panel-inner,
    .panel-inner--logo {
        padding: 1.75rem 1.5rem;
    }

    .panel-logo {
        width:100%;
    }

    .panel-logo .panel-inner {
        width:100%;
        max-width:100%;
        margin:25px;
    }

    .panel-copy .panel-inner {
        width:100%;
        margin:25px;
        padding:0px;
    }

    .panel-services .panel-inner {
        width:100%;
        margin:25px;
    }

    .hero-eyebrow {
        font-size: 4rem;
    }

    .hero-heading {
        font-size: 1.2rem;
    }

    .panel-copy p {
        font-size: 0.95rem;
    }

    .btn-primary {
        width: 100%;
    }

    .footer-top-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-separator {
        display: none;
    }

}

@media (max-width: 480px) {
    .hero-eyebrow {
        font-size: 1.1rem;
    }

    .hero-heading {
        font-size: 1.1rem;
    }

    .panel-inner--logo {
        padding: 1.5rem 1.25rem;
    }
}
