﻿
/* ============================================================
   PROJECT NIYUKTI SHAKTI — MOBILE-FIRST
   Base styles = 360px phone. Breakpoints scale UP:
     >=768px  tablet
     >=1024px desktop
   Colour: navy dominant · teal supporting · orange = CTA only
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #E8631A;
    --orange-dark: #C44D0C;
    --orange-soft: #FDF0E7;
    --navy: #1A1A1A;
    --teal: #E8631A;
    --teal-soft: #FDF0E7;
    --ink: #10233C;
    --ink-2: #4A5768;
    --ink-mute: #7C889A;
    --line: #E4E8EE;
    --line-2: #F0F3F7;
    --paper: #F8FAFC;
    --paper-2: #F1F5F9;
    --white: #fff;
    --serif: 'Fraunces',Georgia,serif;
    --sans: 'Inter',system-ui,-apple-system,sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sans);
    color: var(--ink-2);
    background: #fff;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

::selection {
    background: var(--navy);
    color: #fff;
}

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--navy);
    color: #fff;
    padding: 12px 20px;
    font-weight: 600;
}

    .skip-link:focus {
        left: 0;
    }

.vh {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- shared shell ---------- */
.wrap {
    max-width: 1160px;
    margin: 0 auto;
}

.section {
    padding: 38px 16px;
}

.section--paper {
    background: var(--paper);
    border-block: 1px solid var(--line);
}

.section--navy {
    background: var(--navy);
}

.kicker {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 10px;
}

.section--navy .kicker {
    color: #FFB888;
}

.s-head {
    margin-bottom: 26px;
}

    .s-head h2 {
        font-family: var(--serif);
        font-size: 26px;
        font-weight: 500;
        line-height: 1.18;
        letter-spacing: -.02em;
        color: var(--ink);
        margin-bottom: 10px;
    }

.section--navy .s-head h2 {
    color: #fff;
}

.s-head h2 em {
    font-style: italic;
    color: var(--orange);
}

.section--navy .s-head h2 em {
    color: #FFB888;
}

.s-head p {
    font-size: 14.5px;
    color: var(--ink-mute);
    line-height: 1.6;
}

.section--navy .s-head p {
    color: rgba(255,255,255,.7);
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 100px;
    min-height: 46px;
    font-size: 14.5px;
    font-weight: 600;
    border: 1.5px solid transparent;
    transition: background .2s,color .2s,border-color .2s,transform .2s;
    text-align: center;
}

.btn-primary {
    background: var(--orange);
    color: #fff !important;
}

    .btn-primary:hover {
        background: var(--orange-dark);
    }

.btn-onnavy {
    color: #fff !important;
    border-color: rgba(255,255,255,.35);
}

    .btn-onnavy:hover {
        background: rgba(255,255,255,.1);
        border-color: #fff;
    }

.btn-ghost {
    background: #fff;
    color: var(--navy) !important;
    border-color: var(--line);
}

    .btn-ghost:hover {
        border-color: var(--navy);
    }

.btn-teal {
    background: var(--teal);
    color: #fff !important;
}

    .btn-teal:hover {
        background: #0B5654;
    }

/* ============================================================
   NAV
   ============================================================ */
.bar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: 60px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: background .3s,border-color .3s;
}

    .bar.solid {
        background: rgba(255,255,255,.96);
        backdrop-filter: saturate(180%) blur(14px);
        -webkit-backdrop-filter: saturate(180%) blur(14px);
        border-bottom-color: var(--line);
    }

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    transition: color .3s;
    min-height: 44px;
}

.bar.solid .logo {
    color: var(--ink);
}

.logo .mark {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    flex-shrink: 0;
    background: #fff;
    color: var(--navy);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 600;
    transition: background .3s,color .3s;
}

.bar.solid .logo .mark {
    background: var(--navy);
    color: #fff;
}

.logo .mark span {
    color: var(--orange);
}

.logo .name {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.1;
    display: block;
}

.logo .sub {
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .7;
    display: block;
}

.nav-links {
    display: none;
    list-style: none;
}

    .nav-links.open {
        display: block;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 6px 16px 14px;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 14px 34px rgba(16,35,60,.1);
    }

        .nav-links.open li {
            border-bottom: 1px solid var(--line-2);
        }

            .nav-links.open li:last-child {
                border-bottom: none;
            }

        .nav-links.open a {
            display: block;
            padding: 13px 0;
            min-height: 44px;
            color: var(--ink-2);
            font-size: 14.5px;
            font-weight: 500;
        }

