:root {
    --green: #16865f;
    --green-dark: #0f684a;
    --green-light: #e9f5f0;

    --navy: #152b3a;
    --text: #24333d;
    --muted: #687780;

    --background: #ffffff;
    --background-soft: #f6f8f7;
    --border: #e3e9e6;

    --max-width: 1180px;
    --radius: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);
    background: var(--background);
    line-height: 1.6;
}

a {
    color: inherit;
}

.container {
    width: min(calc(100% - 48px), var(--max-width));
    margin-inline: auto;
}




/* ANCHOR OFFSET */

html {
    scroll-padding-top: 96px;
}

section[id] {
    scroll-margin-top: 96px;
}


/* HEADER */

.site-header {
    height: 78px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
}

.logo-symbol {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--green);
    color: white;
    font-size: 11px;
    letter-spacing: .03em;
}

.logo-text {
    font-size: 22px;
    color: var(--navy);
}

.logo-text span {
    color: var(--green);
}

.main-nav {
    display: flex;
    gap: 32px;
    margin-left: auto;
}

.main-nav a {
    text-decoration: none;
    color: #52616a;
    font-size: 14px;
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--green);
}


/* BUTTONS */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 999px;
    background: var(--green);
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: .2s ease;
}

.button:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.button-small {
    min-height: 42px;
    padding-inline: 20px;
    font-size: 14px;
}

.button-secondary {
    background: white;
    color: var(--navy);
    border: 1px solid var(--border);
}

.button-secondary:hover {
    background: var(--background-soft);
}


/* HERO */

