/* ==========================================================================
   Clatani — design system
   A clean, high-end B2B enterprise aesthetic (Stripe / Snowflake / Vercel
   register): deep slate navy, soft cool-gray surfaces, cyan/teal accents,
   generous whitespace, thin borders, subtle glass and shadow depth.
   No build step — plain CSS, loaded once site-wide.
   ========================================================================== */

/* --- 1. Design tokens ---------------------------------------------------- */
:root {
    /* Color */
    --navy: #0F172A;
    --navy-soft: #1E293B;
    --navy-line: #263145;
    --surface: #F8FAFC;
    --white: #FFFFFF;
    --cyan: #0EA5E9;
    --teal: #14B8A6;
    --accent-gradient: linear-gradient(90deg, var(--cyan), var(--teal));
    --border: #E2E8F0;
    --text: #0F172A;
    --text-body: #475569;
    --text-muted: #64748B;
    --text-on-dark: #FFFFFF;
    --text-on-dark-muted: #94A3B8;
    --text-on-dark-body: #CBD5E1;

    /* Type */
    --font-sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;

    /* Shape */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    /* Elevation */
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-sm: 0 4px 12px -4px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 16px 32px -12px rgba(15, 23, 42, 0.14);
    --shadow-lg: 0 28px 56px -16px rgba(15, 23, 42, 0.22);

    /* Motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --dur: 0.2s;

    /* Layout */
    --container-max: 1280px;
    --gutter-desktop: 40px;
    --gutter-tablet: 28px;
    --gutter-mobile: 20px;
}

/* --- 2. Reset -------------------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-sans);
    font-weight: 400;
    background-color: var(--white);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

a { color: inherit; text-decoration: none; }
img, picture { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--navy);
    color: var(--white);
    padding: 12px 18px;
    z-index: 10000;
    border-radius: 0 0 var(--radius-sm) 0;
    font-weight: 600;
}
.skip-link:focus { left: 0; }

/* --- 3. Buttons ------------------------------------------------------------*/
.btn-contact,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 26px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14.5px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease),
                border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
    white-space: nowrap;
}

.btn-contact {
    background: var(--navy);
    color: var(--white);
}
.btn-contact:hover { background: var(--cyan); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-contact:active { transform: translateY(0); }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--border);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

/* --- 4. Header & navigation -------------------------------------------- */
.main-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px var(--gutter-desktop);
    gap: 24px;
}

.brand-logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.04em;
    transition: color var(--dur) var(--ease);
}
.brand-logo:hover { color: var(--cyan); }

nav { flex: 1; display: flex; justify-content: center; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-item-root { position: relative; }

.menu-item-root > span,
.menu-item-root > a {
    font-size: 14.5px;
    font-weight: 600;
    color: #334155;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.menu-item-root:hover > span,
.menu-item-root > a:hover,
.menu-item-root > a[aria-current="page"] {
    color: var(--navy);
    background: var(--surface);
}

/* Mega dropdown */
.mega-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    width: 380px;
    padding: 10px;
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.menu-item-root:hover .mega-dropdown,
.menu-item-root:focus-within .mega-dropdown {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-list { display: flex; flex-direction: column; gap: 2px; }

.dropdown-link {
    display: block;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    transition: background-color var(--dur) var(--ease);
}
.dropdown-link:hover,
.dropdown-link:focus-visible { background: var(--surface); }

.dropdown-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.dropdown-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

.btn-contact-wrapper { display: flex; align-items: center; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: var(--surface); }

@media (max-width: 968px) {
    .nav-menu { display: none; }
    .btn-contact-wrapper { display: none; }
    .nav-toggle { display: block; }

    .nav-menu.mobile-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: 69px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 12px var(--gutter-mobile) 32px;
        overflow-y: auto;
        z-index: 9998;
    }
    .nav-menu.mobile-open .menu-item-root { width: 100%; padding: 4px 0; border-bottom: 1px solid var(--border); }
    .nav-menu.mobile-open .menu-item-root > span,
    .nav-menu.mobile-open .menu-item-root > a { width: 100%; padding: 14px 4px; }
    .nav-menu.mobile-open .mega-dropdown {
        display: none;
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        background: none;
        backdrop-filter: none;
        opacity: 1;
        padding: 0 0 12px 8px;
    }
    .nav-menu.mobile-open .menu-item-root.mobile-expanded .mega-dropdown { display: block; }
    .btn-contact-wrapper.mobile-visible { display: flex; margin-top: 16px; }
}

/* --- 5. Hero section (home) --------------------------------------------- */
.hero-section {
    padding: 96px var(--gutter-desktop) 100px;
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 72px;
}

.hero-content { max-width: 620px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}
.hero-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gradient);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-desc { font-size: 18px; color: var(--text-body); margin-bottom: 36px; line-height: 1.65; max-width: 54ch; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-ctas .btn-contact,
.hero-ctas .btn-outline { padding: 14px 30px; font-size: 15.5px; }

.hero-media { position: relative; }
.hero-media::before {
    content: "";
    position: absolute;
    inset: -8%;
    background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.16), transparent 60%);
    z-index: -1;
}
.hero-media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