.nav-cta {
    display: none;
}

.nav-toggle {
    display: grid;
    place-items: center;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 22px;
    color: #fff;
}

.bar.solid .nav-toggle {
    color: var(--ink);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--navy);
    color: #fff;
    padding: 50px 16px 40px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -160px;
        right: -120px;
        width: 340px;
        height: 340px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(15,110,108,.3),transparent 70%);
        pointer-events: none;
    }

.hero-inner {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.07);
    padding: 6px 13px;
    border-radius: 100px;
    margin-bottom: 16px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: none;
}

    .eyebrow .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--orange);
    }

.hero h1 {
    font-family: var(--serif);
    font-size: 29px;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -.025em;
    color: #fff;
    margin-bottom: 12px;
}

    .hero h1 em {
        font-style: italic;
        color: #FFB888;
    }

.hero .sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: rgba(255,255,255,.9);
    margin-bottom: 14px;
}

.hero .lede {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255,255,255,.76);
    margin-bottom: 20px;
}

.pathway {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
    margin-bottom: 22px;
}

    .pathway li {
        background: rgba(255,255,255,.09);
        border: 1px solid rgba(255,255,255,.18);
        padding: 5px 10px;
        border-radius: 6px;
        font-size: 11px;
        font-weight: 600;
        color: #fff;
    }

        .pathway li:last-child {
            background: rgba(232,99,26,.2);
            border-color: rgba(255,184,136,.45);
            color: #FFB888;
        }

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 16px;
}

.tertiary-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    font-size: 13.5px;
    font-weight: 600;
    color: #FFB888;
}

.trust-line {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.14);
    font-size: 11.5px;
    color: rgba(255,255,255,.6);
    line-height: 1.8;
    padding-left: 20px;
}

    .trust-line .sep {
        color: rgba(255,255,255,.28);
        margin: 0 5px;
    }

/* ============================================================
   PHOTO SLOT — real photography only; labelled placeholder if absent
   ============================================================ */
.photo-slot {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--paper-2);
}

    .photo-slot img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 1;
    }

    .photo-slot.is-empty img {
        display: none;
    }

    .photo-slot .ph {
        position: absolute;
        inset: 0;
        z-index: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 18px;
        text-align: center;
        border: 1.5px dashed var(--line);
        border-radius: 12px;
        background: var(--paper-2);
    }

        .photo-slot .ph .tag {
            font-size: 9px;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--teal);
        }

        .photo-slot .ph .desc {
            font-size: 11.5px;
            color: var(--ink-mute);
            line-height: 1.45;
            max-width: 240px;
        }

.hero .photo-slot {
    aspect-ratio: 16/10;
    margin-top: 26px;
}

    .hero .photo-slot .ph {
        background: rgba(255,255,255,.05);
        border-color: rgba(255,255,255,.22);
    }

        .hero .photo-slot .ph .tag {
            color: #FFB888;
        }

        .hero .photo-slot .ph .desc {
            color: rgba(255,255,255,.6);
        }

/* ============================================================
   2 · TRANSITION GAP  (compact two-list comparison)
   ============================================================ */
.gap-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px 18px;
    background: #fff;
}

    .gap-card + .gap-card {
        margin-top: 12px;
    }

    .gap-card.have {
        border-left: 3px solid var(--teal);
    }

    .gap-card.need {
        border-left: 3px solid var(--orange);
    }

    .gap-card h3 {
        font-family: var(--serif);
        font-size: 17px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 12px;
    }

    .gap-card ul {
        list-style: none;
    }

    .gap-card li {
        font-size: 13.5px;
        color: var(--ink-2);
        line-height: 1.5;
        padding: 6px 0 6px 16px;
        position: relative;
    }

        .gap-card li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            width: 5px;
            height: 5px;
            border-radius: 50%;
        }

    .gap-card.have li::before {
        background: var(--teal);
    }

    .gap-card.need li::before {
        background: var(--orange);
    }

