:root {
    --bg: #050505;
    --panel: #0e0e0f;
    --panel-2: #161616;
    --line: rgba(255, 255, 255, 0.16);
    --text: #f5f5f0;
    --muted: #aaa79f;
    --dim: #77736b;
    --accent: #ff8a00;
    --accent-2: #ff8a00;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: "Manrope", Arial, sans-serif;
    letter-spacing: 0;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 5, 5, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: min(1420px, calc(100% - 48px));
    height: 86px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand img {
    width: 126px;
    height: auto;
    filter: brightness(1.1) contrast(1.08);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.nav-links a,
.footer-links a {
    transition: color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
    color: var(--accent);
}

.nav-cta,
.button-primary,
.button-ghost {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--accent);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.nav-lang {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.nav-lang a {
    transition: color 180ms ease;
}

.nav-lang a[aria-current="page"],
.nav-lang a:hover {
    color: var(--accent);
}

.nav-lang span {
    color: rgba(255, 255, 255, 0.28);
}

.nav-lang-mobile {
    display: none;
}

.menu-toggle {
    display: none;
}

.nav-cta,
.button-primary {
    background: var(--accent);
    color: #080808;
}

.button-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line);
}

.hero,
.split-section,
.services,
.faq-contact,
.site-footer {
    width: min(1420px, calc(100% - 48px));
    margin: 0 auto;
}

.fleet-banner {
}

.hero {
    position: relative;
    min-height: calc(100vh - 86px);
    display: grid;
    grid-template-columns: minmax(0, 0.62fr) minmax(360px, 1.38fr);
    align-items: center;
    gap: 44px;
    padding: 72px 0;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 38%;
    width: 62vw;
    background:
        linear-gradient(90deg, var(--bg) 0%, rgba(5, 5, 5, 0.78) 20%, rgba(5, 5, 5, 0.12) 54%, rgba(5, 5, 5, 0.72) 100%),
        radial-gradient(circle at 62% 30%, rgba(255, 138, 0, 0.22), transparent 34%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 64px;
    width: min(480px, 34vw);
    height: 10px;
    background: var(--accent);
    z-index: 3;
}

.hero-copy {
    position: relative;
    z-index: 4;
    max-width: 690px;
}

.eyebrow {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero h1,
.section-heading h2,
.fleet-banner h2,
.faq-panel h2,
.contact-panel h2 {
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: clamp(42px, 6vw, 92px);
    line-height: 0.95;
    letter-spacing: 0;
    font-weight: 700;
}

.hero-text {
    max-width: 650px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.5;
}

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

.press-row {
    margin-top: 72px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    color: var(--dim);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-item small,
.site-footer span {
    color: var(--muted);
}

.split-section {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 72px;
    padding: 84px 0;
    border-bottom: 1px solid var(--line);
}

.section-heading h2 {
    margin-top: 12px;
    font-size: clamp(38px, 4.5vw, 70px);
}

.section-body > p {
    max-width: 860px;
    color: var(--muted);
    font-size: 21px;
    line-height: 1.55;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: 42px;
    background: var(--line);
    border: 1px solid var(--line);
}

.feature-grid article {
    min-height: 230px;
    padding: 30px;
    background: var(--panel);
}

.feature-grid span,
.service-item span {
    color: var(--accent-2);
    font-size: 13px;
    font-weight: 900;
}

.feature-grid h3 {
    margin-top: 42px;
    font-size: 26px;
}

.feature-grid p {
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.45;
}

.services {
    width: 100%;
    padding: 96px max(24px, calc((100vw - 1280px) / 2));
    background:
        radial-gradient(circle at 80% 0%, rgba(255, 138, 0, 0.12), transparent 32%),
        #050505;
    border-bottom: 1px solid var(--line);
}

.compact {
    max-width: 820px;
}

.services .eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}

.services .section-title,
.services .section-heading h2 {
    margin-top: 20px;
    font-size: clamp(38px, 5vw, 76px);
    line-height: 0.96;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 54px;
    border-top: 0;
}

.service-item {
    position: relative;
    min-height: 245px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
        rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-item::after {
    content: "→";
    position: absolute;
    right: 22px;
    bottom: 20px;
    color: var(--accent);
    font-size: 22px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.service-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 138, 0, 0.44);
    background:
        linear-gradient(180deg, rgba(255, 138, 0, 0.09), rgba(255, 255, 255, 0.018)),
        rgba(255, 255, 255, 0.025);
}

.service-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.service-item span {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 138, 0, 0.26);
    border-radius: 10px;
    background: rgba(255, 138, 0, 0.08);
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
}

.service-item strong {
    display: block;
    margin-top: auto;
    padding-right: 12px;
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.04;
    font-weight: 600;
}

.service-item small {
    max-width: 230px;
    min-height: 42px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.35;
}

.fleet-banner {
    width: 100%;
    height: 100vh;
    min-height: 620px;
    max-height: 900px;
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
    background: var(--accent);
    color: #050505;
    overflow: hidden;
}

.fleet-banner > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 84px max(24px, calc((100vw - 1420px) / 2));
    padding-right: 54px;
}

.fleet-banner .eyebrow {
    color: var(--accent-2);
}

.fleet-banner h2 {
    margin-top: 14px;
    font-size: clamp(38px, 4.8vw, 74px);
}

.fleet-banner p:last-child {
    max-width: 640px;
    margin-top: 24px;
    color: rgba(5, 5, 5, 0.72);
    font-size: 20px;
    line-height: 1.45;
}

.fleet-banner img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 48% 44%;
    filter: saturate(1.12) contrast(1.08) brightness(0.92);
}