/* --- 6. Inner-page hero (verticals, solutions, company, forms) --------- */
.page-hero {
    padding: 80px var(--gutter-desktop) 56px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.page-hero-inner { max-width: 680px; }
.page-hero .hero-eyebrow { margin-bottom: 18px; }
.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.14;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.page-hero p { font-size: 17.5px; color: var(--text-body); line-height: 1.65; }

/* Two-column variant with a supporting photo */
.page-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 56px;
    max-width: var(--container-max);
}
.page-hero-grid .page-hero-inner { max-width: 100%; }
.page-hero-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

/* --- 7. Content sections -------------------------------------------------*/
.section { padding: 80px var(--gutter-desktop); }
.section-container { max-width: var(--container-max); margin: 0 auto; }
.section-tint { background: var(--surface); }
.section-border-top { border-top: 1px solid var(--border); }

.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head h2 { font-size: 32px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 14px; }
.section-head p { font-size: 17px; color: var(--text-body); line-height: 1.6; }

/* Company intro copy (home) */
.about-intro { max-width: 760px; text-align: left; }
.about-intro h2 { font-size: 34px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 22px; }
.about-intro p { font-size: 17.5px; color: var(--text-body); line-height: 1.7; margin-bottom: 16px; }
.about-intro p:last-child { margin-bottom: 0; }

/* --- 8. Card grid (industries / solutions) --------------------------------*/
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.card-grid.cols-2 { grid-template-columns: 1fr 1fr; }

.feature-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.feature-card .icon-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(20, 184, 166, 0.12));
    color: var(--cyan);
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 700;
}

.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.01em; }
.feature-card p { font-size: 15px; color: var(--text-body); line-height: 1.6; }

.feature-card-link {
    display: block;
    color: inherit;
}
.feature-card-link:hover,
.feature-card-link:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: var(--shadow-md);
    outline: none;
}

@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .card-grid, .card-grid.cols-2 { grid-template-columns: 1fr; } }


/* --- 8b. Editorial numbered feature list ---------------------------------*/
.feature-list { border-top: 1px solid var(--border); }
.feature-row {
    display: grid;
    grid-template-columns: 96px minmax(220px, 330px) 1fr;
    gap: 44px;
    align-items: baseline;
    padding: 38px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.feature-row::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--accent-gradient);
    transition: width 0.35s var(--ease);
}
.feature-row:hover::before,
.feature-row:focus-visible::before { width: 72px; }

.feature-num {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.9;
}
.feature-row h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.01em;
    transition: color var(--dur) var(--ease);
}
.feature-row > p {
    font-size: 15.5px;
    color: var(--text-body);
    line-height: 1.65;
    max-width: 58ch;
}

/* Link variant (used for navigational rows, e.g. home "Who we serve") */
a.feature-row-link {
    grid-template-columns: 96px minmax(220px, 330px) 1fr 34px;
    color: inherit;
    outline: none;
}
.feature-row-link .arrow {
    justify-self: end;
    align-self: center;
    font-size: 20px;
    color: var(--text-muted);
    transition: transform var(--dur) var(--ease), color var(--dur) var(--ease);
}
.feature-row-link:hover h3,
.feature-row-link:focus-visible h3 { color: var(--cyan); }
.feature-row-link:hover .arrow,
.feature-row-link:focus-visible .arrow { transform: translateX(6px); color: var(--cyan); }