.response {
    margin-top: 16px;
    background: var(--navy);
    border-radius: 14px;
    padding: 22px 18px;
}

    .response h3 {
        font-family: var(--serif);
        font-size: 19px;
        font-weight: 500;
        line-height: 1.25;
        color: #fff;
        letter-spacing: -.015em;
        margin-bottom: 10px;
    }

        .response h3 em {
            font-style: italic;
            color: #FFB888;
        }

    .response p {
        font-size: 14px;
        line-height: 1.65;
        color: rgba(255,255,255,.75);
    }

        .response p + p {
            margin-top: 9px;
        }

/* ============================================================
   3 · JOURNEY — vertical rail on mobile, horizontal on desktop
   ============================================================ */
.timeline {
    position: relative;
}

    .timeline .rail {
        display: none;
    }

    .timeline ol {
        list-style: none;
        padding-left: 0px;
    }

.stage {
    position: relative;
    padding: 0 0 20px 48px;
}

    .stage::before {
        content: '';
        position: absolute;
        left: 18px;
        top: 40px;
        bottom: 0;
        width: 2px;
        background: var(--line);
    }

    .stage:last-child {
        padding-bottom: 0;
    }

        .stage:last-child::before {
            display: none;
        }

    .stage .node {
        position: absolute;
        left: 0;
        top: 0;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid var(--line);
        display: grid;
        place-items: center;
        font-family: var(--serif);
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
    }

    .stage:nth-child(3) .node {
        border-color: var(--orange);
        background: var(--orange);
        color: #fff;
    }

    .stage h3 {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 5px;
    }

    .stage:nth-child(3) h3 {
        color: var(--orange);
    }

    .stage .dur {
        display: inline-block;
        font-size: 10.5px;
        font-weight: 600;
        color: var(--ink-mute);
        background: var(--paper-2);
        border-radius: 4px;
        padding: 2px 7px;
        margin-bottom: 6px;
    }

    .stage p {
        font-size: 13.5px;
        line-height: 1.55;
        color: var(--ink-2);
    }

.journey-note {
    margin-top: 22px;
    background: var(--navy);
    border-radius: 14px;
    padding: 22px 18px;
}

    .journey-note .q {
        font-family: var(--serif);
        font-style: italic;
        font-size: 18px;
        color: #fff;
        line-height: 1.35;
        margin-bottom: 8px;
    }

        .journey-note .q em {
            color: #FFB888;
        }

    .journey-note .sm {
        font-size: 12.5px;
        color: rgba(255,255,255,.62);
        line-height: 1.55;
    }

/* ============================================================
   4 · WHY RECRUITMENT — compact rows
   ============================================================ */
.why-list {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.why-row {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line-2);
}

    .why-row:last-child {
        border-bottom: none;
    }

    .why-row .n {
        font-family: var(--serif);
        font-size: 13px;
        font-weight: 600;
        color: var(--teal);
        flex-shrink: 0;
        padding-top: 1px;
        width: 20px;
    }

    .why-row h3 {
        font-family: var(--serif);
        font-size: 16px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 4px;
        line-height: 1.3;
    }

    .why-row p {
        font-size: 13.5px;
        line-height: 1.55;
        color: var(--ink-2);
    }

.core-msg {
    margin-top: 14px;
    border-left: 3px solid var(--orange);
    background: var(--orange-soft);
    border-radius: 0 12px 12px 0;
    padding: 18px 20px;
}

    .core-msg p {
        font-family: var(--serif);
        font-style: italic;
        font-size: 16px;
        line-height: 1.45;
        color: var(--navy);
    }

/* ============================================================
   5 · CSR PARTNERSHIP
   ============================================================ */
.chain {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
}

    .chain li {
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 7px;
        padding: 7px 11px;
        font-size: 11.5px;
        font-weight: 600;
        color: #fff;
    }

        .chain li:last-child {
            background: rgba(232,99,26,.2);
            border-color: rgba(255,184,136,.45);
            color: #FFB888;
        }