.faq-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 84px 0;
    border-bottom: 1px solid var(--line);
}

.faq-panel,
.contact-panel {
    background: var(--panel);
    padding: 42px;
    border: 1px solid var(--line);
}

.faq-panel h2,
.contact-panel h2 {
    font-size: clamp(34px, 4vw, 58px);
}

details {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

summary {
    cursor: pointer;
    color: var(--text);
    font-size: 19px;
    font-weight: 800;
}

details p,
.contact-panel p {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.contact-panel .button-primary {
    margin-top: 28px;
}

.map-link {
    display: inline-flex;
    margin-left: 18px;
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
}

.site-footer {
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: var(--muted);
}

.footer-logo {
    color: var(--text);
    font-size: 18px;
    font-weight: 900;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.anpc-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.anpc-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.78;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.anpc-links a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.anpc-links img {
    width: 150px;
    max-width: 38vw;
    height: auto;
    display: block;
}

@media (max-width: 960px) {
    .nav-shell,
    .hero,
    .split-section,
    .services,
    .faq-contact,
    .site-footer {
        width: min(100% - 32px, 720px);
    }

    .nav-shell {
        height: auto;
        min-height: 76px;
    }

    .nav-links {
        display: none;
    }

    .hero,
    .split-section,
    .fleet-banner,
    .faq-contact {
        grid-template-columns: 1fr;
    }

    .fleet-banner {
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .hero {
        min-height: auto;
        gap: 34px;
        padding: 46px 0;
        overflow: visible;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero-copy {
        max-width: none;
    }

    .press-row {
        margin-top: 42px;
    }

    .split-section,
    .services,
    .faq-contact {
        padding: 58px 0;
    }

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

    .service-item {
        grid-template-columns: 44px 1fr;
        min-height: 112px;
    }

    .service-item small {
        grid-column: 2;
        justify-self: start;
    }

    .fleet-banner > div {
        padding: 58px 16px;
    }

    .fleet-banner img {
        height: 420px;
        min-height: 0;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 0;
    }

    .anpc-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    .nav-cta {
        display: none;
    }

    .hero h1,
    .section-heading h2,
    .fleet-banner h2,
    .faq-panel h2,
    .contact-panel h2 {
        font-size: 40px;
        line-height: 1;
    }

    .hero-text,
    .section-body > p,
    .fleet-banner p:last-child {
        font-size: 17px;
    }

    .faq-panel,
    .contact-panel {
        padding: 26px;
    }

    .map-link {
        display: flex;
        margin: 18px 0 0;
    }
}

/* Hero v2: editorial screen composition */
.hero {
    width: min(1500px, calc(100% - 48px));
    min-height: calc(100vh - 86px);
    display: block;
    padding: 58px 0 76px;
    overflow: visible;
    border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after,
.hero > .hero-copy:not(.hero-copy-new) {
    display: none;
}

.hero-stage {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    border: 14px solid #101010;
    border-radius: 34px 34px 12px 12px;
    background:
        linear-gradient(120deg, rgba(255, 138, 0, 0.92), rgba(255, 185, 68, 0.42) 42%, rgba(7, 7, 7, 0.86) 100%),
        #111;
    box-shadow:
        0 36px 90px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-stage::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    z-index: 5;
    width: 130px;
    height: 28px;
    transform: translateX(-50%);
    border-radius: 0 0 18px 18px;
    background: #101010;
}

.hero-stage::after {
    content: "";
    position: absolute;
    inset: auto 16% -54px 16%;
    z-index: 6;
    height: 76px;
    border-radius: 50% 50% 0 0;
    background: linear-gradient(180deg, #222, #0a0a0a);
    box-shadow: 0 -18px 30px rgba(0, 0, 0, 0.42);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 42% 55%;
    filter: saturate(1.15) contrast(1.08) brightness(0.82);
    transform: scale(1.03);
}

.hero-stage .screen-nav {
    position: relative;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 54px 58px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.screen-nav strong {
    line-height: 0.9;
}

.screen-nav strong::first-line {
    color: #fff;
}

.screen-nav div {
    display: flex;
    gap: 48px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.hero-stage .hero-copy-new {
    position: absolute;
    left: clamp(34px, 5vw, 72px);
    top: 170px;
    z-index: 4;
    max-width: 640px;
}

.hero-stage .eyebrow {
    color: #101010;
    text-shadow: 0 1px 18px rgba(255, 255, 255, 0.22);
}

.hero-stage h1 {
    margin-top: 18px;
    color: #fff;
    font-size: clamp(76px, 8vw, 138px);
    line-height: 0.82;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
}

.hero-stage h1 span {
    display: block;
}

.hero-stage h1 span + * {
    color: #101010;
}

.hero-side {
    position: absolute;
    right: clamp(34px, 5vw, 76px);
    top: 170px;
    z-index: 4;
    width: min(420px, 34%);
    color: #10202a;
}

.hero-side h2 {
    font-size: clamp(32px, 3.1vw, 54px);
    line-height: 0.98;
    font-weight: 500;
}

.hero-side p {
    width: min(300px, 100%);
    margin-top: 180px;
    margin-left: auto;
    color: #15212a;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.mini-map {
    position: absolute;
    top: 170px;
    right: 28px;
    width: 300px;
    height: 142px;
    opacity: 0.8;
    background-image: radial-gradient(#17212a 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    clip-path: polygon(4% 32%, 24% 14%, 46% 22%, 62% 8%, 94% 30%, 86% 74%, 58% 66%, 42% 92%, 22% 70%, 8% 82%);
}

.mini-map span {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 7px rgba(255, 138, 0, 0.25);
}

.mini-map span:nth-child(1) { left: 22%; top: 35%; }
.mini-map span:nth-child(2) { left: 48%; top: 52%; }
.mini-map span:nth-child(3) { left: 72%; top: 28%; }
.mini-map span:nth-child(4) { left: 62%; top: 76%; }
.mini-map span:nth-child(5) { left: 34%; top: 72%; }

.hero-bottom {
    position: absolute;
    left: clamp(34px, 5vw, 72px);
    right: clamp(34px, 5vw, 72px);
    bottom: 76px;
    z-index: 7;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.hero-stage .press-row {
    margin: 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
}

.hero-stage .hero-actions {
    margin: 0;
    align-items: center;
}

.button-round {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

.hero-stage .button-primary {
    min-width: 220px;
    border-radius: 999px;
}

@media (max-width: 1100px) {
    .hero-stage {
        min-height: 700px;
    }

    .screen-nav div {
        display: none;
    }

    .hero-side {
        top: auto;
        right: 36px;
        bottom: 172px;
        width: 340px;
        color: #fff;
    }

    .hero-side h2 {
        font-size: 30px;
        font-weight: 700;
        text-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    }

    .hero-side p,
    .mini-map {
        display: none;
    }
}

@media (max-width: 760px) {
    .hero {
        width: min(100% - 28px, 620px);
        padding: 28px 0 48px;
    }

    .hero-stage {
        min-height: 680px;
        border-width: 10px;
        border-radius: 26px 26px 10px 10px;
    }

    .hero-bg {
        object-position: 43% 50%;
        filter: saturate(1.08) contrast(1.05) brightness(0.66);
    }

    .hero-stage .screen-nav {
        padding: 34px 28px 0;
    }

    .hero-stage .hero-copy-new {
        left: 28px;
        right: 28px;
        top: 120px;
    }

    .hero-stage h1 {
        font-size: clamp(52px, 17vw, 84px);
    }

    .hero-side {
        left: 28px;
        right: 28px;
        bottom: 172px;
        width: auto;
    }

    .hero-bottom {
        left: 28px;
        right: 28px;
        bottom: 54px;
        display: block;
    }

    .hero-stage .press-row {
        display: none;
    }

    .hero-stage .hero-actions {
        justify-content: space-between;
    }

    .hero-stage .button-primary {
        min-width: 0;
        flex: 1;
    }
}

/* Hero v3: clean premium photo hero */
.hero {
    width: 100%;
    min-height: calc(100vh - 86px);
    padding: 0;
    border-bottom: 1px solid var(--line);
    background: #050505;
}

.hero-stage {
    width: 100%;
    min-height: calc(100vh - 86px);
    margin: 0 auto;
    border: 0;
    border-radius: 0;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #050505;
    box-shadow: none;
}

.hero-stage::before,
.hero-stage::after,
.screen-nav,
.hero-side,
.mini-map {
    display: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% 50%;
    filter: saturate(1.08) contrast(1.08) brightness(0.82);
    transform: none;
}

.hero-stage::selection {
    background: var(--accent);
    color: #050505;
}

.hero-stage::before {
    display: block;
    content: "";
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    transform: none;
    border-radius: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.72) 32%, rgba(5, 5, 5, 0.16) 68%, rgba(5, 5, 5, 0.42) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.04) 48%, #050505 100%);
    pointer-events: none;
}

.hero-stage .hero-copy-new {
    position: relative;
    z-index: 4;
    left: auto;
    top: auto;
    max-width: 820px;
    padding: 0 48px 172px;
}

.hero-stage .eyebrow {
    display: none;
}

.hero-stage h1 {
    max-width: 760px;
    margin-top: 0;
    color: var(--text);
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: clamp(48px, 5.6vw, 86px);
    line-height: 0.98;
    font-weight: 600;
    text-transform: none;
    text-wrap: balance;
    text-shadow: none;
}

.hero-lead {
    max-width: 760px;
    margin-top: 24px;
    color: rgba(245, 245, 240, 0.78);
    font-size: clamp(17px, 1.3vw, 21px);
    line-height: 1.55;
    font-weight: 500;
}

.mobile-hero-title {
    display: none;
}

.hero-bottom {
    left: 48px;
    right: 48px;
    bottom: 54px;
    z-index: 4;
    align-items: center;
    justify-content: flex-end;
}

.hero-bottom .hero-actions {
    margin-left: 0;
    margin-right: 8%;
}

.hero-stage .press-row {
    display: none;
}

.hero-stage .press-row {
    color: rgba(245, 245, 240, 0.62);
}

.hero-stage .button-primary {
    min-width: 300px;
    min-height: 64px;
    border-radius: 999px;
    font-size: 14px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.button-round {
    display: none;
    border-radius: 0;
    background: rgba(5, 5, 5, 0.48);
    backdrop-filter: blur(12px);
}

@media (max-width: 960px) {
    .hero {
        min-height: auto;
    }

    .hero-stage {
        width: 100%;
        min-height: 760px;
    }

    .hero-bg {
        inset: 0;
        width: 100%;
        object-position: 64% 50%;
        filter: saturate(1.04) contrast(1.05) brightness(0.62);
    }

    .hero-stage::before {
        background:
            linear-gradient(180deg, rgba(5, 5, 5, 0.34) 0%, rgba(5, 5, 5, 0.2) 38%, #050505 100%),
            linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.2));
    }

    .hero-stage .hero-copy-new {
        padding: 92px 28px 220px;
        align-self: end;
    }

    .hero-bottom {
        left: 28px;
        right: 28px;
        bottom: 48px;
        display: block;
    }

    .hero-stage .press-row {
        display: flex;
        margin-bottom: 24px;
    }

    .hero-bottom .hero-actions {
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    body {
        background: #050505;
    }

    .site-header {
        position: fixed;
    }

    .nav-shell {
        width: calc(100% - 36px);
        height: 76px;
        justify-content: flex-end;
    }

    .brand img {
        display: none;
    }

    .hero-stage {
        width: 100%;
        min-height: 100svh;
        margin-top: 0;
        border: 0;
        border-radius: 0;
        background: #061f25;
        box-shadow: none;
    }

    .hero-stage::before {
        background:
            linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.16) 36%, rgba(5, 5, 5, 0.92) 78%, #050505 100%),
            linear-gradient(90deg, rgba(5, 5, 5, 0.54), rgba(5, 5, 5, 0.08));
    }

    .hero-stage::after {
        display: none;
    }

    .hero-bg {
        object-position: 58% 50%;
        filter: saturate(1.08) contrast(1.05) brightness(0.72);
    }

    .hero-stage h1 {
        display: block;
        max-width: 680px;
        font-size: clamp(40px, 8.4vw, 64px);
        line-height: 0.98;
    }

    .hero-lead {
        display: block;
        max-width: 680px;
        margin-top: 18px;
        font-size: clamp(17px, 2.8vw, 20px);
        line-height: 1.45;
    }

    .hero-stage .press-row {
        display: none;
    }

    .hero-stage .hero-copy-new {
        width: 100%;
        padding: 0 36px 118px;
        align-self: end;
    }

    .hero-bottom {
        left: 36px;
        right: 36px;
        bottom: 30px;
    }

    .hero-stage .button-primary {
        min-width: 0;
        width: 100%;
        min-height: 58px;
        border-radius: 999px;
        font-size: 14px;
    }
}

/* Floating hero navigation */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 30;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    transition: background 180ms ease, backdrop-filter 180ms ease, border-color 180ms ease;
}

.site-header.is-past-hero {
    background: rgba(5, 5, 5, 0.68);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.site-header.is-menu-open {
    background: rgba(5, 5, 5, 0.68);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.nav-shell {
    width: min(1500px, calc(100% - 96px));
    height: 96px;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 118px;
    height: auto;
    padding: 0;
    background: transparent;
    filter: brightness(1.08) contrast(1.05);
}

.nav-links {
    margin-left: auto;
    gap: 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.nav-links a::after {
    content: none;
}

.nav-lang {
    min-height: 0;
    padding: 0;
    border: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.nav-lang a[aria-current="page"],
.nav-lang a:hover {
    color: var(--accent);
}

.hero {
    min-height: 100vh;
}

.hero-stage {
    min-height: 100vh;
}

@media (max-width: 960px) {
    .nav-shell {
        width: min(100% - 40px, 720px);
        height: 82px;
    }

    .brand img {
        width: 104px;
    }

    .nav-links {
        display: flex;
        gap: 18px;
        font-size: 12px;
    }

    .nav-lang {
        display: none;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 560px) {
    .nav-shell {
        width: calc(100% - 24px);
        height: 76px;
        justify-content: space-between;
        gap: 14px;
    }

    .brand img {
        display: block;
        width: 104px;
    }

    .nav-links {
        position: fixed;
        top: 86px;
        left: 12px;
        right: 12px;
        width: auto;
        min-height: auto;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        margin-left: 0;
        padding: 18px 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        background: rgba(5, 5, 5, 0.68);
        backdrop-filter: blur(16px);
        font-size: 14px;
        line-height: 1;
        color: rgba(255, 255, 255, 0.92);
        box-shadow: 0 24px 58px rgba(0, 0, 0, 0.46);
        transform: none;
        z-index: 28;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        justify-content: center;
        width: 100%;
        padding: 14px 12px;
        border-bottom: 0;
        border-radius: 0;
        background: transparent;
    }

    .nav-links a:last-child {
        border-bottom: 0;
    }

    .nav-links a:hover {
        color: var(--accent);
        background: transparent;
    }

    .nav-lang {
        display: none;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 0;
        border-radius: 50%;
        background: rgba(5, 5, 5, 0.28);
        backdrop-filter: blur(10px);
        cursor: pointer;
        position: relative;
        z-index: 31;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
        background: #fff;
        transition: transform 180ms ease, opacity 180ms ease;
    }

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

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

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

    .hero,
    .hero-stage {
        min-height: 100svh;
    }

    .hero-stage {
        width: 100%;
        margin-top: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .hero-bg {
        object-position: 58% 50%;
        filter: saturate(1.08) contrast(1.05) brightness(0.72);
    }
}

/* About section v2 */
.split-section {
    width: 100%;
    display: block;
    padding: 90px max(24px, calc((100vw - 1420px) / 2));
    background: #050505;
    border-bottom: 1px solid var(--line);
}

.split-section .section-heading {
    max-width: 1180px;
    margin-bottom: 28px;
}

.split-section .section-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}

.split-section .section-heading h2 {
    max-width: 1050px;
    margin-top: 22px;
    font-size: clamp(34px, 3.8vw, 64px);
    line-height: 1.04;
    text-wrap: balance;
}

.split-section .section-body {
    max-width: none;
}

.split-section .section-body > p {
    max-width: 1220px;
    color: rgba(245, 245, 240, 0.5);
    font-size: clamp(20px, 1.55vw, 28px);
    line-height: 1.46;
    font-weight: 500;
}

.split-section .section-body > p strong {
    color: #fff;
    font-weight: 700;
}

.split-section .section-body > p span {
    color: rgba(245, 245, 240, 0.52);
}

.split-section .feature-grid {
    display: none;
}

.about-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 1120px;
    margin-top: 56px;
    border-top: 0;
}

.about-stats::before,
.about-stats::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 146px;
    background: rgba(255, 138, 0, 0.38);
}

.about-stats::before {
    left: 33.333%;
}

.about-stats::after {
    left: 66.666%;
}

.about-stats article {
    min-height: 146px;
    padding: 0 42px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.about-stats article:first-child {
    padding-left: 0;
}

.about-stats article:last-child {
    border-right: 0;
}

.about-stats i {
    display: none;
}

.about-stats strong {
    display: block;
    color: var(--text);
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: 1;
}

.about-stats span {
    display: block;
    max-width: 250px;
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 820px) {
    .split-section {
        padding: 62px 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-stats::before,
    .about-stats::after {
        display: none;
    }

    .about-stats article {
        min-height: 0;
        padding: 24px 0;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        background: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .about-stats article:last-child {
        border-bottom: 0;
    }
}

/* FAQ section v2 */
.faq-contact {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
    gap: 72px;
    padding: 96px max(24px, calc((100vw - 1280px) / 2));
    background: #050505;
    border-bottom: 1px solid var(--line);
}

.contact-panel,
.faq-panel {
    background: transparent;
    border: 0;
    padding: 0;
}

.contact-panel {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
}

.faq-panel {
    order: 2;
    counter-reset: faq;
}

.faq-panel .section-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 800;
}

.faq-panel h2,
.contact-panel h2 {
    font-size: clamp(54px, 7vw, 120px);
    line-height: 0.9;
    text-wrap: balance;
}

.faq-panel h2 {
    display: none;
}

.contact-panel h2 {
    max-width: 420px;
}

.contact-panel p {
    max-width: 340px;
    margin-top: 14px;
    color: var(--muted);
}

.contact-panel .button-primary {
    width: fit-content;
    min-height: 48px;
    margin-top: 28px;
    border-radius: 8px;
    background: var(--accent);
    border-color: var(--accent);
    color: #050505;
    transform: translateY(-56px);
}

.faq-panel details {
    counter-increment: faq;
    position: relative;
    margin-bottom: 12px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.faq-panel details[open] {
    border-color: rgba(255, 138, 0, 0.34);
    background: rgba(255, 255, 255, 0.045);
}

.faq-panel summary {
    min-height: 76px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    font-size: 18px;
    font-weight: 800;
    list-style: none;
}

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

.faq-panel summary::before {
    content: counter(faq, decimal-leading-zero);
    color: var(--accent);
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.faq-panel summary::after {
    content: "+";
    justify-self: end;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
}

.faq-panel details[open] summary::after {
    content: "-";
}

.faq-panel details p {
    max-width: 600px;
    margin: -8px 72px 28px 92px;
    color: rgba(245, 245, 240, 0.62);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .faq-contact {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 72px 20px;
    }

    .contact-panel {
        min-height: auto;
    }

    .contact-panel .button-primary {
        transform: none;
    }

    .faq-panel details p {
        margin: -6px 24px 24px 92px;
    }
}

/* Final service polish: remove the circular glow artifacts from carousel cards. */
.services {
    background: #050505;
}

.services .service-item,
.services .service-item:hover,
.services .service-item.is-active,
.services .service-item.is-prev,
.services .service-item.is-next,
.services .service-item.is-prev-2,
.services .service-item.is-next-2 {
    box-shadow: none;
    filter: none;
}

.services .service-item {
    background: linear-gradient(145deg, #171717, #050505 76%);
    background-image: linear-gradient(145deg, #171717, #050505 76%);
}

.services .service-item:nth-child(3n + 1) {
    background: linear-gradient(145deg, #bd6800, #241300 76%);
    background-image: linear-gradient(145deg, #bd6800, #241300 76%);
}

.services .service-item:nth-child(3n + 2) {
    background: linear-gradient(145deg, #1b1b1b, #050505 76%);
    background-image: linear-gradient(145deg, #1b1b1b, #050505 76%);
}

.services .service-item:nth-child(3n) {
    background: linear-gradient(145deg, #202326, #060606 76%);
    background-image: linear-gradient(145deg, #202326, #060606 76%);
}

.services .service-item::before {
    content: none;
    display: none;
}

.services .service-item.is-active {
    animation: none;
}

/* Services v4: centered carousel */
.hero > .service-controls {
    display: none;
}

.services {
    position: relative;
    min-height: 980px;
    padding-top: 128px;
    padding-bottom: 230px;
}

.services .section-heading h2 {
    text-align: center;
}

.services .service-list {
    position: relative;
    width: min(1440px, 100%);
    height: 500px;
    margin: 72px auto 0;
    padding: 0;
    overflow: hidden;
    display: block;
    scroll-snap-type: none;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.services.is-dragging .service-list,
.services.is-dragging .service-item {
    cursor: grabbing;
}

.services .service-item::after {
    content: none !important;
    display: none !important;
}

.services .service-item {
    position: absolute;
    top: 38px;
    left: 50%;
    width: min(420px, 72vw);
    min-height: 315px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) scale(0.82);
    transition: transform 260ms ease, opacity 260ms ease, filter 260ms ease;
}

.services .service-item.is-active,
.services .service-item.is-prev,
.services .service-item.is-next,
.services .service-item.is-prev-2,
.services .service-item.is-next-2 {
    opacity: 1;
    pointer-events: auto;
}

.services .service-item.is-active {
    z-index: 3;
    transform: translateX(-50%) translateY(-18px) scale(1.08);
    border-color: rgba(255, 255, 255, 0.2);
    filter: none;
}

.services .service-item.is-prev {
    z-index: 2;
    transform: translateX(calc(-50% - 320px)) scale(0.9);
    filter: brightness(0.82);
}

.services .service-item.is-next {
    z-index: 2;
    transform: translateX(calc(-50% + 320px)) scale(0.9);
    filter: brightness(0.82);
}

.services .service-item.is-prev-2 {
    z-index: 1;
    transform: translateX(calc(-50% - 600px)) scale(0.78);
    filter: brightness(0.58);
    opacity: 0.62;
}

.services .service-item.is-next-2 {
    z-index: 1;
    transform: translateX(calc(-50% + 600px)) scale(0.78);
    filter: brightness(0.58);
    opacity: 0.62;
}

.services .service-item.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.service-controls {
    width: min(1180px, calc(100% - 48px));
    margin: 24px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.service-nav {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.service-nav:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #050505;
}

.service-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.service-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
    cursor: pointer;
    transition: width 180ms ease, background 180ms ease;
}

.service-dots button.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--accent);
}

@media (max-width: 900px) {
    .services {
        min-height: 780px;
        padding-top: 96px;
        padding-bottom: 150px;
    }

    .services .service-list {
        height: 390px;
    }

    .services .service-item {
        width: min(340px, 76vw);
        min-height: 290px;
    }

    .services .service-item.is-prev {
        transform: translateX(calc(-50% - 230px)) scale(0.88);
    }

    .services .service-item.is-next {
        transform: translateX(calc(-50% + 230px)) scale(0.88);
    }

    .services .service-item.is-prev-2,
    .services .service-item.is-next-2 {
        opacity: 0;
        pointer-events: none;
    }
}

@media (max-width: 560px) {
    .services {
        min-height: 650px;
        padding-top: 76px;
        padding-bottom: 92px;
    }

    .services .service-list {
        height: 350px;
    }

    .services .service-item {
        width: min(300px, 78vw);
        min-height: 270px;
    }

    .service-item strong {
        min-height: 74px;
    }

    .service-item small {
        font-size: 16px;
    }

    .services .service-item.is-prev {
        transform: translateX(calc(-50% - 190px)) scale(0.82);
    }

    .services .service-item.is-next {
        transform: translateX(calc(-50% + 190px)) scale(0.82);
    }

    .service-nav {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 560px) {
    .faq-panel summary {
        grid-template-columns: 42px minmax(0, 1fr) 22px;
        padding: 0 16px;
        font-size: 15px;
    }

    .faq-panel details p {
        margin: -4px 18px 22px 58px;
        font-size: 14px;
    }
}

/* Services responsive overrides */
@media (max-width: 1180px) {
    .service-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .services {
        width: 100%;
        padding: 72px 20px;
    }

    .service-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-item {
        min-height: 190px;
        padding: 22px;
    }

    .service-item small {
        max-width: none;
        min-height: 0;
    }
}

/* Services v2: editorial rows */
.services {
    padding: 104px max(24px, calc((100vw - 1280px) / 2));
    background: #050505;
}

.services .section-heading {
    max-width: none;
    margin-bottom: 44px;
}

.services .section-heading h2 {
    max-width: none;
    margin: 0;
    font-size: clamp(42px, 5.4vw, 84px);
    line-height: 0.96;
    white-space: nowrap;
}

.service-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.service-item {
    min-height: 104px;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) minmax(180px, 260px) 42px;
    align-items: center;
    gap: 24px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    background: transparent;
    overflow: visible;
    transition: padding 180ms ease, background 180ms ease;
}

.service-item::after {
    position: static;
    justify-self: end;
    color: var(--accent);
    opacity: 1;
    transform: none;
}

.service-item:hover {
    padding-left: 22px;
    transform: none;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
}

.service-item:hover::after {
    transform: translateX(4px);
}

.service-item span {
    width: auto;
    height: auto;
    display: block;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--accent);
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.service-item strong {
    margin: 0;
    padding-right: 0;
    font-size: clamp(26px, 3vw, 46px);
    line-height: 1;
}

.service-item small {
    max-width: 260px;
    min-height: 0;
    justify-self: start;
    color: rgba(245, 245, 240, 0.56);
    font-size: 15px;
    line-height: 1.35;
}

@media (max-width: 900px) {
    .services {
        padding: 78px 20px;
    }

    .services .section-heading h2 {
        white-space: normal;
    }

    .service-item {
        min-height: 118px;
        grid-template-columns: 46px minmax(0, 1fr) 28px;
        gap: 16px;
        padding: 18px 0;
    }

    .service-item small {
        grid-column: 2 / 3;
        max-width: none;
    }

    .service-item::after {
        grid-column: 3;
        grid-row: 1 / 3;
    }
}

/* Services v3: horizontal feature cards */
.services {
    overflow: hidden;
}

.services .section-heading {
    text-align: center;
}

.services .section-heading h2 {
    white-space: normal;
}

.service-list {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 58px;
    padding: 28px max(24px, calc((100vw - 1280px) / 2)) 42px;
    border-top: 0;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.service-list::-webkit-scrollbar {
    display: none;
}

.service-item {
    flex: 0 0 min(390px, 76vw);
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
    margin: 0 -28px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: #111;
    box-shadow: none;
    scroll-snap-align: center;
    overflow: hidden;
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-item:nth-child(3n + 1) {
    background: linear-gradient(145deg, #c66a00, #2a1500 72%);
}

.service-item:nth-child(3n + 2) {
    background: linear-gradient(145deg, #202020, #050505 72%);
}

.service-item:nth-child(3n) {
    background: linear-gradient(145deg, #2b2f34, #070707 72%);
}

.service-item:nth-child(2) {
    transform: translateY(-24px) scale(1.05);
    z-index: 2;
    border-color: rgba(255, 138, 0, 0.42);
}

.service-item:hover {
    padding-left: 30px;
    transform: translateY(-20px) scale(1.04);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

.service-item::before {
    display: none;
}

.service-item::after {
    position: static;
    align-self: flex-end;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(5, 5, 5, 0.28);
    color: #fff;
    opacity: 1;
    transform: none;
}

.service-item span {
    position: absolute;
    top: 28px;
    left: 28px;
    width: auto;
    height: auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
}

.service-item strong {
    position: absolute;
    left: 30px;
    right: 30px;
    top: 112px;
    margin-top: 0;
    min-height: 0;
    display: block;
    color: #fff;
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 0.96;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.service-item small {
    position: absolute;
    left: 30px;
    right: 30px;
    top: 216px;
    max-width: 330px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.42;
}

@media (max-width: 560px) {
    .service-item strong {
        top: 100px;
        font-size: 27px;
    }

    .service-item small {
        top: 178px;
        font-size: 14px;
        line-height: 1.35;
    }
}

@media (max-width: 900px) {
    .service-list {
        padding: 22px 20px 36px;
    }

    .service-item,
    .service-item:nth-child(2),
    .service-item:hover {
        transform: none;
    }

    .service-item {
        flex-basis: min(330px, 82vw);
        min-height: 290px;
        margin: 0 10px 0 0;
    }
}

/* Motion */
@keyframes heroDrift {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.055);
    }
}

@keyframes softFloat {
    0%, 100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -8px;
    }
}

.hero-bg {
    animation: heroDrift 18s ease-in-out infinite alternate;
    transform-origin: center;
}

.motion-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 700ms ease,
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--motion-delay, 0ms);
}

.motion-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-stats article.is-visible,
.services .service-item.is-active {
    animation: softFloat 5.5s ease-in-out infinite;
}

.services .service-item {
    will-change: transform, opacity, filter;
}

.faq-panel details {
    transition:
        border-color 220ms ease,
        background 220ms ease,
        transform 220ms ease;
}

.faq-panel details:hover {
    transform: translateX(6px);
}

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

    .motion-reveal {
        opacity: 1;
        transform: none;
    }
}

/* Map + cookies */
.map-section {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(320px, 0.64fr) minmax(520px, 1.36fr);
    gap: 56px;
    padding: 104px max(24px, calc((100vw - 1280px) / 2));
    background: #050505;
    border-bottom: 1px solid var(--line);
}

.map-copy .section-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.map-copy h2 {
    max-width: 520px;
    margin-top: 0;
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: clamp(36px, 4vw, 66px);
    line-height: 1;
    font-weight: 600;
    text-wrap: balance;
}

.map-copy p {
    max-width: 460px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
}

.map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.map-actions .button-primary,
.map-actions .button-ghost {
    min-height: 52px;
    border-radius: 999px;
}

.map-frame {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: #101010;
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.2);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    filter: none;
}

.map-frame iframe:not([src]) {
    display: none;
}

.cookie-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 32px;
    text-align: center;
    color: var(--text);
}

.cookie-placeholder[hidden] {
    display: none;
}

.cookie-placeholder strong {
    max-width: 420px;
    font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
    font-size: 30px;
    line-height: 1.05;
}

.cookie-placeholder p {
    max-width: 420px;
    color: var(--muted);
    line-height: 1.45;
}

.cookie-inline-accept,
.cookie-btn {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--accent);
    border-radius: 999px;
    background: var(--accent);
    color: #050505;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    display: flex;
    justify-content: center;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner-content {
    position: relative;
    width: min(620px, 100%);
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(5, 5, 5, 0.86);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.cookie-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.cookie-banner-content h2 {
    padding-right: 38px;
    font-size: 24px;
}

.cookie-banner-content p {
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.45;
}

.cookie-required-option,
.cookie-optional-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 18px 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.cookie-btn.secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 900px) {
    .map-section {
        grid-template-columns: 1fr;
        padding: 78px 20px;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 380px;
    }
}

@media (max-width: 560px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-banner-content {
        padding: 22px;
    }
}

/* Final layout polish */
.split-section {
    min-height: 100vh;
    box-sizing: border-box;
    padding-top: clamp(120px, 15vh, 180px);
    padding-bottom: clamp(150px, 18vh, 220px);
}

.services .service-item,
.services .service-item:hover,
.services .service-item.is-active,
.services .service-item.is-prev,
.services .service-item.is-next,
.services .service-item.is-prev-2,
.services .service-item.is-next-2 {
    box-shadow: none;
    filter: none;
}

.services .service-item {
    background: linear-gradient(145deg, #171717, #050505 76%);
    background-image: linear-gradient(145deg, #171717, #050505 76%);
}

.services .service-item:nth-child(3n + 1) {
    background: linear-gradient(145deg, #bd6800, #241300 76%);
    background-image: linear-gradient(145deg, #bd6800, #241300 76%);
}

.services .service-item:nth-child(3n + 2) {
    background: linear-gradient(145deg, #1b1b1b, #050505 76%);
    background-image: linear-gradient(145deg, #1b1b1b, #050505 76%);
}

.services .service-item:nth-child(3n) {
    background: linear-gradient(145deg, #202326, #060606 76%);
    background-image: linear-gradient(145deg, #202326, #060606 76%);
}

.services .service-item::before {
    content: none;
    display: none;
}

.services .service-item.is-active {
    animation: none;
}

@media (max-width: 820px) {
    .split-section {
        min-height: auto;
        padding-top: 84px;
        padding-bottom: 96px;
    }
}

@media (max-width: 1100px) {
    .site-header .nav-shell,
    .nav-shell {
        width: calc(100% - 28px);
        min-height: 56px;
    }

    .site-header .brand img,
    .brand img {
        width: 104px;
        max-height: 38px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
        display: inline-flex;
        flex: 0 0 44px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        margin-left: auto;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: rgba(5, 5, 5, 0.32);
        color: #fff;
        backdrop-filter: blur(10px);
        cursor: pointer;
        position: relative;
        z-index: 31;
        appearance: none;
    }

    .menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        flex: 0 0 2px;
        background: #fff;
        border-radius: 999px;
        transition: transform 180ms ease, opacity 180ms ease;
    }

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

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

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

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 26px 0 30px;
        background: rgba(5, 5, 5, 0.68);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(16px);
        box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        min-height: 30px;
        font-size: 14px;
    }

    .nav-lang {
        display: none;
    }

    .nav-links .nav-lang-mobile {
        min-height: 30px;
        display: inline-flex;
        margin: 6px 0 0;
        gap: 10px;
        color: rgba(255, 255, 255, 0.72);
    }

    .nav-links .nav-lang-mobile a {
        width: auto;
        min-height: 30px;
        padding: 0;
        color: rgba(255, 255, 255, 0.88);
    }

    .nav-links .nav-lang-mobile a[aria-current="page"] {
        color: var(--accent);
    }

    .nav-links .nav-lang-mobile span {
        color: rgba(255, 255, 255, 0.42);
    }
}

@media (orientation: landscape) and (max-height: 520px) and (max-width: 1100px) {
    .hero,
    .hero-stage {
        min-height: 100svh;
        height: 100svh;
    }

    .hero-stage {
        align-items: end;
    }

    .hero-bg {
        object-position: 60% 48%;
    }

    .hero-stage::before {
        background:
            linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.66) 46%, rgba(5, 5, 5, 0.24) 100%),
            linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.12) 48%, #050505 100%);
    }

    .hero-stage .hero-copy-new {
        max-width: 650px;
        padding: 0 28px 104px;
    }

    .hero-stage h1 {
        display: block;
        max-width: 650px;
        font-size: clamp(34px, 5.2vw, 54px);
        line-height: 0.98;
    }

    .hero-stage .mobile-hero-title {
        display: none;
    }

    .hero-lead {
        max-width: 620px;
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.42;
    }

    .hero-stage .press-row {
        display: none;
    }

    .hero-bottom {
        left: 28px;
        right: 28px;
        bottom: 22px;
        display: flex;
        justify-content: flex-start;
    }

    .hero-bottom .hero-actions {
        width: min(320px, 44vw);
        margin: 0;
    }

    .hero-stage .button-primary {
        width: 100%;
        min-width: 0;
        min-height: 50px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }
}

@media (max-width: 900px) {
    .hero-stage .press-row {
        display: none !important;
    }
}