@media (max-width: 900px) {
    .feature-row, a.feature-row-link { grid-template-columns: 56px 1fr; gap: 18px 24px; padding: 28px 0; }
    .feature-num { font-size: 26px; }
    .feature-row > p { grid-column: 2; }
    .feature-row-link .arrow { grid-column: 2; justify-self: start; }
}

/* --- 8c. Industry insight strip ------------------------------------------*/
.insight-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 85% 15%, rgba(20, 184, 166, 0.07), transparent 45%),
        linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(20, 184, 166, 0.04));
    padding: 72px var(--gutter-desktop);
}
.insight-inner { max-width: var(--container-max); margin: 0 auto; }
.insight-grid {
    display: grid;
    grid-template-columns: minmax(240px, 400px) 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 22px;
}
.insight-stat {
    font-size: 96px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.045em;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.insight-copy h3 { font-size: 25px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 12px; }
.insight-copy p { font-size: 16.5px; color: var(--text-body); line-height: 1.65; max-width: 62ch; }
.insight-note { font-size: 12.5px; color: var(--text-muted); margin-top: 14px; }
@media (max-width: 900px) {
    .insight-strip { padding: 52px var(--gutter-tablet); }
    .insight-grid { grid-template-columns: 1fr; gap: 24px; }
    .insight-stat { font-size: 64px; }
}
@media (max-width: 640px) { .insight-strip { padding-left: var(--gutter-mobile); padding-right: var(--gutter-mobile); } }

/* --- 9. Trusted-by logo marquee (home) ------------------------------------*/
.trusted-section { padding: 52px var(--gutter-desktop); overflow: hidden; }
.trusted-label {
    text-align: center;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.logo-marquee {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.logo-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: logo-scroll 30s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-chip {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.65;
    transition: opacity var(--dur) var(--ease);
}
.logo-chip:hover { opacity: 1; }
@keyframes logo-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .logo-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* --- 10. Dark stat band -------------------------------------------------- */
/* Generic dark band (used by any inner page that wants the same treatment) */
.dark-band { background-color: var(--navy); color: var(--text-on-dark); padding: 80px var(--gutter-desktop); }
.dark-band .section-container { display: flex; flex-direction: column; gap: 36px; }
.dark-band h2 { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.dark-band p { color: var(--text-on-dark-body); font-size: 16px; max-width: 640px; line-height: 1.6; }

.dark-band .band-head { max-width: 640px; }
.dark-band .band-head p { margin-top: 4px; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat-item {
    border-top: 2px solid var(--navy-line);
    padding-top: 22px;
    position: relative;
}
.stat-item::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 44px;
    height: 2px;
    background: var(--accent-gradient);
}
.stat-item .kicker {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cyan);
    margin-bottom: 10px;
}
.stat-item .num {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-on-dark);
    letter-spacing: -0.03em;
    line-height: 1.05;
}
.stat-item .desc { font-size: 13.5px; color: var(--text-on-dark-muted); margin-top: 10px; line-height: 1.55; max-width: 30ch; }
.stat-item .label { font-size: 12.5px; color: var(--text-on-dark-muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 960px) { .stat-row { grid-template-columns: 1fr 1fr; } .stat-item .num { font-size: 36px; } }
@media (max-width: 520px) { .stat-row { grid-template-columns: 1fr; } }

/* --- 11. CTA band ----------------------------------------------------------*/
.cta-band {
    padding: 96px var(--gutter-desktop);
    text-align: center;
    border-top: 1px solid var(--border);
}
.cta-band .section-container { max-width: 620px; margin: 0 auto; }
.cta-band h2 { font-size: 32px; font-weight: 800; color: var(--navy); margin-bottom: 28px; letter-spacing: -0.02em; }
.cta-band .btn-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-contact,
.cta-band .btn-outline { padding: 13px 28px; font-size: 15px; }

/* --- 12. Forms (contact / support intake) --------------------------------*/
.form-shell {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) { .form-shell { padding: 26px 20px; } }

.form-section-title {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--cyan);
    margin: 34px 0 18px;
}
.form-section-title:first-child { margin-top: 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-field .hint { font-size: 12.5px; color: var(--text-muted); margin-top: 6px; }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.14);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.check-group, .radio-group { display: flex; flex-direction: column; gap: 10px; }
.check-option, .radio-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
    transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.check-option:hover, .radio-option:hover { border-color: var(--cyan); background: var(--surface); }
.check-option input, .radio-option input { margin-top: 3px; accent-color: var(--cyan); }
.check-option .opt-title, .radio-option .opt-title { font-weight: 600; font-size: 14.5px; color: var(--navy); }
.check-option .opt-desc, .radio-option .opt-desc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

.urgency-row { display: flex; gap: 10px; flex-wrap: wrap; }
.urgency-pill {
    flex: 1;
    min-width: 90px;
    text-align: center;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 10px 8px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-body);
    transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.urgency-pill input { display: none; }
.urgency-pill:has(input:checked) { border-color: var(--cyan); color: var(--cyan); background: rgba(14, 165, 233, 0.06); }

.conditional-block {
    display: none;
    border-left: 3px solid var(--cyan);
    padding-left: 20px;
    margin: 6px 0;
}
.conditional-block.is-active { display: block; }

.form-status { margin-top: 18px; font-size: 13.5px; color: var(--cyan); font-weight: 600; }

/* --- 12b. Partner logos ---------------------------------------------------*/
.logo-chip .pl-svg { height: 32px; width: auto; display: block; font-family: var(--font-sans); }
.logo-chip { display: inline-flex; align-items: center; }

.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.partner-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.partner-card:hover { transform: translateY(-3px); border-color: rgba(14, 165, 233, 0.45); box-shadow: var(--shadow-md); }
.partner-card .partner-logo-wrap { height: 36px; display: flex; align-items: center; margin-bottom: 16px; }
.partner-card .partner-logo-wrap .pl-svg { height: 30px; width: auto; font-family: var(--font-sans); }
.partner-card p { font-size: 14px; color: var(--text-body); line-height: 1.6; }
@media (max-width: 900px) { .partner-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .partner-grid { grid-template-columns: 1fr; } }

/* --- 13. Footer -------------------------------------------------------------*/
.site-footer-main { background: var(--navy); color: var(--text-on-dark); padding: 68px var(--gutter-desktop) 28px; }
.footer-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--navy-line);
}