.enable {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.enable-col {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 14px 16px;
}

    .enable-col h3 {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: #FFB888;
        margin-bottom: 8px;
    }

    .enable-col .tags {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

        .enable-col .tags span {
            font-size: 11.5px;
            color: rgba(255,255,255,.85);
            background: rgba(255,255,255,.07);
            border-radius: 5px;
            padding: 4px 8px;
        }

.fit {
    background: rgba(15,110,108,.16);
    border: 1px solid rgba(15,110,108,.4);
    border-radius: 12px;
    padding: 18px 18px;
    margin-bottom: 20px;
}

    .fit h3 {
        font-family: var(--serif);
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 10px;
    }

    .fit ul {
        list-style: none;
    }

    .fit li {
        font-size: 13px;
        color: rgba(255,255,255,.85);
        line-height: 1.5;
        padding: 5px 0 5px 20px;
        position: relative;
    }

        .fit li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 5px;
            color: #7FD4D2;
            font-weight: 700;
            font-size: 12px;
        }

.csr-actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.csr-note {
    margin-top: 16px;
    font-size: 11.5px;
    color: rgba(255,255,255,.5);
    line-height: 1.55;
}

/* ============================================================
   6 · MEASUREMENT — collapsed by default
   ============================================================ */
.flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-soft);
    border: 1px solid rgba(15,110,108,.3);
    color: var(--teal);
    padding: 7px 13px;
    border-radius: 7px;
    margin-bottom: 14px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ind-list {
    list-style: none;
}

    .ind-list li {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 12px;
        padding: 8px 0;
        border-bottom: 1px solid var(--line-2);
        font-size: 13.5px;
        color: var(--ink-2);
        line-height: 1.4;
    }

        .ind-list li:last-child {
            border-bottom: none;
        }

    .ind-list .val {
        flex-shrink: 0;
        font-size: 11px;
        font-style: italic;
        color: var(--ink-mute);
        white-space: nowrap;
        display: none;
    }

.integrity {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-left: 3px solid var(--orange);
    border-radius: 0 10px 10px 0;
    padding: 16px 18px;
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--ink-2);
    line-height: 1.6;
}

    .integrity strong {
        color: var(--ink);
    }

/* ============================================================
   7 · PARTICIPANT EXPERIENCE
   ============================================================ */
.exp {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
}

.exp-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px 18px;
}

    .exp-card h3 {
        font-family: var(--serif);
        font-size: 16px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 12px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--line-2);
    }

    .exp-card ul {
        list-style: none;
    }

    .exp-card li {
        font-size: 13.5px;
        color: var(--ink-2);
        line-height: 1.5;
        padding: 5px 0 5px 16px;
        position: relative;
    }

        .exp-card li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--teal);
        }

.sel-note {
    background: var(--teal-soft);
    border: 1px solid rgba(15,110,108,.22);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 14px;
}

    .sel-note p {
        font-family: var(--serif);
        font-style: italic;
        font-size: 15px;
        line-height: 1.5;
        color: var(--navy);
    }

.cand-cta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

    .cand-cta p {
        font-size: 13px;
        color: var(--ink-mute);
        margin-bottom: 12px;
    }

    .cand-cta .btn {
        width: 100%;
    }

/* ============================================================
   ACCORDIONS — native <details>, keyboard-accessible, zero JS
   ============================================================ */
.acc {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

    .acc + .acc {
        margin-top: 8px;
    }

    .acc summary {
        list-style: none;
        cursor: pointer;
        padding: 14px 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        font-size: 14px;
        font-weight: 600;
        color: var(--ink);
    }

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

        .acc summary .meta {
            font-size: 11px;
            font-weight: 500;
            color: var(--ink-mute);
        }

        .acc summary .chev {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--paper-2);
            color: var(--teal);
            display: grid;
            place-items: center;
            font-size: 10px;
            transition: transform .25s;
        }

    .acc[open] summary {
        background: var(--paper);
        border-bottom: 1px solid var(--line);
    }

        .acc[open] summary .chev {
            transform: rotate(180deg);
            background: var(--teal);
            color: #fff;
        }

    .acc .body {
        padding: 16px;
    }

        .acc .body p {
            font-size: 13.5px;
            line-height: 1.65;
            color: var(--ink-2);
        }

            .acc .body p + p {
                margin-top: 9px;
            }

        .acc .body ul {
            list-style: none;
            margin-top: 8px;
        }

        .acc .body li {
            font-size: 13.5px;
            color: var(--ink-2);
            line-height: 1.5;
            padding: 5px 0 5px 16px;
            position: relative;
        }

            .acc .body li::before {
                content: '';
                position: absolute;
                left: 0;
                top: 12px;
                width: 5px;
                height: 5px;
                border-radius: 50%;
                background: var(--teal);
            }

        .acc .body a {
            color: var(--teal);
            font-weight: 600;
            text-decoration: underline;
            display: inline-block;
            padding: 10px 0; /* tap target inside prose */
        }

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

    .steps span {
        background: var(--paper-2);
        border-radius: 5px;
        padding: 4px 9px;
        font-size: 11px;
        font-weight: 600;
        color: var(--navy);
    }