.hero {
    background:
        radial-gradient(circle at 85% 30%, #e8f4ef 0, transparent 32%),
        linear-gradient(180deg, #fbfcfb, #f5f8f6);
    overflow: hidden;
}

.hero-inner {
    min-height: 630px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
}

.eyebrow,
.section-label {
    display: inline-block;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero h1 {
    margin: 0;
    max-width: 650px;
    color: var(--navy);
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -.045em;
}

.hero-intro {
    max-width: 590px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 34px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 34px;
    color: #607078;
    font-size: 13px;
    font-weight: 600;
}

.trust-row span::before {
    content: "✓";
    margin-right: 7px;
    color: var(--green);
}


/* PCB HERO GRAPHIC */

.hero-visual {
    display: flex;
    justify-content: center;
}

.pcb-graphic {
    position: relative;
    width: min(440px, 100%);
    aspect-ratio: 1.25;
    border-radius: 30px;
    background:
        linear-gradient(135deg, #167b5b, #0d5f47);
    box-shadow:
        0 35px 80px rgba(20, 70, 55, .18);
    overflow: hidden;
}

.pcb-graphic::before,
.pcb-graphic::after {
    content: "";
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
}

.pcb-graphic::after {
    inset: 60px;
}

.pcb-chip {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    display: grid;
    place-items: center;
    background: #17313c;
    border: 8px solid #d8b75d;
    color: white;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .08em;
    box-shadow: 0 15px 30px rgba(0,0,0,.18);
}

.trace {
    position: absolute;
    background: rgba(226,190,93,.75);
}

.trace-1 {
    width: 140px;
    height: 2px;
    left: 20px;
    top: 28%;
}

.trace-2 {
    width: 2px;
    height: 130px;
    right: 22%;
    top: 20px;
}

.trace-3 {
    width: 170px;
    height: 2px;
    right: 15px;
    bottom: 25%;
}

.trace-4 {
    width: 2px;
    height: 130px;
    left: 24%;
    bottom: 10px;
}


/* SECTIONS */

.section {
    padding: 105px 0;
}

.section-muted {
    background: var(--background-soft);
}

.section-heading {
    max-width: 700px;
    margin-bottom: 52px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section h2,
.contact-cta h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -.025em;
}

.section-heading p {
    color: var(--muted);
    font-size: 17px;
}


/* SERVICES */

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    transition: .2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(20,50,40,.08);
}

.service-number {
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.service-card h3 {
    color: var(--navy);
    margin: 16px 0 10px;
    font-size: 20px;
}

.service-card p {
    color: var(--muted);
    font-size: 14px;
}

.service-card a {
    display: inline-block;
    margin-top: 12px;
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}



.production-section {
    background: #ffffff;
    padding-top: 70px;
    padding-bottom: 70px;
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.production-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
}

.production-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.production-card-copy {
    padding: 24px;
}

.production-card h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 20px;
}

.production-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.production-card-placeholder {
    display: grid;
    place-items: center;
    min-height: 100%;
    background: var(--background-soft);
}

.production-placeholder {
    padding: 34px;
}

.production-placeholder > span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

/* PROCESS */

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.process-step {
    text-align: center;
    padding: 10px 30px;
}

.process-step > span {
    width: 48px;
    height: 48px;
    margin-inline: auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    font-weight: 800;
}

.process-step h3 {
    color: var(--navy);
    margin-top: 20px;
}

.process-step p {
    color: var(--muted);
    font-size: 14px;
}


/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.about-copy {
    color: var(--muted);
    font-size: 17px;
}

.about-copy p:first-child {
    margin-top: 0;
}



.about-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 28px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
}

.about-points span::before {
    content: "✓";
    margin-right: 8px;
    color: var(--green);
}


/* CONTACT */

.contact-cta {
    padding: 85px 0;
    background: var(--navy);
    color: white;
}

.contact-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.contact-cta h2 {
    color: white;
    max-width: 700px;
}

.contact-cta p {
    max-width: 650px;
    color: #b9c6cc;
}

.section-label.light {
    color: #79d3b1;
}

.button-light {
    flex-shrink: 0;
    background: white;
    color: var(--navy);
}



.contact-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 24px;
    color: #d6e1e5;
    font-size: 13px;
    font-weight: 700;
}

.contact-requirements span::before {
    content: "✓";
    margin-right: 7px;
    color: #79d3b1;
}

/* FOOTER */

.site-footer {
    padding: 55px 0 24px;
    background: #10232f;
    color: #aebbc2;
    font-size: 13px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 42px;
}

.footer-brand strong {
    display: block;
    color: white;
    font-size: 23px;
    margin-bottom: 12px;
}

.footer-brand strong span {
    color: #79d3b1;
}

.footer-brand p {
    max-width: 340px;
    margin: 0;
    color: #aebbc2;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-column h3 {
    margin: 0 0 8px;
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-column a {
    color: #aebbc2;
    text-decoration: none;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #82959f;
    font-size: 12px;
}

.footer-bottom a {
    color: #82959f;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}



/* SERVICES PAGE */

.page-hero {
    padding: 110px 0 85px;
    background: var(--background-soft);
}

.page-hero-inner {
    max-width: 820px;
}

.page-hero h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.page-hero p {
    margin-top: 24px;
    max-width: 720px;
    color: var(--muted);
    font-size: 19px;
}

@media (max-width: 700px) {

    .quote-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .quote-intro {
        position: static;
    }

    .quote-intro h2 {
        font-size: 30px;
    }

    .quote-form {
        padding: 24px;
        border-radius: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-submit {
        flex-direction: column;
        align-items: stretch;
    }

    .form-submit .button {
        width: 100%;
    }



    .production-flow {
        gap: 55px;
    }

    .production-flow-step {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .production-flow-step-reverse .production-flow-image,
    .production-flow-step-reverse .production-flow-graphic,
    .production-flow-step-reverse .production-flow-copy {
        order: initial;
    }

    .production-flow-image img {
        height: 240px;
    }

    .production-flow-graphic {
        height: 190px;
    }



    .service-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 42px 0;
    }

    .service-section-heading h2 {
        font-size: 28px;
    }


    .page-hero {
        padding: 75px 0 60px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    }



.service-sections {
    display: flex;
    flex-direction: column;
}

.service-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    padding: 58px 0;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 110px;
}

.service-section:first-child {
    padding-top: 0;
}

.service-section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.service-section-heading h2 {
    margin: 14px 0 0;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.15;
}

.service-section-content > p {
    margin-top: 0;
    color: var(--muted);
    font-size: 17px;
}

.service-list {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

.service-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text);
    font-weight: 600;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 800;
}


/* PRODUCTION PAGE */

.production-flow {
    display: flex;
    flex-direction: column;
    gap: 88px;
}

.production-flow-step {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 72px;
}

.production-flow-step-reverse .production-flow-image,
.production-flow-step-reverse .production-flow-graphic {
    order: 2;
}

.production-flow-step-reverse .production-flow-copy {
    order: 1;
}

.production-flow-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    box-shadow: 0 24px 55px rgba(20, 50, 40, .10);
}

.production-flow-copy h2 {
    margin: 14px 0 12px;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.15;
}

.production-flow-copy p {
    color: var(--muted);
    font-size: 17px;
}

.production-flow-graphic {
    height: 300px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background:
        linear-gradient(135deg, var(--green-light), var(--background-soft));
}

.production-flow-graphic span {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: white;
    color: var(--green);
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(20, 50, 40, .08);
}



/* QUOTE FORM */

.quote-section {
    background: #f7f9f8;
}

.quote-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 80px;
    align-items: start;
}

.quote-intro {
    position: sticky;
    top: 110px;
}

.quote-intro h2 {
    margin: 14px 0 20px;
    color: var(--navy);
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.quote-intro > p {
    color: var(--muted);
    font-size: 16px;
}

.quote-help-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
    display: grid;
    gap: 12px;
}

.quote-help-list li {
    position: relative;
    padding-left: 27px;
    color: var(--navy);
    font-weight: 700;
}

.quote-help-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 800;
}