.footer-brand .brand-logo { color: var(--text-on-dark); }
.footer-brand p { color: var(--text-on-dark-muted); font-size: 14px; margin-top: 14px; max-width: 30ch; line-height: 1.6; }

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--text-on-dark-muted);
    margin-bottom: 18px;
}
.footer-col a {
    display: block;
    color: var(--text-on-dark-body);
    font-size: 14px;
    margin-bottom: 11px;
    transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 12.5px;
    color: #64748B;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* --- 14. Responsive ---------------------------------------------------------*/
@media (max-width: 1080px) {
    .header-container { padding: 16px var(--gutter-tablet); }
    .hero-section,
    .page-hero,
    .section,
    .trusted-section,
    .dark-band,
    .cta-band,
    .site-footer-main { padding-left: var(--gutter-tablet); padding-right: var(--gutter-tablet); }
}

@media (max-width: 968px) {
    .hero-section { grid-template-columns: 1fr; text-align: center; padding-top: 64px; padding-bottom: 72px; gap: 48px; }
    .hero-content { max-width: 100%; margin: 0 auto; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-title { font-size: 38px; }
    .hero-ctas { justify-content: center; }

    .page-hero-grid { grid-template-columns: 1fr; text-align: left; gap: 32px; }
    .page-hero-media { order: -1; }

    .page-hero { padding: 56px var(--gutter-tablet) 36px; }
    .page-hero h1 { font-size: 32px; }

    .section { padding: 56px var(--gutter-tablet); }
    .about-intro h2 { font-size: 28px; }

    .dark-band { padding: 56px var(--gutter-tablet); }
    .cta-band { padding: 64px var(--gutter-tablet); }
    .site-footer-main { padding: 48px var(--gutter-tablet) 24px; }
}

@media (max-width: 640px) {
    .header-container { padding: 14px var(--gutter-mobile); }
    .brand-logo { font-size: 22px; }
    .hero-section,
    .page-hero,
    .section,
    .trusted-section,
    .dark-band,
    .cta-band,
    .site-footer-main { padding-left: var(--gutter-mobile); padding-right: var(--gutter-mobile); }
    .hero-title { font-size: 32px; }
    .section-head h2, .about-intro h2 { font-size: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
}