/* ============================================================
   8 · ECOSYSTEM
   ============================================================ */
.eco {
    display: grid;
    gap: 12px;
}

.eco-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

    .eco-card.primary {
        background: var(--navy);
        border-color: var(--navy);
    }

    .eco-card .flagline {
        font-size: 9.5px;
        font-weight: 700;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 8px;
    }

    .eco-card.primary .flagline {
        color: #FFB888;
    }

    .eco-card h3 {
        font-family: var(--serif);
        font-size: 18px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 6px;
    }

    .eco-card.primary h3 {
        color: #fff;
    }

    .eco-card > p {
        font-size: 13px;
        color: var(--ink-mute);
        line-height: 1.55;
        margin-bottom: 12px;
    }

    .eco-card.primary > p {
        color: rgba(255,255,255,.7);
    }

    .eco-card .tags {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 16px;
        flex: 1;
        align-content: flex-start;
    }

        .eco-card .tags span {
            font-size: 11.5px;
            color: var(--ink-2);
            background: var(--paper-2);
            border-radius: 5px;
            padding: 4px 8px;
        }

    .eco-card.primary .tags span {
        color: rgba(255,255,255,.85);
        background: rgba(255,255,255,.08);
    }

    .eco-card .btn {
        width: 100%;
    }

/* ============================================================
   10 · FINAL CTA + FORM
   ============================================================ */
.final-info {
    background: var(--navy);
    border-radius: 16px;
    padding: 24px 18px;
    margin-bottom: 12px;
}

    .final-info h2 {
        font-family: var(--serif);
        font-size: 23px;
        font-weight: 500;
        line-height: 1.2;
        color: #fff;
        letter-spacing: -.02em;
        margin-bottom: 10px;
    }

        .final-info h2 em {
            font-style: italic;
            color: #FFB888;
        }

    .final-info > p {
        font-size: 13.5px;
        line-height: 1.65;
        color: rgba(255,255,255,.72);
        margin-bottom: 16px;
    }

    .final-info .talk {
        border-top: 1px solid rgba(255,255,255,.14);
        padding-top: 14px;
        margin-bottom: 16px;
    }

        .final-info .talk h3 {
            font-size: 9.5px;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: #FFB888;
            margin-bottom: 9px;
        }

        .final-info .talk ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .final-info .talk li {
            background: rgba(255,255,255,.08);
            border-radius: 5px;
            padding: 4px 9px;
            font-size: 11px;
            color: rgba(255,255,255,.85);
        }

    .final-info .contact {
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 10px;
        padding: 14px 15px;
        margin-bottom: 14px;
    }

        .final-info .contact .row a {
            display: inline-flex;
            align-items: center;
            min-height: 30px;
        }

        .final-info .contact .row {
            display: flex;
            gap: 0px;
            padding: 4px 0;
            font-size: 12.5px;
            color: rgba(255,255,255,.85);
            line-height: 1.5;
        }

        .final-info .contact .k {
            font-size: 9.5px;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: rgba(255,255,255,.45);
            width: 52px;
            flex-shrink: 0;
            padding-top: 3px;
        }

    .final-info .btn {
        width: 100%;
    }

.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

    .form-card > header {
        padding: 18px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
    }

        .form-card > header h3 {
            font-family: var(--serif);
            font-size: 18px;
            font-weight: 600;
            color: var(--ink);
        }

        .form-card > header p {
            font-size: 12.5px;
            color: var(--ink-mute);
            margin-top: 2px;
        }

.form-body {
    padding: 18px;
}