.quote-note {
    padding-top: 22px;
    border-top: 1px solid var(--border);
    font-size: 14px !important;
}

.quote-form {
    padding: 42px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(20, 50, 40, .08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    margin-bottom: 24px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 750;
}

.form-field label > span[aria-hidden="true"] {
    color: var(--green);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ccd6d9;
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    font: inherit;
    font-size: 15px;
    outline: none;
    transition:
        border-color .15s ease,
        box-shadow .15s ease;
}

.form-field textarea {
    min-height: 170px;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #8a9aa1;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(24, 104, 86, .10);
}

.file-upload {
    padding: 22px;
    border: 1px dashed #b8c9c3;
    border-radius: 12px;
    background: #f8fbfa;
}

.file-upload input[type="file"] {
    width: 100%;
    color: var(--text);
    font: inherit;
    font-size: 14px;
}

.file-upload input[type="file"]::file-selector-button {
    margin-right: 14px;
    padding: 10px 16px;
    border: 0;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.file-upload p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.form-consent {
    padding: 18px 0 4px;
    border-top: 1px solid var(--border);
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--green);
    flex: 0 0 auto;
}

.form-submit {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.form-submit .button {
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.form-submit p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.form-status {
    margin-top: 20px;
}

/* MOBILE */

.hero-image {
    width: 100%;
    max-width: 560px;
    height: 350px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(20, 50, 40, 0.16);
}



/* Process timeline */
.process-grid {
    position: relative;
}

.process-grid::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 16.666%;
    right: 16.666%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
}

.process-number {
    position: relative;
    z-index: 2;
    background: var(--green-light);
}




@media (max-width: 900px) {

    .process-grid::before {
        display: none;
    }

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



    .main-nav {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 40px;
        gap: 44px;
    }

    .hero-visual {
        order: initial;
    }
.pcb-graphic {
        max-width: 360px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

}

@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 32px), var(--max-width));
    }

    .site-header .button {
        display: none;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.06;
    }

    .hero-image {
        width: 100%;
        max-width: none;
        height: 240px;
        border-radius: 18px;
    }

    .hero-intro {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .service-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        gap: 42px;
    }

    .process-step {
        padding: 0;
    }

    .section {
        padding: 75px 0;
    }

    .contact-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

.file-upload-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.file-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--green);
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    cursor: pointer;
}

.file-button:hover {
    background: var(--green-dark);
}

#file-selection {
    color: var(--muted);
    font-size: 14px;
}



/* FORM SECTIONS V2 */

.form-section {
    margin-bottom: 34px;
}

.form-section:last-of-type {
    margin-bottom: 28px;
}

.form-section-title {
    margin-bottom: 22px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #eef5f2;
    color: var(--navy);
    font-size: 18px;
    font-weight: 800;
}

.form-options {
    margin: 0 0 24px;
    padding: 0;
    border: 0;
}

