/* ============================= TOKENS ============================= */
    :root {
        --ink: #0a0d1c;
        --navy: #0a0f24;
        --navy-soft: #121a40;
        --navy-line: rgba(255, 255, 255, .12);
        --brand: #000ea5;
        --brand-light: #3245e0;
        --brand-pale: #e7e9fb;
        --steel-50: #f5f6f9;
        --steel-100: #eceef3;
        --steel-300: #d6dae3;
        --steel-500: #6b7180;
        --steel-700: #3a3f4d;
        --ember: #ff6a1f;
        --white: #ffffff;
        --radius: 6px;
        --radius-lg: 10px;
        --font-display: 'Oswald', sans-serif;
        --font-body: 'Manrope', sans-serif;
        --font-mono: 'JetBrains Mono', monospace;
        --container: 1240px;
        --shadow-card: 0 1px 2px rgba(10, 13, 28, .04), 0 8px 24px -12px rgba(10, 13, 28, .12);
        --shadow-card-hover: 0 1px 2px rgba(10, 13, 28, .06), 0 16px 32px -12px rgba(10, 13, 28, .18);
    }

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

    html {
        scroll-behavior: smooth;
    }

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

        *,
        *::before,
        *::after {
            animation-duration: .001ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: .001ms !important;
            scroll-behavior: auto !important;
        }
    }

    body {
        margin: 0;
        font-family: var(--font-body);
        color: var(--ink);
        background: var(--white);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }

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

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

    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    h1,
    h2,
    h3,
    h4 {
        font-family: var(--font-display);
        margin: 0;
        font-weight: 600;
        letter-spacing: .01em;
    }

    p {
        margin: 0;
    }

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

    input,
    textarea {
        font-family: inherit;
        font-size: 1rem;
    }

    section {
        position: relative;
    }

    .container {
        max-width: var(--container);
        margin-inline: auto;
        padding-inline: 24px;
    }

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

    :focus-visible {
        outline: 2px solid var(--ember);
        outline-offset: 2px;
    }

    /* eyebrow / labels */
    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-mono);
        font-size: .75rem;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--brand);
        margin-bottom: 14px;
    }

    .eyebrow::before {
        content: "";
        width: 22px;
        height: 2px;
        background: var(--ember);
        display: inline-block;
    }

    .eyebrow.on-dark {
        color: #9aa6ff;
    }

    .section-head {
        max-width: 680px;
        margin-bottom: 48px;
    }

    .section-head h2 {
        font-size: clamp(1.7rem, 3vw, 2.5rem);
        color: var(--ink);
        line-height: 1.15;
    }

    .section-head p {
        margin-top: 14px;
        color: var(--steel-700);
        font-size: 1.05rem;
    }

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

    /* dimension-line motif — engineering-drawing detail used as the signature device */
    .dim {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-mono);
    }

    .dim::before,
    .dim::after {
        content: "";
        width: 14px;
        height: 1px;
        background: currentColor;
        opacity: .5;
    }

    /* buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 26px;
        border-radius: var(--radius);
        font-family: var(--font-body);
        font-weight: 700;
        font-size: .95rem;
        border: 1.5px solid transparent;
        transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
        white-space: nowrap;
    }

    .btn-primary {
        background: var(--brand);
        color: var(--white);
    }

    .btn-primary:hover {
        background: var(--brand-light);
        box-shadow: 0 10px 24px -10px rgba(0, 14, 165, .55);
        transform: translateY(-1px);
    }

    .btn-ghost {
        background: transparent;
        color: var(--white);
        border-color: rgba(255, 255, 255, .35);
    }

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

    .btn-outline {
        background: transparent;
        color: var(--brand);
        border-color: var(--brand);
    }

    .btn-outline:hover {
        background: var(--brand);
        color: #fff;
    }

    .btn-ember {
        background: var(--ember);
        color: #fff;
    }

    .btn-ember:hover {
        background: #e85e16;
        box-shadow: 0 10px 24px -10px rgba(255, 106, 31, .55);
        transform: translateY(-1px);
    }

    .btn-block {
        width: 100%;
    }

    /* ============================= HEADER ============================= */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--steel-300);
    }

    .header-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding-block: 14px;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .brand img {
        height: 58px;
        width: auto;
    }

    .main-nav {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .main-nav a {
        font-size: .92rem;
        font-weight: 600;
        color: var(--steel-700);
        position: relative;
        padding-block: 4px;
        transition: color .15s ease;
    }

    .main-nav a::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -2px;
        height: 2px;
        background: var(--ember);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .2s ease;
    }

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

    .main-nav a:hover::after {
        transform: scaleX(1);
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 22px;
        flex-shrink: 0;
    }

    .header-phone {
        text-align: right;
        display: flex;
        flex-direction: column;
        line-height: 1.25;
    }

    .header-phone a {
        font-family: var(--font-display);
        font-weight: 600;
        font-size: 1.02rem;
        color: var(--ink);
    }

    .header-phone span {
        font-size: .72rem;
        color: var(--steel-500);
    }

    .nav-toggle {
        display: none;
        background: none;
        border: 0;
        padding: 6px;
    }

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--ink);
        margin: 5px 0;
        transition: transform .2s ease, opacity .2s ease;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width:980px) {
        .main-nav {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--white);
            border-bottom: 1px solid var(--steel-300);
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
            padding: 8px 24px 18px;
            max-height: 0;
            overflow: hidden;
            transition: max-height .25s ease;
        }

        .main-nav.is-open {
            max-height: 420px;
        }

        .main-nav a {
            width: 100%;
            padding-block: 12px;
            border-bottom: 1px solid var(--steel-100);
        }

        .main-nav a::after {
            display: none;
        }

        .nav-toggle {
            display: block;
        }

        .header-phone {
            display: none;
        }
    }

    @media (max-width:560px) {
        .header-actions .btn {
            padding: 10px 16px;
            font-size: .85rem;
        }

        .brand img {
            height: 44px;
        }
    }

    /* ============================= HERO ============================= */
    .hero {
        background:
            radial-gradient(900px 500px at 85% -10%, rgba(0, 14, 165, .35), transparent 60%),
            var(--navy);
        color: #fff;
        position: relative;
        overflow: hidden;
        padding-top: clamp(48px, 7vw, 84px);
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(var(--navy-line) 1px, transparent 1px),
            linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
        background-size: 42px 42px;
        mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55), transparent 75%);
        -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55), transparent 75%);
        opacity: .5;
        pointer-events: none;
    }

    .hero-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 48px;
        align-items: center;
        padding-bottom: 64px;
    }

    .hero-copy h1 {
        font-size: clamp(2.3rem, 4.6vw, 3.6rem);
        line-height: 1.08;
        color: #fff;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .hero-copy h1 em {
        font-style: normal;
        color: #9aa6ff;
    }

    .hero-copy>p {
        font-size: 1.08rem;
        color: #c4c9e0;
        max-width: 540px;
        margin-bottom: 32px;
    }

    .hero-ctas {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin-bottom: 52px;
    }

    .hero-ctas .btn-ghost svg {
        width: 18px;
        height: 18px;
    }

    .hero-badges {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: var(--navy-line);
        border: 1px solid var(--navy-line);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .hero-badge {
        background: rgba(255, 255, 255, .03);
        padding: 20px 18px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .hero-badge svg {
        width: 26px;
        height: 26px;
        color: var(--ember);
        flex-shrink: 0;
    }

    .hero-badge strong {
        font-family: var(--font-display);
        font-size: .86rem;
        letter-spacing: .02em;
        text-transform: uppercase;
        color: #fff;
    }

    .hero-badge span {
        font-size: .78rem;
        color: #9aa1c2;
        line-height: 1.4;
    }

    /* hero blueprint illustration */
    .hero-art {
        position: relative;
        aspect-ratio: 1/1;
        max-width: 480px;
        justify-self: end;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-art::before {
        content: "";
        position: absolute;
        inset: 6%;
        border: 1px dashed rgba(255, 255, 255, .18);
        border-radius: 50%;
    }

    .hero-art::after {
        content: "";
        position: absolute;
        inset: 18%;
        background: radial-gradient(circle, rgba(50, 69, 224, .35), transparent 70%);
        border-radius: 50%;
    }

    .hero-logo {
        position: relative;
        z-index: 1;
        width: 62%;
        filter: brightness(0) invert(1) drop-shadow(0 18px 36px rgba(0, 0, 0, .4));
    }

    .stamp {
        position: absolute;
        right: -6px;
        bottom: -18px;
        width: 118px;
        height: 118px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px dashed rgba(255, 255, 255, .55);
        border-radius: 50%;
        transform: rotate(-9deg);
        text-align: center;
        font-family: var(--font-mono);
        color: #fff;
        background: rgba(10, 15, 36, .55);
        backdrop-filter: blur(2px);
    }

    .stamp-inner {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .stamp-inner b {
        font-size: .92rem;
        letter-spacing: .04em;
    }

    .stamp-inner span {
        font-size: .58rem;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: #9aa1c2;
    }

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

        .hero-art {
            justify-self: center;
            max-width: 340px;
            margin-top: 8px;
        }

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

    @media (max-width:560px) {
        .hero-ctas {
            flex-direction: column;
        }

        .hero-ctas .btn {
            width: 100%;
        }
    }

    /* ============================= ABOUT ============================= */
    .section-about {
        padding-block: clamp(64px, 8vw, 104px);
        background: var(--white);
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
    }

    .about-copy p {
        color: var(--steel-700);
        font-size: 1.05rem;
        margin-bottom: 18px;
    }

    .about-copy p:last-child {
        margin-bottom: 0;
    }

    .stat-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: var(--steel-300);
        border: 1px solid var(--steel-300);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .stat-cell {
        background: var(--steel-50);
        padding: 24px 18px;
    }

    .stat-cell .dim {
        color: var(--steel-500);
        font-size: .7rem;
        letter-spacing: .08em;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .stat-cell strong {
        display: block;
        font-family: var(--font-display);
        font-size: clamp(1.5rem, 2.4vw, 2.1rem);
        color: var(--brand);
        line-height: 1;
    }

    .stat-cell small {
        display: block;
        margin-top: 6px;
        font-size: .82rem;
        color: var(--steel-700);
    }

    @media (max-width:980px) {
        .about-grid {
            grid-template-columns: 1fr;
            gap: 36px;
        }
    }

    @media (max-width:640px) {
        .stat-row {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* ============================= PRODUCTION (capability cards) ============================= */
    .section-production {
        padding-block: clamp(64px, 8vw, 104px);
        background: var(--steel-50);
    }

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

    .cap-card {
        background: var(--white);
        border: 1px solid var(--steel-300);
        border-radius: var(--radius-lg);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-shadow: var(--shadow-card);
        transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .cap-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-card-hover);
        border-color: var(--brand);
    }

    .cap-art {
        aspect-ratio: 16/10;
        background: var(--navy);
        position: relative;
        overflow: hidden;
    }

    .cap-art::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(var(--navy-line) 1px, transparent 1px), linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
        background-size: 28px 28px;
    }

    .cap-art svg {
        position: relative;
        width: 78%;
        height: 78%;
        margin: auto;
        display: block;
        top: 11%;
    }

    .cap-art img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: relative;
        z-index: 1;
    }

    .cap-body {
        padding: 28px 28px 30px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .cap-body .dim {
        color: var(--brand);
        font-size: .74rem;
        letter-spacing: .1em;
        margin-bottom: 10px;
    }

    .cap-body h3 {
        font-size: 1.3rem;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .cap-list {
        margin-bottom: 20px;
        flex: 1;
    }

    .cap-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
        color: var(--steel-700);
        font-size: .96rem;
    }

    .cap-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55em;
        width: 8px;
        height: 2px;
        background: var(--ember);
    }

    .cap-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 700;
        color: var(--brand);
        font-size: .92rem;
    }

    .cap-link svg {
        width: 16px;
        height: 16px;
        transition: transform .18s ease;
    }

    .cap-card:hover .cap-link svg {
        transform: translateX(4px);
    }

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

    /* ============================= EQUIPMENT / ADVANTAGES ============================= */
    .section-equipment {
        padding-block: clamp(64px, 8vw, 104px);
        background: var(--white);
    }

    .adv-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        background: var(--steel-300);
        border: 1px solid var(--steel-300);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .adv-card {
        background: var(--white);
        padding: 32px 28px;
        transition: background .18s ease;
    }

    .adv-card:hover {
        background: var(--steel-50);
    }

    .adv-card svg {
        width: 30px;
        height: 30px;
        color: var(--brand);
        margin-bottom: 18px;
    }

    .adv-card h3 {
        font-size: 1.02rem;
        text-transform: none;
        font-weight: 700;
        font-family: var(--font-body);
        margin-bottom: 8px;
        line-height: 1.35;
    }

    .adv-card p {
        font-size: .88rem;
        color: var(--steel-500);
        line-height: 1.5;
    }

    @media (max-width:820px) {
        .adv-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

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

    /* ============================= GALLERY (products) ============================= */
    .section-gallery {
        padding-block: clamp(64px, 8vw, 104px);
        background: var(--steel-50);
    }

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

    .gal-card {
        background: var(--white);
        border: 1px solid var(--steel-300);
        border-radius: var(--radius-lg);
        padding: 22px 20px 20px;
        transition: transform .2s ease, box-shadow .2s ease;
    }

    .gal-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-card-hover);
    }

    .gal-art {
        aspect-ratio: 4/3;
        display: flex;
        align-items: center;
        justify-content: center;
        background:
            linear-gradient(var(--steel-100) 1px, transparent 1px), linear-gradient(90deg, var(--steel-100) 1px, transparent 1px);
        background-size: 14px 14px;
        border-radius: var(--radius);
        margin-bottom: 16px;
        overflow: hidden;
    }

    .gal-art svg {
        width: 62%;
        height: 62%;
        color: var(--brand);
    }

    .gal-art img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .gal-meta strong {
        display: block;
        font-family: var(--font-display);
        font-size: 1rem;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .gal-meta span {
        font-family: var(--font-mono);
        font-size: .76rem;
        color: var(--steel-500);
    }

    .gal-note {
        margin-top: 28px;
        font-size: .86rem;
        color: var(--steel-500);
        text-align: center;
    }

    @media (max-width:820px) {
        .gal-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

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

    /* ============================= QUALITY ============================= */
    .section-quality {
        padding-block: clamp(64px, 8vw, 104px);
        background: var(--navy);
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .section-quality::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(var(--navy-line) 1px, transparent 1px), linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
        background-size: 42px 42px;
        opacity: .45;
    }

    .quality-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
    }

    .quality-copy .section-head {
        margin-bottom: 28px;
    }

    .quality-copy .section-head h2,
    .quality-copy .section-head p {
        color: #fff;
    }

    .quality-copy .section-head p {
        color: #c4c9e0;
    }

    .q-list {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .q-item {
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .q-item svg {
        width: 24px;
        height: 24px;
        color: var(--ember);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .q-item strong {
        display: block;
        font-size: .98rem;
        margin-bottom: 3px;
    }

    .q-item span {
        font-size: .88rem;
        color: #9aa1c2;
    }

    .quality-panel {
        border: 1px solid var(--navy-line);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .03);
        padding: 36px;
        position: relative;
    }

    .iso-badge {
        display: flex;
        align-items: center;
        gap: 16px;
        padding-bottom: 24px;
        margin-bottom: 24px;
        border-bottom: 1px dashed var(--navy-line);
    }

    .iso-badge svg {
        width: 46px;
        height: 46px;
        color: var(--ember);
        flex-shrink: 0;
    }

    .iso-badge strong {
        display: block;
        font-family: var(--font-display);
        font-size: 1.05rem;
    }

    .iso-badge span {
        font-size: .8rem;
        color: #9aa1c2;
    }

    .tol-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-block: 12px;
        border-bottom: 1px solid var(--navy-line);
        font-family: var(--font-mono);
        font-size: .86rem;
    }

    .tol-row:last-child {
        border-bottom: 0;
    }

    .tol-row span:first-child {
        color: #9aa1c2;
    }

    .tol-row span:last-child {
        color: #fff;
        font-weight: 600;
    }

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

    /* drawing photo */
    .quality-drawing {
        position: relative;
        z-index: 1;
        margin-top: 48px;
        border: 1px solid var(--navy-line);
        border-radius: var(--radius-lg);
        overflow: hidden;
        background: rgba(255, 255, 255, .03);
    }

    .quality-drawing img {
        width: 100%;
        height: auto;
        display: block;
    }

    .quality-drawing figcaption {
        padding: 16px 20px;
        font-size: .86rem;
        color: #9aa1c2;
        border-top: 1px solid var(--navy-line);
        font-family: var(--font-mono);
    }

    /* industries strip */
    .industries {
        position: relative;
        z-index: 1;
        margin-top: 56px;
        padding-top: 40px;
        border-top: 1px solid var(--navy-line);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
    }

    .ind-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 10px 18px;
    }

    .ind-item svg {
        width: 30px;
        height: 30px;
        color: #9aa6ff;
        flex-shrink: 0;
    }

    .ind-item span {
        font-size: .88rem;
        color: #c4c9e0;
        font-weight: 600;
    }

    @media (max-width:760px) {
        .industries {
            grid-template-columns: 1fr;
            gap: 16px;
        }
    }

    /* ============================= CTA FORM ============================= */
    .section-cta {
        padding-block: clamp(56px, 7vw, 84px);
        background: var(--brand);
        position: relative;
        overflow: hidden;
    }

    .section-cta::after {
        content: "";
        position: absolute;
        right: -80px;
        top: -80px;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, .12), transparent 70%);
    }

    .cta-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 48px;
        align-items: center;
    }

    .cta-copy h2 {
        color: #fff;
        font-size: clamp(1.5rem, 2.6vw, 2.1rem);
        text-transform: uppercase;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .cta-copy p {
        color: #d4d8ff;
        font-size: 1rem;
        max-width: 420px;
    }

    .lead-form {
        background: #fff;
        border-radius: var(--radius-lg);
        padding: 28px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .4);
    }

    .lead-form .field-full {
        grid-column: 1/-1;
    }

    .lead-form label {
        display: block;
        font-size: .78rem;
        font-weight: 700;
        color: var(--steel-700);
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: .04em;
    }

    .lead-form input,
    .lead-form textarea {
        width: 100%;
        border: 1.5px solid var(--steel-300);
        border-radius: var(--radius);
        padding: 12px 14px;
        font-size: .95rem;
        color: var(--ink);
        background: var(--steel-50);
        transition: border-color .15s ease, background .15s ease;
    }

    .lead-form input:focus,
    .lead-form textarea:focus {
        outline: none;
        border-color: var(--brand);
        background: #fff;
    }

    .lead-form textarea {
        resize: vertical;
        min-height: 70px;
    }

    .lead-form .consent {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        font-size: .78rem;
        color: var(--steel-500);
    }

    .lead-form .consent input {
        width: auto;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .form-status {
        grid-column: 1/-1;
        font-size: .88rem;
        font-weight: 600;
        min-height: 0;
    }

    .form-status.success {
        color: #0a8a4a;
    }

    .form-status.error {
        color: #c4291c;
    }

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

    @media (max-width:560px) {
        .lead-form {
            grid-template-columns: 1fr;
            padding: 22px;
        }
    }

    /* ============================= CONTACT ============================= */
    .section-contact {
        padding-block: clamp(64px, 8vw, 104px);
        background: var(--white);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: .85fr 1.15fr;
        gap: 48px;
    }

    .contact-list {
        display: flex;
        flex-direction: column;
        gap: 26px;
    }

    .contact-row {
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .contact-row svg {
        width: 24px;
        height: 24px;
        color: var(--brand);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .contact-row strong {
        display: block;
        font-size: .78rem;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--steel-500);
        margin-bottom: 4px;
    }

    .contact-row a,
    .contact-row p {
        font-size: 1rem;
        color: var(--ink);
        font-weight: 600;
    }

    .map-frame {
        border: 1px solid var(--steel-300);
        border-radius: var(--radius-lg);
        overflow: hidden;
        min-height: 340px;
        background: var(--steel-100);
    }

    .map-frame iframe {
        width: 100%;
        height: 100%;
        min-height: 340px;
        border: 0;
        display: block;
    }

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

    /* ============================= FOOTER ============================= */
    .site-footer {
        background: var(--ink);
        color: #9aa1c2;
        padding-block: 48px 28px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1.3fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 36px;
    }

    .footer-brand img {
        height: 34px;
        margin-bottom: 14px;
        filter: brightness(0) invert(1);
    }

    .footer-brand p {
        font-size: .88rem;
        line-height: 1.6;
        max-width: 320px;
    }

    .footer-col h4 {
        color: #fff;
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .06em;
        font-weight: 700;
        margin-bottom: 16px;
        font-family: var(--font-body);
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col a {
        font-size: .9rem;
        transition: color .15s ease;
    }

    .footer-col a:hover {
        color: #fff;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, .1);
        padding-top: 22px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        font-size: .8rem;
    }

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

        .footer-brand {
            grid-column: 1/-1;
        }
    }

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

    /* reveal on scroll */
    .reveal {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity .6s ease, transform .6s ease;
    }

    .reveal.in-view {
        opacity: 1;
        transform: none;
    }