.form-grid {
    display: grid;
    gap: 13px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

    .field label {
        font-size: 12px;
        font-weight: 600;
        color: var(--ink);
    }

        .field label .req {
            color: var(--orange);
        }

        .field label .opt {
            font-weight: 400;
            color: var(--ink-mute);
        }

    .field input, .field select, .field textarea {
        font-family: inherit;
        font-size: 16px; /* 16px stops iOS zoom-on-focus */
        padding: 12px 13px;
        min-height: 48px;
        border: 1.5px solid var(--line);
        border-radius: 9px;
        background: #fff;
        color: var(--ink);
        width: 100%;
        transition: border-color .18s, box-shadow .18s;
        -webkit-appearance: none;
        appearance: none;
    }

        .field input::placeholder, .field textarea::placeholder {
            color: #A9B4C2;
        }

        .field input:focus, .field select:focus, .field textarea:focus {
            outline: none;
            border-color: var(--navy);
            box-shadow: 0 0 0 4px rgba(18,49,90,.08);
        }

    .field select {
        cursor: pointer;
        padding-right: 36px;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='%237C889A' d='M6 8L0 0h12z'/></svg>");
        background-repeat: no-repeat;
        background-position: right 13px center;
        background-size: 10px;
    }

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

    .field .err {
        font-size: 12px;
        color: #B4231A;
        font-weight: 500;
        display: none;
    }

    .field.invalid input, .field.invalid select, .field.invalid textarea {
        border-color: #B4231A;
    }

    .field.invalid .err {
        display: block;
    }

.consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 13px 14px;
}

    .consent input[type=checkbox] {
        width: 20px;
        height: 20px;
        min-height: 20px;
        margin-top: 2px;
        flex-shrink: 0;
        accent-color: var(--navy);
        cursor: pointer;
        -webkit-appearance: auto;
        appearance: auto;
    }

    .consent label {
        font-size: 12.5px;
        color: var(--ink-2);
        line-height: 1.5;
        font-weight: 400;
        cursor: pointer;
    }

    .consent a {
        color: var(--teal);
        font-weight: 600;
        text-decoration: underline;
        padding: 6px 0;
        display: inline-block;
    }

    .consent.invalid {
        border-color: #B4231A;
        background: #FEF4F3;
    }

/* Honeypot — invisible to people, reachable to bots */
.hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.form-foot {
    margin-top: 16px;
}

    .form-foot .btn {
        width: 100%;
    }

    .form-foot .meta {
        font-size: 11.5px;
        color: var(--ink-mute);
        margin-top: 10px;
        text-align: center;
        line-height: 1.5;
    }

.form-status {
    display: none;
    margin-bottom: 14px;
    background: #FEF4F3;
    border: 1px solid #F0C4C0;
    border-left: 3px solid #B4231A;
    border-radius: 0 9px 9px 0;
    padding: 12px 14px;
    font-size: 13px;
    color: #8C1C15;
    font-weight: 500;
}

    .form-status.show {
        display: block;
    }

.form-success {
    display: none;
    padding: 34px 20px;
    text-align: center;
}

    .form-success.show {
        display: block;
    }

    .form-success .tick {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--teal);
        color: #fff;
        display: grid;
        place-items: center;
        font-size: 24px;
        margin: 0 auto 12px;
    }

    .form-success h3 {
        font-family: var(--serif);
        font-size: 19px;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 8px;
    }

    .form-success p {
        font-size: 13.5px;
        color: var(--ink-2);
        line-height: 1.6;
    }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
    background: var(--navy);
    color: rgba(255,255,255,.6);
    padding: 40px 16px 22px;
}

.foot-grid {
    display: grid;
    gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.foot .logo {
    color: #fff;
    margin-bottom: 12px;
}

    .foot .logo .mark {
        background: #fff;
        color: var(--navy);
    }

.foot-brand p {
    font-size: 12.5px;
    line-height: 1.65;
    color: rgba(255,255,255,.5);
}

.foot-col h4 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 11px;
}

.foot-col ul {
    list-style: none;
}

.foot-col li {
    margin-bottom: 0;
}

.foot-col a {
    font-size: 12.5px;
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    min-height: 44px; /* tap target */
}

    .foot-col a:hover {
        color: var(--orange);
    }

.foot-contact {
    font-size: 12.5px;
    line-height: 1.8;
    color: rgba(255,255,255,.6);
}

    .foot-contact a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }

.foot-bottom {
    display: grid;
    gap: 5px;
    font-size: 11.5px;
    color: rgba(255,255,255,.4);
}

/* ============================================================
   STICKY CSR CTA (mobile) — hides over the form, minimises to FAB
   ============================================================ */