.form-options legend {
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 750;
}

.form-options label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
}

.form-options input[type="radio"] {
    width: 17px;
    height: 17px;
    margin-top: 3px;
    accent-color: var(--green);
    flex: 0 0 auto;
}



/* FAQ */

.faq-section {
    background: #f7f9f8;
}

.faq-heading {
    max-width: 680px;
    margin-bottom: 46px;
}

.faq-heading h2 {
    margin: 12px 0 16px;
    color: var(--navy);
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.faq-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    align-items: start;
}

.faq-column {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition:
        border-color .15s ease,
        box-shadow .15s ease;
}

.faq-item:hover {
    border-color: #b9c9c3;
}

.faq-item[open] {
    box-shadow: 0 10px 30px rgba(20, 50, 40, .06);
}

.faq-item summary {
    position: relative;
    padding: 20px 54px 20px 22px;
    color: var(--navy);
    font-size: 16px;
    font-weight: 750;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 22px 21px;
}

.faq-answer p {
    margin: 0;
    padding-top: 17px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 700px) {

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .faq-column {
        gap: 14px;
    }

    .faq-heading {
        margin-bottom: 30px;
    }

    .faq-heading h2 {
        font-size: 32px;
    }

    .faq-item summary {
        padding: 18px 50px 18px 18px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }
}


/* MOBILE STICKY HEADER FIX */
@media (max-width: 900px) {

    .site-header {
        background: #fff;
    }

    html {
        scroll-padding-top: 110px;
    }

    section[id] {
        scroll-margin-top: 110px;
    }
}


/* MOBILE MENU */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 5px auto;
    border-radius: 2px;
    background: var(--navy);
    transition:
        transform .2s ease,
        opacity .2s ease;
}

@media (max-width: 900px) {

    .header-inner {
        position: relative;
    }

    .menu-toggle {
        display: block;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 17px);
        left: 0;
        right: 0;
        z-index: 200;
        margin: 0;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 18px 45px rgba(20, 50, 40, .14);
    }

    .main-nav.is-open {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .main-nav a {
        display: block;
        padding: 14px 15px;
        border-radius: 8px;
        font-size: 16px;
    }

    .main-nav a:hover {
        background: #f2f7f5;
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (max-width: 600px) {

    .header-inner {
        gap: 12px;
    }

    .menu-toggle {
        margin-left: auto;
    }
}


/* MOBILE QUOTE LINK */

.mobile-quote-link {
    display: none !important;
}

@media (max-width: 900px) {

    .main-nav .mobile-quote-link {
        display: flex !important;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        margin-top: 8px;
        padding: 0 20px;
        border-radius: 999px;
        background: var(--green);
        color: #fff;
        font-weight: 700;
        text-align: center;
    }

    .main-nav .mobile-quote-link:hover {
        background: var(--green-dark);
        color: #fff;
    }
}

/* QUOTE PAGE MOBILE FIX */

@media (max-width: 900px) {

    .quote-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;
    }

    .quote-intro {
        position: static;
        width: 100%;
        min-width: 0;
        max-width: none;
    }

    .quote-form {
        position: static;
        width: 100%;
        min-width: 0;
        max-width: none;
        box-sizing: border-box;
    }
}

@media (max-width: 600px) {

    .quote-section {
        padding-top: 48px;
        padding-bottom: 64px;
    }

    .quote-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .quote-intro h2 {
        font-size: 32px;
        line-height: 1.08;
    }

    .quote-form {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .form-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .form-field,
    .form-field input,
    .form-field textarea,
    .form-field select {
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .form-submit {
        align-items: flex-start;
    }
}



/* PRODUCTION CAPACITY */

.capacity-section {
    background: #f7f9f8;
}

.capacity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--border);
}

.capacity-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 24px;
    align-items: center;
    padding: 22px 26px;
    background: #fff;
}

.capacity-label {
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.capacity-item strong {
    color: var(--navy);
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 700px) {

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

    .capacity-item {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 20px;
    }
}


/* SECTION MORE */

.section-more {
    margin-top: 28px;
}

.section-more a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.section-more a:hover {
    color: var(--green-dark);
}