.sticky-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 90;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    box-shadow: 0 12px 34px -6px rgba(16,35,60,.3);
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
    transform: translateY(calc(100% + 18px));
    opacity: 0;
    visibility: hidden;
    transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .25s, visibility .25s;
}

    .sticky-cta.visible {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .sticky-cta .row {
        display: flex;
        gap: 6px;
        flex: 1;
        min-width: 0;
    }

        .sticky-cta .row a {
            flex: 1;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 8px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }

    .sticky-cta .s-primary {
        background: var(--orange);
        color: #fff !important;
    }

    .sticky-cta .s-secondary {
        background: var(--paper);
        color: var(--navy) !important;
        border: 1px solid var(--line);
    }

    .sticky-cta .close {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid var(--line);
        background: var(--paper);
        color: var(--ink-mute);
        font-size: 14px;
        display: grid;
        place-items: center;
    }

.sticky-fab {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 90;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--orange);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(232,99,26,.42);
    display: grid;
    place-items: center;
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .25s, visibility .25s;
}

    .sticky-fab.visible {
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }

/* ============================================================
   MOBILE FORM SHEET
   The real form node is MOVED in here on mobile (not cloned), so
   IDs, listeners and validation stay intact. Desktop never uses it.
   ============================================================ */
.sheet {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
}

    .sheet.open {
        display: block;
    }

.sheet-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16,35,60,.55);
    opacity: 0;
    transition: opacity .3s;
}

.sheet.open .sheet-backdrop {
    opacity: 1;
}

.sheet-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 94dvh;
    background: #fff;
    border-radius: 18px 18px 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.16,1,.3,1);
    box-shadow: 0 -10px 40px rgba(16,35,60,.28);
}

.sheet.open .sheet-panel {
    transform: translateY(0);
}

.sheet-grab {
    width: 38px;
    height: 4px;
    border-radius: 2px;
    background: var(--line);
    margin: 9px auto 0;
    flex-shrink: 0;
}

.sheet-head {
    padding: 12px 16px 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}

    .sheet-head h2 {
        font-family: var(--serif);
        font-size: 17px;
        font-weight: 600;
        color: var(--ink);
        line-height: 1.25;
    }

    .sheet-head p {
        font-size: 11.5px;
        color: var(--ink-mute);
        margin-top: 2px;
    }

    .sheet-head .x {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid var(--line);
        background: var(--paper);
        color: var(--ink-2);
        font-size: 15px;
        display: grid;
        place-items: center;
    }

.sheet-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    flex: 1;
}
    /* form-card sheds its own chrome inside the sheet */
    .sheet-body .form-card {
        border: none;
        border-radius: 0;
    }

        .sheet-body .form-card > header {
            display: none;
        }

body.sheet-locked {
    overflow: hidden;
}

/* On mobile the sheet owns the form, so the inline copy is dead scroll.
   .js-guarded: without JS there is no sheet and the inline form stays. */
.js #formHome {
    display: none;
}

.form-inline-cta {
    display: none;
}

.js .form-inline-cta {
    display: block;
}

.form-inline-cta .btn {
    width: 100%;
}

.form-inline-cta .meta {
    font-size: 11.5px;
    color: var(--ink-mute);
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
}

/* ============================================================
   >= 768px  TABLET
   ============================================================ */
@media (min-width:768px) {
    body {
        font-size: 15.5px;
    }

    .section {
        padding: 64px 28px;
    }

    .s-head {
        margin-bottom: 34px;
        max-width: 660px;
    }

        .s-head h2 {
            font-size: 32px;
        }

        .s-head p {
            font-size: 15.5px;
        }

    .hero {
        padding: 104px 28px 60px;
    }

        .hero h1 {
            font-size: 40px;
        }

        .hero .sub {
            font-size: 19px;
        }

        .hero .lede {
            font-size: 15.5px;
            max-width: 600px;
        }

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

    .hero .photo-slot {
        aspect-ratio: 21/8;
    }

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

    .gap-card + .gap-card {
        margin-top: 0;
    }

    .response {
        padding: 26px 28px;
    }

        .response h3 {
            font-size: 22px;
        }

    .why-row {
        padding: 18px 22px;
    }

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

    .fit ul {
        columns: 2;
        column-gap: 24px;
    }

    .csr-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .eco-card.primary {
        grid-column: span 2;
    }

    .cand-cta {
        display: flex;
        align-items: center;
        gap: 16px;
    }

        .cand-cta p {
            margin-bottom: 0;
            flex: 1;
        }

        .cand-cta .btn {
            width: auto;
        }

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

    .field.full, .consent {
        grid-column: 1 / -1;
    }

    .form-foot {
        display: flex;
        align-items: center;
        gap: 16px;
    }

        .form-foot .btn {
            width: auto;
            min-width: 250px;
        }

        .form-foot .meta {
            margin-top: 0;
            text-align: left;
        }

    .form-body {
        padding: 24px;
    }

    .foot {
        padding: 52px 28px 26px;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .foot-bottom {
        display: flex;
        justify-content: space-between;
    }
}

/* ============================================================
   >= 1024px  DESKTOP
   ============================================================ */
@media (min-width:1024px) {
    .section {
        padding: 50px 32px 15px;
    }

    .s-head h2 {
        font-size: 38px;
    }

    .bar {
        height: 70px;
        padding: 0 32px;
    }

    .nav-links {
        display: flex;
        gap: 24px;
        align-items: center;
    }

        .nav-links a {
            font-size: 13.5px;
            font-weight: 500;
            color: rgba(255,255,255,.9);
        }

    .bar.solid .nav-links a {
        color: var(--ink-2);
    }

    .nav-links a:hover {
        color: var(--orange);
    }

    .nav-cta {
        display: inline-flex;
        background: var(--orange);
        color: #fff !important;
        padding: 10px 20px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
    }

        .nav-cta:hover {
            background: var(--orange-dark);
        }

    .nav-toggle {
        display: none;
    }

    .logo .mark {
        width: 38px;
        height: 38px;
        font-size: 21px;
    }

    .logo .name {
        font-size: 17px;
    }

    .logo .sub {
        font-size: 10px;
    }

    .hero {
        padding: 50px 32px 20px;
    }

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

    .hero h1 {
        font-size: 50px;
    }

    .hero .photo-slot {
        aspect-ratio: 4/3.3;
        margin-top: 0;
    }

    /* Horizontal timeline */
    .timeline .rail {
        display: block;
        position: absolute;
        top: 19px;
        left: 8%;
        right: 8%;
        height: 2px;
        background: var(--line);
        z-index: 0;
    }

    .timeline ol {
        display: grid;
        grid-template-columns: repeat(5,1fr);
        gap: 14px;
    }

    .stage {
        padding: 0;
        position: relative;
        z-index: 1;
    }

        .stage::before {
            display: none;
        }

        .stage .node {
            position: static;
            margin-bottom: 14px;
        }

    .journey-note {
        display: flex;
        align-items: center;
        gap: 28px;
        padding: 28px 32px;
    }

        .journey-note .q {
            font-size: 22px;
            margin-bottom: 0;
            flex: 1;
        }

        .journey-note .sm {
            max-width: 280px;
        }

    .why-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .why-row {
        border-bottom: 1px solid var(--line-2);
    }

        .why-row:nth-child(odd) {
            border-right: 1px solid var(--line-2);
        }

        .why-row:nth-last-child(-n+1) {
            border-bottom: none;
        }

    .chain li {
        font-size: 12.5px;
        padding: 8px 13px;
    }

    .enable {
        grid-template-columns: repeat(4,1fr);
    }

    .ind-grid {
        display: grid;
        grid-template-columns: 3fr 3fr 3fr;
        gap: 8px;
        align-items: start;
    }

        .ind-grid .acc + .acc {
            margin-top: 0;
        }

    .eco {
        grid-template-columns: 1.2fr 1fr 1fr;
        align-items: stretch;
    }

    .eco-card.primary {
        grid-column: auto;
    }

    .eco-card .btn {
        width: auto;
        align-self: flex-start;
    }

    .final-grid {
        display: grid;
        grid-template-columns: .78fr 1.22fr;
        gap: 18px;
        align-items: start;
    }

    .final-info {
        margin-bottom: 0;
        position: sticky;
        top: 88px;
        padding: 30px 26px;
    }

        .final-info h2 {
            font-size: 28px;
        }

    .form-body {
        padding: 26px;
    }

    .foot-grid {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
        gap: 44px;
    }

    /* Sticky bar and form sheet are mobile affordances —
     desktop has the nav CTA and the inline two-column form */
    .sticky-cta, .sticky-fab, .sheet {
        display: none !important;
    }

    .js #formHome {
        display: block;
    }

    .js .form-inline-cta {
        display: none;
    }
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}
