:root {
    --brand-red: #e31837;
    --brand-red-strong: #ff5b31;
    --brand-dark: #0a0a0b;
    --brand-dark-soft: #111214;
    --brand-gray: #1c1c1e;
    --brand-gray-soft: #232326;
    --text: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.68);
    --text-muted: rgba(255, 255, 255, 0.44);
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);
    --surface: rgba(255, 255, 255, 0.04);
    --surface-strong: rgba(255, 255, 255, 0.08);
    --surface-white: #f5f5f4;
    --text-dark: #101113;
    --text-dark-soft: rgba(16, 17, 19, 0.68);
    --shadow: 0 40px 90px rgba(0, 0, 0, 0.32);
    --radius-xl: 3rem;
    --radius-lg: 2.1rem;
    --radius-md: 1.35rem;
    --shell: min(1240px, calc(100vw - 48px));
    --hero-progress: 0;
    --hero-scale: 0;
    --hero-fade: 0;
    --hero-content-shift: 0px;
    --header-solid: 0;
    --stat-band-shift: 0px;
    --stat-band-scale: 0;
}

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

html {
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top center, rgba(49, 112, 190, 0.32), transparent 42%),
        linear-gradient(180deg, #050506 0%, var(--brand-dark) 28%, #0d0d10 100%);
    color: var(--text);
    font-family: "Inter", sans-serif;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 18px;
    z-index: 100;
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--brand-red);
    color: #fff;
}

.skip-link:focus {
    top: 18px;
}

.shell {
    width: var(--shell);
    margin: 0 auto;
}

.site-backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.site-backdrop__orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.34;
}

.site-backdrop__orb--one {
    width: 28rem;
    height: 28rem;
    top: -8rem;
    right: -6rem;
    background: radial-gradient(circle, rgba(227, 24, 55, 0.8), rgba(227, 24, 55, 0));
}

.site-backdrop__orb--two {
    width: 32rem;
    height: 32rem;
    left: -10rem;
    top: 18rem;
    background: radial-gradient(circle, rgba(55, 119, 199, 0.54), rgba(55, 119, 199, 0));
}

.site-backdrop__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.7), transparent 82%);
}

[data-reveal] {
    opacity: 0;
    transform: translate3d(var(--reveal-offset-x, 0px), var(--reveal-offset-y, 34px), 0) scale(var(--reveal-scale, 0.985));
    filter: blur(var(--reveal-blur, 12px));
    clip-path: inset(0 0 14% 0 round var(--reveal-radius, 24px));
    transition:
        opacity var(--reveal-duration, 900ms) cubic-bezier(0.16, 1, 0.3, 1),
        transform var(--reveal-duration, 900ms) cubic-bezier(0.16, 1, 0.3, 1),
        filter var(--reveal-duration, 900ms) cubic-bezier(0.16, 1, 0.3, 1),
        clip-path var(--reveal-duration, 900ms) cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity, filter;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    clip-path: inset(0 0 0 0 round var(--reveal-radius, 24px));
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 10, calc(0.76 + var(--header-solid) * 0.2)),
        rgba(8, 8, 10, calc(0.18 + var(--header-solid) * 0.54)) 72%,
        transparent
    );
    backdrop-filter: blur(calc(8px + var(--header-solid) * 8px));
    box-shadow: 0 10px 30px rgba(0, 0, 0, calc(0.05 + var(--header-solid) * 0.2));
    transition: background 140ms linear, backdrop-filter 140ms linear, box-shadow 140ms linear;
}

.page-home .site-header {
    background: linear-gradient(
        180deg,
        rgba(5, 5, 6, 0.94),
        rgba(5, 5, 6, 0.86) 72%,
        rgba(5, 5, 6, 0.22)
    );
    backdrop-filter: blur(12px);
    box-shadow: none;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 96px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand__lockup {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand__icon {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 18px 36px rgba(227, 24, 55, 0.22);
}

.brand__icon--partner {
    width: 7.2rem;
    height: 4.48rem;
    object-fit: contain;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.brand__text {
    display: grid;
    gap: 2px;
}

.brand__text strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand__text small {
    color: var(--text-soft);
    font-size: 0.78rem;
}

.site-header__nav {
    display: inline-flex;
    align-items: center;
    gap: 36px;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 32px;
}

.site-nav a {
    position: relative;
    padding: 8px 0;
    font-size: 0.96rem;
    color: var(--text-soft);
    transition: color 180ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--brand-red);
    transition: width 240ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #fff;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
    transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    padding: 1rem 1.7rem;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-strong));
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease, background 180ms ease;
    box-shadow: 0 22px 44px rgba(227, 24, 55, 0.24);
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
}

.button--outline,
.button--ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero--home {
    min-height: 100svh;
}

.hero__media,
.page-hero__media {
    position: absolute;
    inset: 0;
}

.hero__media img,
.page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform, filter;
}

.hero__media img {
    transform: translate3d(0, calc(var(--hero-progress) * 74px), 0) scale(calc(1.02 + var(--hero-scale)));
    filter: saturate(calc(0.95 + var(--hero-progress) * 0.18)) brightness(calc(1 - var(--hero-progress) * 0.14));
    transition: transform 120ms linear, filter 160ms linear;
}

.page-hero__media img,
.feature-card__image,
.service-card__visual,
.split-feature__frame img,
.media-band__card img {
    transform: translate3d(0, var(--parallax-shift, 0px), 0) scale(var(--parallax-scale, 1.04));
    transition: transform 160ms linear, filter 220ms ease;
}

.hero__veil,
.page-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 8, 10, 0.5) 0%, rgba(8, 8, 10, 0.68) 56%, rgba(8, 8, 10, 0.95) 100%),
        radial-gradient(circle at top center, rgba(46, 121, 209, 0.28), transparent 38%);
    opacity: calc(0.92 + var(--hero-progress) * 0.12);
    transition: opacity 120ms linear;
}

.hero__content {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9rem 0 7rem;
}

.hero__eyebrow,
.section-heading__meta {
    margin: 0 0 1.4rem;
    color: var(--brand-red);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.36em;
    text-transform: uppercase;
}

.hero__eyebrow,
.hero__title,
.hero__lead,
.hero__actions {
    will-change: transform, opacity;
    transition: transform 120ms linear, opacity 120ms linear;
}

.hero__eyebrow {
    transform: translate3d(0, calc(var(--hero-content-shift) * 0.28), 0);
    opacity: calc(1 - var(--hero-fade) * 0.45);
}

.hero__title,
.page-hero__copy h1,
.section-heading h2,
.contact-section__copy h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.05em;
}

.hero__title {
    max-width: 20ch;
    font-size: clamp(3.2rem, 10vw, 8.3rem);
}

.hero__title-line,
.hero__title-accent {
    display: block;
}

.hero__title-line {
    white-space: nowrap;
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--brand-red), #ff8a1d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__title {
    transform: translate3d(0, calc(var(--hero-content-shift) * 0.52), 0);
    opacity: calc(1 - var(--hero-fade) * 0.8);
}

.hero__lead {
    max-width: 43rem;
    margin: 2rem auto 0;
    color: var(--text-soft);
    font-size: clamp(1rem, 2.1vw, 1.24rem);
    line-height: 1.85;
    transform: translate3d(0, calc(var(--hero-content-shift) * 0.78), 0);
    opacity: calc(1 - var(--hero-fade) * 0.94);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 2.6rem;
    transform: translate3d(0, calc(var(--hero-content-shift) * 1.02), 0);
    opacity: calc(1 - var(--hero-fade) * 1.08);
}

.hero__signals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    width: min(880px, 100%);
    margin-top: 2.6rem;
}

.hero__signals span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0.9rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.84);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 14px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.46);
}

.hero__scroll span {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.46em;
    text-transform: uppercase;
}

.hero__scroll i {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--brand-red), transparent);
}

.hero--poster {
    min-height: 100svh;
    overflow-x: clip;
    background:
        linear-gradient(118deg, rgba(227, 24, 55, 0.2) 0 1px, transparent 1px 16%),
        linear-gradient(124deg, transparent 0 70%, rgba(227, 24, 55, 0.24) 70% 71%, transparent 71% 100%),
        radial-gradient(circle at 76% 48%, rgba(227, 24, 55, 0.22), transparent 28%),
        linear-gradient(135deg, #040405 0%, #09090b 48%, #140609 100%);
}

.hero__media--poster {
    background:
        radial-gradient(circle at 78% 50%, rgba(255, 60, 42, 0.2), transparent 28%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 24%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 112px);
}

.hero__veil--poster {
    background:
        linear-gradient(180deg, rgba(8, 8, 10, 0.28) 0%, rgba(8, 8, 10, 0.2) 42%, rgba(8, 8, 10, 0.78) 100%),
        linear-gradient(90deg, rgba(8, 8, 10, 0.08) 0%, rgba(8, 8, 10, 0.36) 100%);
    opacity: calc(0.8 + var(--hero-progress) * 0.08);
}

.hero__content--poster {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    grid-template-rows: auto auto auto;
    grid-template-areas:
        "copy visual"
        "facts visual"
        "consult consult";
    align-items: start;
    gap: 1.6rem 2.4rem;
    padding-top: 8.2rem;
    padding-bottom: 2.4rem;
    --reveal-radius: 0px;
}

@media (min-height: 800px) {
    .hero__content--poster {
        align-items: center;
    }
}

.hero__poster-copy {
    grid-area: copy;
    display: grid;
    align-content: center;
    gap: 1.5rem;
    min-width: 0;
    max-width: 43rem;
    text-align: left;
}

.hero__poster-heading {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
}

.hero__poster-heading-bar {
    display: block;
    width: 4px;
    background: var(--brand-red);
    flex: 0 0 auto;
}

.hero__poster-heading-stack {
    display: grid;
    gap: 0.6rem;
}

.hero__poster-title span {
    display: block;
}

.hero__poster-title-accent {
    color: var(--brand-red);
}

.hero__poster-kicker,
.hero__poster-title,
.hero__poster-subtitle,
.hero__poster-lead {
    margin: 0;
    letter-spacing: 0;
}

.hero__poster-kicker {
    width: fit-content;
    padding-left: 0.9rem;
    border-left: 4px solid var(--brand-red);
    color: rgba(255, 255, 255, 0.82);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.hero__poster-title {
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3.2rem, 4vw, 4.75rem);
    font-weight: 700;
    line-height: 0.92;
    text-transform: uppercase;
}

.hero__poster-title::after {
    content: "";
    display: block;
    width: min(18rem, 68%);
    height: 3px;
    margin-top: 1rem;
    background: linear-gradient(90deg, var(--brand-red), rgba(227, 24, 55, 0));
}

.hero__poster-subtitle {
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.4rem, 1.6vw, 1.85rem);
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
}

.hero__poster-lead {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
    line-height: 1.75;
}

.hero__poster-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin-top: 0.25rem;
}

.hero__poster-europe {
    display: inline-flex;
    align-items: center;
    min-height: 3.1rem;
    padding: 0.15rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero__poster-cta {
    min-height: 3.1rem;
    letter-spacing: 0;
    text-align: center;
}

.hero__poster {
    grid-area: visual;
    position: relative;
    width: 100%;
    margin: 0;
    display: grid;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.hero__content--poster::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 45%;
    right: -100vw;
    background-image: url('../images/generated/detnov-hero-map-badge-v3.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    z-index: -1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
}

.hero__poster::before {
    display: none;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -100vw;
    background-image: url('../images/generated/detnov-hero-map-badge-v3.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    z-index: -1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
}

.hero__poster-frame {
    position: relative;
    width: 100%;
    max-width: 58rem;
}

.hero__poster img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform-origin: center bottom;
    filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.42));
}

/* Utility section under the heading stack */
.hero__poster-utility {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.hero__poster-utility-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-red);
}

.hero__poster-icon--utility {
    display: inline-block;
    width: 2.2rem;
    height: 2.2rem;
}

.hero__poster-icon--utility svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero__poster-utility-slash {
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    font-weight: 300;
}

.hero__poster-utility p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__poster-utility p span {
    display: block;
}

/* Fact Columns Section (Transparent layout with red dividers) */
.hero__poster-facts {
    grid-area: facts;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 2rem;
    max-width: 48rem;
    min-width: 0;
}

.hero__poster-fact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    min-width: 0;
}

.hero__poster-fact:not(:last-child) {
    border-right: 1px solid rgba(227, 24, 55, 0.35);
}

.hero__poster-fact .hero__poster-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
    color: var(--brand-red);
}

.hero__poster-fact .hero__poster-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero__poster-fact-copy {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero__poster-fact-copy strong {
    display: block;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__poster-fact-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    line-height: 1.45;
}

/* Consultations bottom banner */
.hero__poster-consult {
    grid-area: consult;
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.5rem 0;
    border-top: 2px solid var(--brand-red);
    border-bottom: 2px solid var(--brand-red);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero__poster-consult-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1 0 auto;
}

.hero__poster-consult-main .hero__poster-icon--consult {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    color: var(--brand-red);
}

.hero__poster-consult-main .hero__poster-icon--consult svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero__poster-consult-main p {
    margin: 0;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__poster-badges {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.hero__poster-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    min-width: 0;
}

.hero__poster-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.hero__poster-badge-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero__poster-badge span {
    color: rgba(255, 255, 255, 0.85);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    max-width: 7.5rem;
    text-align: center;
}

.hero--poster .hero__scroll {
    display: none;
}

/* Height-based media queries to fit entire hero section on laptop screens without scrolling */
@media (min-width: 1200px) and (max-height: 900px) {
    .site-header__inner {
        min-height: 76px;
    }

    .hero__content--poster {
        padding-top: 6.2rem;
        padding-bottom: 1.2rem;
        gap: 0.8rem 2.4rem;
    }
    
    .hero__poster-copy {
        gap: 0.8rem;
    }
    
    .hero__poster-title {
        font-size: 3.5rem;
    }
    
    .hero__poster-title::after {
        margin-top: 0.6rem;
    }
    
    .hero__poster-subtitle {
        font-size: 1.45rem;
    }
    
    .hero__poster-utility {
        margin-top: 0.6rem;
    }
    
    .hero__poster-icon--utility {
        width: 1.8rem;
        height: 1.8rem;
    }
    
    .hero__poster-utility p {
        font-size: 0.85rem;
    }
    
    .hero__poster-facts {
        margin-top: 1rem;
    }
    
    .hero__poster-fact .hero__poster-icon {
        width: 2.6rem;
        height: 2.6rem;
        margin-bottom: 0.5rem;
    }
    
    .hero__poster-fact-copy strong {
        font-size: 0.92rem;
    }
    
    .hero__poster-fact-copy p {
        font-size: 0.78rem;
    }
    
    .hero__poster-consult {
        margin-top: 1rem;
        padding: 0.8rem 0;
    }
    
    .hero__poster-consult-main .hero__poster-icon--consult {
        width: 2.8rem;
        height: 2.8rem;
    }
    
    .hero__poster-consult-main p {
        font-size: 1rem;
    }
    
    .hero__poster-badge {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0 1.2rem;
    }
    
    .hero__poster-badge-icon {
        width: 1.6rem;
        height: 1.6rem;
        margin-bottom: 0;
    }
    
    .hero__poster-badge span {
        font-size: 0.7rem;
        text-align: left;
        max-width: none;
    }
    
    .hero__poster-frame {
        max-width: 46rem;
    }
}

@media (min-width: 1200px) and (max-height: 800px) {
    .site-header__inner {
        min-height: 68px;
    }

    .hero__content--poster {
        padding-top: 5.6rem;
        padding-bottom: 0.8rem;
        gap: 0.5rem 2.4rem;
    }
    
    .hero__poster-copy {
        gap: 0.5rem;
    }
    
    .hero__poster-title {
        font-size: 3rem;
    }
    
    .hero__poster-title::after {
        margin-top: 0.4rem;
    }
    
    .hero__poster-subtitle {
        font-size: 1.25rem;
    }
    
    .hero__poster-utility {
        margin-top: 0.3rem;
    }
    
    .hero__poster-icon--utility {
        width: 1.6rem;
        height: 1.6rem;
    }
    
    .hero__poster-utility p {
        font-size: 0.8rem;
    }
    
    .hero__poster-facts {
        margin-top: 0.6rem;
    }
    
    .hero__poster-fact .hero__poster-icon {
        width: 2.2rem;
        height: 2.2rem;
        margin-bottom: 0.3rem;
    }
    
    .hero__poster-fact-copy strong {
        font-size: 0.85rem;
    }
    
    .hero__poster-fact-copy p {
        font-size: 0.75rem;
        line-height: 1.35;
    }
    
    .hero__poster-consult {
        margin-top: 0.6rem;
        padding: 0.6rem 0;
    }
    
    .hero__poster-consult-main .hero__poster-icon--consult {
        width: 2.2rem;
        height: 2.2rem;
    }
    
    .hero__poster-consult-main p {
        font-size: 0.9rem;
    }
    
    .hero__poster-badge {
        flex-direction: row;
        gap: 0.4rem;
        padding: 0 0.8rem;
    }
    
    .hero__poster-badge-icon {
        width: 1.4rem;
        height: 1.4rem;
        margin-bottom: 0;
    }
    
    .hero__poster-badge span {
        font-size: 0.65rem;
        text-align: left;
        max-width: none;
        white-space: nowrap;
    }
    
    .hero__poster-badge span br {
        display: none;
    }
    
    .hero__poster-frame {
        max-width: 36rem;
    }
}

@media (min-width: 1200px) and (max-height: 700px) {
    .site-header__inner {
        min-height: 62px;
    }

    .hero__content--poster {
        padding-top: 5.2rem;
        padding-bottom: 0.6rem;
        gap: 0.4rem 2.4rem;
    }
    
    .hero__poster-copy {
        gap: 0.4rem;
    }
    
    .hero__poster-title {
        font-size: 2.6rem;
    }
    
    .hero__poster-title::after {
        margin-top: 0.3rem;
        height: 2px;
    }
    
    .hero__poster-subtitle {
        font-size: 1.15rem;
    }
    
    .hero__poster-utility {
        margin-top: 0.2rem;
        gap: 0.4rem;
    }
    
    .hero__poster-icon--utility {
        width: 1.4rem;
        height: 1.4rem;
    }
    
    .hero__poster-utility p {
        font-size: 0.75rem;
    }
    
    .hero__poster-facts {
        margin-top: 0.4rem;
    }
    
    .hero__poster-fact .hero__poster-icon {
        width: 1.8rem;
        height: 1.8rem;
        margin-bottom: 0.2rem;
    }
    
    .hero__poster-fact-copy strong {
        font-size: 0.8rem;
    }
    
    .hero__poster-fact-copy p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .hero__poster-consult {
        margin-top: 0.4rem;
        padding: 0.4rem 0;
    }
    
    .hero__poster-consult-main .hero__poster-icon--consult {
        width: 1.8rem;
        height: 1.8rem;
    }
    
    .hero__poster-consult-main p {
        font-size: 0.8rem;
    }
    
    .hero__poster-badge {
        flex-direction: row;
        gap: 0.3rem;
        padding: 0 0.6rem;
    }
    
    .hero__poster-badge-icon {
        width: 1.2rem;
        height: 1.2rem;
        margin-bottom: 0;
    }
    
    .hero__poster-badge span {
        font-size: 0.6rem;
        text-align: left;
        max-width: none;
        white-space: nowrap;
    }
    
    .hero__poster-badge span br {
        display: none;
    }
    
    .hero__poster-frame {
        max-width: 30rem;
    }
}

@media (min-width: 1200px) and (max-height: 600px) {
    .site-header__inner {
        min-height: 50px;
    }

    .hero__content--poster {
        padding-top: 4.5rem;
        padding-bottom: 0.2rem;
        gap: 0.2rem 2.4rem;
    }
    
    .hero__poster-copy {
        gap: 0.2rem;
    }
    
    .hero__poster-title {
        font-size: 2.2rem;
    }
    
    .hero__poster-subtitle {
        font-size: 1rem;
    }
    
    .hero__poster-utility {
        display: none;
    }
    
    .hero__poster-facts {
        margin-top: 0.2rem;
    }
    
    .hero__poster-fact .hero__poster-icon {
        width: 1.5rem;
        height: 1.5rem;
        margin-bottom: 0.1rem;
    }
    
    .hero__poster-fact-copy strong {
        font-size: 0.75rem;
    }
    
    .hero__poster-fact-copy p {
        display: none;
    }
    
    .hero__poster-consult {
        margin-top: 0.2rem;
        padding: 0.2rem 0;
    }
    
    .hero__poster-consult-main .hero__poster-icon--consult {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .hero__poster-consult-main p {
        font-size: 0.75rem;
    }
    
    .hero__poster-badge {
        flex-direction: row;
        gap: 0.2rem;
        padding: 0 0.4rem;
    }
    
    .hero__poster-badge-icon {
        width: 1rem;
        height: 1rem;
        margin-bottom: 0;
    }
    
    .hero__poster-badge span {
        font-size: 0.55rem;
        text-align: left;
        max-width: none;
        white-space: nowrap;
    }
    
    .hero__poster-badge span br {
        display: none;
    }
    
    .hero__poster-frame {
        max-width: 24rem;
    }
}

.hero--detnov {
    min-height: 100svh;
    background:
        radial-gradient(circle at 18% 24%, rgba(227, 24, 55, 0.14), transparent 28%),
        radial-gradient(circle at 72% 64%, rgba(255, 91, 49, 0.2), transparent 34%),
        linear-gradient(135deg, #040405 0%, #09090c 42%, #14070a 100%);
}

.hero__media--detnov {
    background:
        radial-gradient(circle at 50% 76%, rgba(227, 24, 55, 0.26), transparent 24%),
        radial-gradient(circle at 82% 34%, rgba(255, 91, 49, 0.16), transparent 18%);
}

.hero__beam,
.hero__glow,
.hero__noise {
    position: absolute;
    pointer-events: none;
}

.hero__beam {
    top: -20%;
    width: clamp(14rem, 18vw, 22rem);
    height: 160%;
    opacity: 0.88;
    mix-blend-mode: screen;
    background:
        linear-gradient(180deg, rgba(255, 97, 74, 0) 0%, rgba(255, 80, 63, 0.9) 20%, rgba(255, 80, 63, 0.18) 100%);
}

.hero__beam--left {
    left: clamp(-7rem, -2vw, -2rem);
    transform: skewX(-34deg);
}

.hero__beam--right {
    right: clamp(-10rem, -4vw, -3rem);
    transform: skewX(34deg);
}

.hero__glow {
    border-radius: 999px;
    filter: blur(18px);
}

.hero__glow--one {
    width: clamp(18rem, 26vw, 30rem);
    height: clamp(18rem, 26vw, 30rem);
    left: -5rem;
    top: 18%;
    background: radial-gradient(circle, rgba(227, 24, 55, 0.22), rgba(227, 24, 55, 0));
}

.hero__glow--two {
    width: clamp(16rem, 22vw, 26rem);
    height: clamp(16rem, 22vw, 26rem);
    right: 5%;
    bottom: 14%;
    background: radial-gradient(circle, rgba(255, 91, 49, 0.18), rgba(255, 91, 49, 0));
}

.hero__noise {
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(rgba(255, 255, 255, 0.28) 0.7px, transparent 0.7px);
    background-size: 20px 20px;
    mix-blend-mode: soft-light;
}

.hero__veil--detnov {
    background:
        linear-gradient(180deg, rgba(8, 8, 10, 0.38) 0%, rgba(8, 8, 10, 0.46) 28%, rgba(8, 8, 10, 0.9) 100%),
        linear-gradient(90deg, rgba(8, 8, 10, 0.14) 0%, rgba(8, 8, 10, 0.12) 34%, rgba(8, 8, 10, 0.56) 100%);
    opacity: calc(0.82 + var(--hero-progress) * 0.12);
}

.hero__content--detnov {
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    grid-template-areas:
        "copy art"
        "aside art";
    align-items: center;
    gap: clamp(2rem, 4vw, 5rem);
    padding: clamp(6.6rem, 8vw, 8.4rem) 0 clamp(3.8rem, 6vw, 5.4rem);
    text-align: left;
}

.hero__copy {
    grid-area: copy;
    position: relative;
    z-index: 1;
    max-width: 34rem;
}

.hero__aside {
    grid-area: aside;
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.4rem;
    align-content: start;
    max-width: 38rem;
}

.hero__aside .hero__actions,
.hero__aside .hero__signals {
    margin-top: 0;
}

.hero--detnov .hero__lead {
    max-width: 31rem;
    margin-inline: 0;
}

.hero--detnov .hero__title {
    max-width: 8.6ch;
    font-size: clamp(3rem, 6.6vw, 6.2rem);
}

.hero__detnov-subline {
    margin: 1.5rem 0 0;
    padding-top: 1rem;
    max-width: 18ch;
    border-top: 1px solid rgba(227, 24, 55, 0.66);
    color: rgba(255, 255, 255, 0.96);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.45rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.hero--detnov .hero__actions,
.hero--detnov .hero__signals {
    justify-content: flex-start;
}

.hero__art {
    grid-area: art;
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.2rem;
}

.hero__brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    width: fit-content;
    margin-left: auto;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(10, 10, 11, 0.5);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(14px);
}

.hero__brand-dot {
    width: 0.8rem;
    height: 0.8rem;
    flex: none;
    border-radius: 999px;
    background: var(--brand-red);
    box-shadow: 0 0 0 6px rgba(227, 24, 55, 0.18);
}

.hero__brand-name {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    text-transform: lowercase;
}

.hero__brand-meta {
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero__device-stage {
    position: relative;
    min-height: clamp(22rem, 34vw, 31rem);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--radius-xl) + 0.4rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transform: translate3d(0, calc(var(--hero-progress) * 34px), 0);
    transition: transform 120ms linear;
}

.hero__device-stage::before {
    content: "";
    position: absolute;
    inset: auto 10% 10% 12%;
    height: 38%;
    background: radial-gradient(circle at center, rgba(227, 24, 55, 0.4), rgba(227, 24, 55, 0));
    filter: blur(44px);
}

.hero__device-stage::after {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: calc(var(--radius-xl) + 0.1rem);
    pointer-events: none;
}

.hero-device {
    position: absolute;
    margin: 0;
    will-change: transform;
    filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.38));
}

.hero-device img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-device--panel {
    width: 33%;
    left: -1%;
    top: 10%;
    transform: translate3d(0, calc(var(--hero-progress) * -10px), 0);
}

.hero-device--laptop {
    width: 44%;
    left: 22%;
    top: 26%;
    z-index: 2;
    transform: rotate(-8deg) translate3d(0, calc(var(--hero-progress) * 12px), 0);
}

.hero-device--phone {
    width: 14%;
    right: 15%;
    top: 17%;
    z-index: 3;
    transform: rotate(4deg) translate3d(0, calc(var(--hero-progress) * -6px), 0);
}

.hero-device:nth-child(4) {
    width: 18%;
    left: 6%;
    bottom: 8%;
    transform: rotate(-2deg);
}

.hero-device:nth-child(5) {
    width: 15%;
    left: 33%;
    bottom: 2%;
    transform: rotate(-3deg);
}

.hero-device:nth-child(6) {
    width: 15%;
    right: 19%;
    bottom: 10%;
    transform: rotate(6deg);
}

.hero-device:nth-child(7) {
    width: 13%;
    right: 4%;
    bottom: 18%;
    transform: rotate(-3deg);
}

.hero-device:nth-child(8) {
    width: 12.5%;
    right: 0;
    bottom: 4%;
    transform: rotate(4deg);
}

.hero__art-note {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.34rem);
    font-weight: 600;
}

.hero__fact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
    gap: 1rem;
    width: min(100%, 42rem);
}

.hero__fact-card {
    position: relative;
    padding: 1.2rem 1.1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.35rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero__fact-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-red), rgba(255, 138, 29, 0.1));
}

.hero__fact-title {
    display: block;
    margin: 0 0 0.82rem;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero__fact-copy {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.93rem;
    line-height: 1.7;
}

.hero__signals--detnov {
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    margin-top: 0.1rem;
}

.hero__signals--detnov span {
    min-height: 0;
    padding: 0.72rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section,
.contact-section {
    position: relative;
    padding: 7.6rem 0;
}

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

.section--dark {
    background: transparent;
}

.section-heading {
    display: grid;
    gap: 1.15rem;
    margin-bottom: 3.5rem;
}

.section-heading h2,
.contact-section__copy h2 {
    max-width: 12ch;
    font-size: clamp(2.4rem, 7vw, 5.2rem);
}

.section-heading__title--two-line {
    max-width: none;
}

.section-heading__title--two-line span {
    display: block;
    white-space: nowrap;
}

.section-heading p:not(.section-heading__meta) {
    max-width: 42rem;
    margin: 0;
    color: var(--text-soft);
    line-height: 1.85;
}

.section-heading--split {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
    align-items: start;
    gap: 2.8rem;
}

.section-heading__quote {
    margin: 0;
    padding: 0 0 0 1.5rem;
    border-left: 2px solid rgba(227, 24, 55, 0.8);
}

.section-heading__quote p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.96rem;
    line-height: 1.8;
}

.section-heading__quote span {
    display: inline-block;
    margin-top: 0.85rem;
    color: var(--brand-red);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.section-heading__narrative {
    padding: 0 0 0 1.5rem;
    border-left: 2px solid rgba(227, 24, 55, 0.8);
}

.section-heading__narrative p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.98rem;
    line-height: 1.82;
}

.section-heading__lead {
    max-width: 34rem;
}

.section-heading__narrative p + p {
    margin-top: 1.1rem;
}

.capability-shell {
    width: min(1380px, calc(100vw - 48px));
}

.capability-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
    align-items: start;
    gap: 2.6rem;
    margin-bottom: 3.5rem;
}

.capability-showcase__media {
    margin-top: clamp(2.8rem, 4vw, 4.6rem);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.8rem;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 28px 56px rgba(5, 11, 22, 0.24);
}

.capability-credentials {
    display: grid;
    gap: 1.25rem;
    min-height: 100%;
    padding: 1.5rem;
    background:
        radial-gradient(circle at top right, rgba(227, 24, 55, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(10, 20, 36, 0.96) 0%, rgba(10, 18, 30, 0.98) 100%);
}

.capability-credentials__card {
    display: grid;
    gap: 1rem;
    align-items: center;
    justify-items: center;
    padding: 1.5rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.45rem;
    background: rgba(255, 255, 255, 0.04);
}

.capability-credentials__card--years {
    min-height: 19rem;
}

.capability-credentials__card--association {
    grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
    justify-items: start;
}

.capability-credentials__card img {
    display: block;
    max-width: 100%;
    height: auto;
}

.capability-credentials__card--years img {
    width: min(240px, 100%);
}

.capability-credentials__card--association img {
    width: 100%;
    max-width: 180px;
}

.capability-credentials__copy {
    display: grid;
    gap: 0.35rem;
    width: 100%;
}

.capability-credentials__copy strong {
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.capability-credentials__copy span {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.65;
}

.capability-showcase__content {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    max-width: 100%;
}

.capability-showcase__title {
    max-width: 13ch;
    margin: 0;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.7rem);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.capability-showcase__title span {
    color: var(--brand-red);
}

.capability-showcase__lead {
    margin: 0;
    max-width: 100%;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.82;
}

.capability-showcase__copy {
    display: grid;
    gap: 1.3rem;
    margin-top: 1.5rem;
}

.capability-showcase__block h3 {
    margin: 0 0 0.55rem;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.capability-showcase__block p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.96rem;
    line-height: 1.82;
}

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

.feature-card {
    position: relative;
    min-height: 38rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--brand-gray);
    box-shadow: var(--shadow);
    perspective: 1200px;
}

.feature-card__image,
.service-card__visual {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

.feature-card__overlay,
.service-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.1) 0%, rgba(12, 12, 14, 0.76) 60%, rgba(12, 12, 14, 0.94) 100%);
}

.feature-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 2rem;
    transform: translate3d(0, calc(var(--parallax-shift, 0px) * -0.18), 0);
    transition: transform 180ms linear;
}

.feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(227, 24, 55, 0.22);
    border-radius: 22px;
    background: rgba(227, 24, 55, 0.09);
    color: var(--brand-red);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.feature-card__label {
    margin: 0 0 0.85rem;
    color: var(--brand-red);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.feature-card h3 {
    margin: 0 0 1rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 0.98;
}

.feature-card p {
    margin: 0 0 1.2rem;
    color: var(--text-soft);
    line-height: 1.75;
}

.feature-card__list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feature-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ff8f75;
    font-size: 0.92rem;
}

.feature-card__list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--brand-red);
    box-shadow: 0 0 12px rgba(227, 24, 55, 0.8);
}

.feature-card__action,
.service-card__action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.4rem;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.feature-card__action::after,
.service-card__action::after {
    content: "→";
    color: var(--brand-red);
    font-size: 0.95rem;
}

.stat-band {
    position: relative;
    padding: 4.5rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand-red), #fb2447 58%, #ff3d3d);
}

.stat-band__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.stat-band__item {
    text-align: center;
}

.stat-band__item strong {
    display: block;
    margin-bottom: 0.65rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-style: italic;
    font-variant-numeric: tabular-nums lining-nums;
    line-height: 0.9;
    letter-spacing: -0.08em;
}

.stat-band__item span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.section--split {
    overflow: hidden;
}

.split-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 4rem;
    align-items: center;
}

.split-feature__copy h2 {
    margin: 0 0 1.4rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.6rem, 6vw, 6.2rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.split-feature__copy p {
    margin: 0 0 1.15rem;
    max-width: 39rem;
    color: var(--text-soft);
    line-height: 1.9;
}

.split-feature__highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 2rem 0;
}

.split-feature__highlights article {
    padding: 1.2rem 1.3rem;
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.04);
}

.split-feature__highlights strong {
    display: block;
    margin-bottom: 0.55rem;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.split-feature__highlights span {
    color: var(--text-soft);
    line-height: 1.7;
}

.split-feature__frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius-xl) + 0.5rem);
    background: var(--brand-gray);
    box-shadow: var(--shadow);
}

.split-feature__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-feature__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 11, 0.08) 0%, rgba(10, 10, 11, 0.58) 100%);
}

.split-feature__frame--static::after {
    background: linear-gradient(180deg, rgba(10, 10, 11, 0.06) 0%, rgba(10, 10, 11, 0.18) 100%);
}

.split-feature__badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 1;
    display: grid;
    gap: 6px;
    max-width: 16rem;
    padding: 1.2rem 1.3rem;
    border: 1px solid rgba(227, 24, 55, 0.3);
    border-radius: 1.8rem;
    background: rgba(10, 10, 11, 0.84);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.34);
    transform: translate3d(0, calc(var(--parallax-shift, 0px) * -0.28), 0);
    transition: transform 180ms linear;
}

.split-feature__badge span {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.split-feature__badge small {
    color: var(--text-soft);
    line-height: 1.6;
}

.operations-grid {
    display: grid;
    gap: 22px;
}

.operations-grid--cinematic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.operation-card {
    padding: 1.8rem 1.5rem 1.9rem;
    border: 1px solid var(--line);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    min-height: 100%;
}

.operation-card h3 {
    margin: 0 0 1rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.55rem;
    line-height: 1;
}

.operation-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.82;
}

.media-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.media-band__card {
    min-height: 220px;
    border: 1px solid var(--line);
    border-radius: 2.4rem;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.media-band__card img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.media-band__card--certificates {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.2rem;
    background:
        radial-gradient(circle at top right, rgba(227, 24, 55, 0.18), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.media-band__eyebrow {
    margin: 0;
    color: var(--brand-red);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.media-band__card--certificates h3 {
    margin: 0;
    max-width: 16ch;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.media-band__visual-stage {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.8rem;
    overflow: hidden;
}

.media-band__visual-stage--accreditation {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    height: auto;
    aspect-ratio: 75 / 11;
    padding: 0.3rem 0.45rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(8, 10, 14, 0.42);
}

.media-band__visual-stage--accreditation img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: brightness(1.08) contrast(1.04);
}

.media-band__caption {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.scroller-band {
    --scroller-band-gap: clamp(1.2rem, 3vw, 2.6rem);

    display: flex;
    align-items: center;
    gap: var(--scroller-band-gap);
    overflow: hidden;
    padding: 0.9rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.scroller-band__track {
    display: flex;
    flex: none;
    align-items: center;
    gap: var(--scroller-band-gap);
    min-width: max-content;
    animation: scroller-band-marquee 30s linear infinite;
}

.scroller-band__item {
    display: flex;
    flex: none;
    align-items: center;
    justify-content: center;
    width: clamp(12rem, 20vw, 16rem);
    height: clamp(6rem, 9vw, 8.4rem);
}

.scroller-band__item--detnov-strip {
    width: clamp(28rem, 44vw, 40rem);
}

.scroller-band__item--extinguishers {
    width: clamp(14rem, 20vw, 18rem);
}

.scroller-band__item--hydrant {
    width: clamp(11rem, 16vw, 14rem);
}

.scroller-band__item--security {
    width: clamp(13rem, 18vw, 16rem);
}

.scroller-band__item img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.32));
}

@keyframes scroller-band-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--scroller-band-gap)));
    }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.customer-band {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.customer-logo-marquee {
    display: flex;
    gap: 24px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.customer-logo-track {
    display: flex;
    flex: none;
    gap: 24px;
    min-width: max-content;
    animation: customer-logo-scroll 34s linear infinite;
}

.customer-logo-marquee:hover .customer-logo-track {
    animation-play-state: paused;
}

.customer-logo-card {
    display: flex;
    flex: 0 0 clamp(14rem, 23vw, 18rem);
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 10;
    padding: clamp(0.35rem, 1.2vw, 0.75rem);
    transition: transform 180ms ease;
}

.customer-logo-card:hover {
    transform: translateY(-4px);
}

.customer-logo-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: min(8rem, 100%);
    object-fit: contain;
}

@keyframes customer-logo-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 24px));
    }
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 24rem;
    border: 1px solid var(--line);
    border-radius: 2rem;
    background: var(--brand-gray);
    box-shadow: var(--shadow);
}

.service-card__link {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: inherit;
    height: 100%;
}

.service-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    padding: 1.7rem;
    transform: translate3d(0, calc(var(--parallax-shift, 0px) * -0.14), 0);
    transition: transform 180ms linear;
}

.service-card__body h3 {
    margin: 0 0 0.85rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.65rem;
    line-height: 1.05;
}

.service-card__preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
}

.service-card__preview li {
    padding: 0.42rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(9, 10, 12, 0.34);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.service-card__body p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.service-grid--compact .service-card {
    min-height: 21rem;
}

.contact-section {
    overflow: hidden;
    background: var(--surface-white);
    color: var(--text-dark);
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: -18vw;
    width: 48vw;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 17, 19, 0.04), rgba(16, 17, 19, 0.01));
    transform: skewX(-14deg);
}

.contact-section__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3.2rem;
    align-items: start;
}

.contact-section__copy p:not(.section-heading__meta) {
    max-width: 34rem;
    color: var(--text-dark-soft);
    line-height: 1.9;
}

.contact-section__copy h2 {
    max-width: 9ch;
    color: var(--text-dark);
}

.contact-panel {
    display: grid;
    gap: 18px;
    margin-top: 2.2rem;
}

.contact-panel__item {
    padding: 1.2rem 1.35rem;
    border: 1px solid rgba(16, 17, 19, 0.08);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.78);
}

.contact-panel__item span {
    display: block;
    margin-bottom: 0.45rem;
    color: rgba(16, 17, 19, 0.48);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.contact-panel__item strong,
.contact-panel__item a {
    color: var(--text-dark);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.15rem;
    line-height: 1.45;
    word-break: break-word;
}

.site-footer {
    padding: 4.8rem 0 2.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background:
        radial-gradient(circle at 12% 16%, rgba(227, 24, 55, 0.08), transparent 26%),
        radial-gradient(circle at 86% 8%, rgba(255, 91, 49, 0.06), transparent 20%),
        linear-gradient(180deg, #060708 0%, #07111b 100%);
}

.site-footer__top {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.site-footer__column {
    min-width: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    color: #fff;
}

.site-footer__brand-mark {
    width: 3rem;
    height: 3rem;
    flex: none;
    border-radius: 999px;
    box-shadow: 0 16px 36px rgba(227, 24, 55, 0.24);
}

.site-footer__brand-lockup {
    display: grid;
    gap: 0.28rem;
}

.site-footer__brand-lockup strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.42rem;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.site-footer__brand-lockup span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.site-footer__company {
    margin: 1.05rem 0 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.75;
    text-transform: uppercase;
}

.site-footer__intro {
    margin: 1rem 0 0;
    max-width: 30rem;
    color: var(--text-soft);
    line-height: 1.78;
}

.site-footer__highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.3rem;
}

.site-footer__highlight {
    display: grid;
    gap: 0.28rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.05rem;
    background: rgba(255, 255, 255, 0.03);
}

.site-footer__highlight strong {
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.site-footer__highlight small {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__title {
    position: relative;
    margin: 0 0 1.7rem;
    padding-bottom: 0.85rem;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.site-footer__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.2rem;
    height: 3px;
    border-radius: 999px;
    background: var(--brand-red);
}

.site-footer__menu {
    display: grid;
    gap: 0.9rem;
}

.site-footer__menu-link {
    display: inline-flex;
    width: fit-content;
    color: var(--text-soft);
    line-height: 1.7;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer__menu-link:hover {
    color: #fff;
    transform: translateX(2px);
}

.site-footer__contact-list {
    display: grid;
    gap: 1rem;
}

.site-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-soft);
    line-height: 1.8;
}

.site-footer__contact-item:hover {
    color: #fff;
}

.site-footer__contact-icon {
    display: inline-flex;
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    margin-top: 0.28rem;
    color: var(--brand-red);
}

.site-footer__contact-icon svg {
    width: 100%;
    height: 100%;
}

.site-footer__contact-copy {
    color: inherit;
}

.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.45rem;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--brand-red);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.site-footer__social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(227, 24, 55, 0.28);
    background: rgba(227, 24, 55, 0.08);
    color: #fff;
}

.site-footer__social-link svg {
    width: 1.1rem;
    height: 1.1rem;
}

.site-footer__newsletter-copy {
    margin: 0 0 1.35rem;
    color: var(--text-soft);
    line-height: 1.8;
}

.site-footer__newsletter {
    display: grid;
    gap: 0.8rem;
}

.site-footer__newsletter-row {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    padding: 0.25rem;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-footer__newsletter-row:focus-within {
    border-color: rgba(227, 24, 55, 0.4);
    box-shadow: 0 0 0 2px rgba(227, 24, 55, 0.15);
}

.site-footer__newsletter-input {
    flex: 1;
    min-width: 0;
    height: 2.6rem;
    padding: 0 0.85rem;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
}

.site-footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.site-footer__newsletter-input:focus {
    border-color: transparent;
}

.site-footer__newsletter-button {
    height: 2.6rem;
    padding: 0 1.35rem;
    border: none;
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-footer__newsletter-button:hover {
    background: var(--brand-red);
}

.site-footer__newsletter-status {
    min-height: 1.3rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    line-height: 1.5;
}

.site-whatsapp-float {
    position: fixed;
    right: clamp(1rem, 2vw, 1.6rem);
    bottom: clamp(1rem, 2vw, 1.6rem);
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 22px 42px rgba(18, 140, 126, 0.34);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.site-whatsapp-float:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 26px 48px rgba(18, 140, 126, 0.42);
    filter: brightness(1.04);
}

.site-whatsapp-float__icon {
    display: inline-flex;
    width: 1.55rem;
    height: 1.55rem;
}

.site-whatsapp-float__icon svg {
    width: 100%;
    height: 100%;
}

.site-footer__meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    margin-top: 3rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.site-footer__meta p {
    margin: 0;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.22);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: right;
}

.page-hero {
    min-height: 36rem;
}

.about-hero {
    position: relative;
    min-height: auto;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 42%, rgba(227, 24, 55, 0.18), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(227, 24, 55, 0.1), transparent 24%),
        linear-gradient(180deg, #040405 0%, #07080b 48%, #0d0d10 100%);
}

.about-hero__veil {
    position: absolute;
    inset: 0;
}

.about-hero__veil {
    background:
        linear-gradient(90deg, rgba(5, 5, 7, 0.96) 0%, rgba(5, 5, 7, 0.9) 36%, rgba(5, 5, 7, 0.54) 62%, rgba(5, 5, 7, 0.72) 100%),
        linear-gradient(180deg, rgba(5, 5, 7, 0.32) 0%, rgba(5, 5, 7, 0.12) 28%, rgba(5, 5, 7, 0.84) 100%);
    opacity: calc(0.88 + var(--hero-progress) * 0.08);
}

.about-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    min-height: clamp(31rem, 58svh, 42rem);
    padding: clamp(8rem, 10vh, 9.5rem) 0 clamp(3.2rem, 5vh, 4.4rem);
}

.about-hero__copy {
    max-width: 64rem;
}

.about-hero__label {
    display: inline-block;
    width: fit-content;
    margin: 0 0 1.4rem;
    color: var(--brand-red);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    white-space: nowrap;
}

.about-hero__title {
    margin: 0;
    max-width: none;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3.2rem, 6vw, 5.9rem);
    line-height: 0.94;
    letter-spacing: -0.07em;
}

.about-hero__title-line {
    display: block;
    white-space: nowrap;
}

.about-hero__title em {
    color: var(--brand-red);
    font-style: normal;
}

.about-hero__lead {
    max-width: 34rem;
    margin: 1.55rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.18rem;
    line-height: 1.72;
}

.about-founder__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 3.2vw, 3.5rem);
    align-items: center;
}

.about-story__grid {
    max-width: 76rem;
}

.about-story__content {
    max-width: 76rem;
}

.about-overview__card {
    padding: clamp(1.7rem, 3vw, 2.6rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--radius-xl) + 0.2rem);
    background:
        radial-gradient(circle at right top, rgba(227, 24, 55, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.about-overview__card h1,
.about-overview__card h2 {
    margin: 0;
    max-width: 20ch;
}

.about-overview__body {
    margin: 1.35rem 0 0;
    max-width: 72rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.04rem;
    line-height: 1.95;
}

.about-story__content h2,
.about-timeline__heading h2,
.about-founder__copy h2 {
    max-width: 11ch;
}

.about-story__intro {
    max-width: 42rem;
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.88;
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.about-pillar,
.about-support__card {
    padding: 1.35rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.55rem;
    background: rgba(255, 255, 255, 0.035);
}

.about-pillar h3,
.about-timeline__card h3,
.about-support__card h3 {
    margin: 0 0 0.8rem;
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.08rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.about-pillar p,
.about-timeline__card p,
.about-support__card p,
.about-founder__copy p,
.about-founder__meta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.82;
}

.about-timeline__grid,
.about-support {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.about-timeline__card {
    padding: 1.5rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.8rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.about-timeline__year {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--brand-red);
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-founder__copy p + p {
    margin-top: 1rem;
}

.about-founder__card {
    display: grid;
    gap: 1.6rem;
    align-items: center;
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--radius-xl) + 0.2rem);
    background:
        radial-gradient(circle at 84% 20%, rgba(227, 24, 55, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
}

.about-founder__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 18rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.6rem;
    background: rgba(10, 10, 12, 0.5);
}

.about-founder__brand img {
    max-width: min(100%, 22rem);
    max-height: 12rem;
    object-fit: contain;
}

.about-founder__meta strong {
    display: block;
    margin-bottom: 0.7rem;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .about-hero__grid,
    .about-story__grid,
    .about-founder__grid {
        grid-template-columns: 1fr;
    }

    .about-hero__grid {
        align-items: start;
    }

    .about-hero__copy {
        max-width: 44rem;
    }

    .about-hero__title {
        max-width: 14ch;
    }

    .about-hero__title-line {
        white-space: normal;
    }

    .about-timeline__grid,
    .about-support {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .about-hero__grid {
        min-height: auto;
        padding-top: 8.4rem;
        padding-bottom: 4.5rem;
    }

    .about-hero__title {
        font-size: clamp(2.8rem, 8vw, 4.8rem);
    }

    .about-hero__lead {
        font-size: 1.06rem;
    }

    .about-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .about-hero__grid {
        gap: 1.8rem;
        padding-top: 7.9rem;
        padding-bottom: 4rem;
    }

    .about-hero__label {
        font-size: 0.68rem;
    }

    .about-hero__title {
        font-size: clamp(2.35rem, 12vw, 4.2rem);
    }

    .about-hero__lead {
        margin-top: 1.2rem;
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-pillars,
    .about-timeline__grid,
    .about-support {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-timeline__grid,
    .about-support {
        grid-template-columns: 1fr;
    }

    .about-story__content h2,
    .about-timeline__heading h2,
    .about-founder__copy h2,
    .about-overview__card h1,
    .about-overview__card h2 {
        max-width: none;
    }

    .about-founder__brand {
        min-height: 14rem;
    }
}

@media (max-width: 520px) {
    .about-pillar,
    .about-timeline__card,
    .about-support__card,
    .about-founder__card {
        border-radius: 1.45rem;
    }

    .about-founder__card {
        padding: 1.3rem;
    }

    .about-founder__brand {
        padding: 1rem;
    }
}

.page-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.6fr);
    gap: 2rem;
    align-items: end;
    min-height: 36rem;
    padding: 9rem 0 4rem;
}

.page-hero__copy p {
    max-width: 36rem;
    margin: 1.4rem 0 0;
    color: var(--text-soft);
    line-height: 1.86;
}

.page-hero__copy,
.page-hero__stats {
    will-change: transform;
}

.page-hero__copy h1 {
    font-size: clamp(2.8rem, 8vw, 6.5rem);
}

.page-hero__stats {
    display: grid;
    gap: 18px;
}

.stat-card {
    padding: 1.35rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.6rem;
    background: rgba(10, 10, 11, 0.68);
    backdrop-filter: blur(10px);
}

.stat-card strong {
    display: block;
    margin-bottom: 0.45rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.stat-card span {
    color: var(--text-soft);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.story-card {
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: 1.8rem;
    background: rgba(255, 255, 255, 0.04);
}

.story-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.85;
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 2rem 2.1rem;
    border: 1px solid var(--line);
    border-radius: 2.3rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.cta-banner h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.cta-banner .section-heading__meta {
    margin-bottom: 0.8rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
}

.detail-sidebar .contact-panel {
    position: sticky;
    top: 116px;
}

.detail-body {
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.04);
}

.rich-text,
.rich-text p,
.rich-text li,
.rich-text strong {
    color: var(--text-soft);
}

.rich-text p,
.rich-text ul,
.rich-text ol {
    margin: 0 0 1rem;
    line-height: 1.9;
}

.rich-text strong,
.rich-text h2,
.rich-text h3 {
    color: #fff;
}

.rich-text ul,
.rich-text ol {
    padding-left: 1.2rem;
}

.crumb {
    color: var(--brand-red);
}

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

    [data-reveal],
    .hero__media img,
    .page-hero__media img,
    .hero__device-stage,
    .hero-device,
    .feature-card__image,
    .service-card__visual,
    .split-feature__frame img,
    .media-band__card img,
    .customer-logo-track,
    .feature-card__body,
    .service-card__body,
    .split-feature__badge,
    .hero__eyebrow,
    .hero__title,
    .hero__lead,
    .hero__actions {
        transition: none !important;
        transform: none !important;
        filter: none !important;
        clip-path: none !important;
    }
}

@media (max-width: 1200px) {
    .hero__poster {
        width: 100%;
    }

    .hero__content--detnov {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "copy"
            "art"
            "aside";
        gap: 2.5rem;
    }

    .hero__copy {
        max-width: 42rem;
    }

    .hero__aside {
        max-width: 42rem;
    }

    .hero__art {
        width: min(100%, 54rem);
        justify-self: center;
    }

    .hero__brand-badge {
        margin-left: 0;
    }

    .hero__device-stage {
        min-height: clamp(24rem, 58vw, 34rem);
    }

    .operations-grid--cinematic,
    .story-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .site-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas: none;
        gap: 2.6rem;
    }

    .capability-showcase,
    .page-hero__grid,
    .detail-layout,
    .contact-section__grid {
        grid-template-columns: 1fr;
    }

    .detail-body,
    .detail-sidebar .contact-panel {
        position: static;
    }
}

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

    .hero__content--detnov {
        min-height: auto;
        padding-top: 7.5rem;
        padding-bottom: 5.5rem;
    }

    .hero__brand-badge {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .hero__brand-meta {
        letter-spacing: 0.08em;
    }

    .hero__device-stage {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        align-items: end;
        gap: 0.75rem;
        padding: 1.35rem;
    }

    .hero__device-stage::before {
        inset: auto 10% 12% 10%;
        height: 32%;
    }

    .hero-device {
        position: static;
        width: auto !important;
        transform: none !important;
        filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.34));
    }

    .hero-device--panel {
        grid-column: span 3;
    }

    .hero-device--laptop {
        grid-column: span 4;
    }

    .hero-device--phone,
    .hero-device:nth-child(4),
    .hero-device:nth-child(5),
    .hero-device:nth-child(6),
    .hero-device:nth-child(7),
    .hero-device:nth-child(8) {
        grid-column: span 2;
    }

    .site-header__inner {
        min-height: 84px;
    }

    .menu-toggle {
        display: inline-block;
        position: relative;
        z-index: 62;
    }

    .site-header__nav {
        position: fixed;
        inset: 0;
        z-index: 60;
        display: grid;
        width: 100vw;
        min-height: 100vh;
        align-content: center;
        justify-items: center;
        gap: 28px;
        padding: 120px 24px 40px;
        background: #070708;
        backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 180ms ease, visibility 180ms ease;
    }

    .site-header__nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-nav {
        display: grid;
        justify-items: center;
        gap: 20px;
    }

    .site-nav a {
        font-family: "Space Grotesk", sans-serif;
        font-size: 2rem;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
    }

    .operations-grid--cinematic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .media-band {
        grid-template-columns: 1fr;
    }

    .site-footer__top {
        gap: 2.2rem;
    }

    .capability-showcase {
        gap: 2rem;
    }

    .capability-shell {
        width: var(--shell);
    }

    .capability-showcase__media {
        margin-top: 0;
    }

    .capability-showcase__content {
        padding-top: 0;
    }

    .capability-credentials__card--association {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .capability-credentials__copy {
        text-align: center;
    }

    .page-hero__grid {
        min-height: 32rem;
    }

}

@media (max-width: 720px) {
    :root {
        --shell: min(100vw - 32px, 1240px);
    }

    .hero__content--poster {
        align-items: center;
        text-align: left;
        gap: 1.5rem;
        padding-top: 7.1rem;
        padding-bottom: 2rem;
    }

    .hero__poster {
        width: 100%;
    }

    .hero__poster img {
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center center;
        border-radius: 0;
    }

    .hero--poster .hero__scroll {
        display: none;
    }

    .hero--detnov {
        min-height: auto;
    }

    .brand__text small {
        font-size: 0.72rem;
    }

    .hero__content {
        align-items: flex-start;
        text-align: left;
        padding-block: 8.5rem 6rem;
    }

    .hero__title {
        max-width: none;
        font-size: clamp(2rem, 8vw, 4.4rem);
    }

    .hero--detnov .hero__title {
        font-size: clamp(2.2rem, 11vw, 4.2rem);
    }

    .hero__lead {
        margin-inline: 0;
    }

    .hero--detnov .hero__lead {
        margin-top: 1.4rem;
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero__detnov-subline {
        max-width: 14ch;
        font-size: clamp(1.28rem, 5vw, 1.9rem);
    }

    .hero__actions,
    .hero__signals {
        justify-content: flex-start;
    }

    .hero__signals span {
        width: 100%;
        justify-content: flex-start;
    }

    .hero__scroll {
        left: 24px;
        transform: none;
        justify-items: start;
    }

    .hero__content--detnov {
        gap: 2rem;
        padding-top: 7.8rem;
        padding-bottom: 5rem;
    }

    .hero__brand-badge {
        width: 100%;
        margin: 0;
    }

    .hero__brand-name {
        font-size: 1.6rem;
    }

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

    .hero__device-stage {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.85rem;
        padding: 1rem;
        border-radius: 2rem;
    }

    .hero-device--panel {
        grid-column: 1 / span 2;
    }

    .hero-device--laptop {
        grid-column: 1 / -1;
    }

    .hero-device--phone {
        grid-column: 3 / span 2;
    }

    .hero-device:nth-child(4),
    .hero-device:nth-child(5),
    .hero-device:nth-child(6),
    .hero-device:nth-child(7),
    .hero-device:nth-child(8) {
        grid-column: span 2;
    }

    .hero__art-note {
        font-size: 1rem;
    }

    .capability-showcase__title {
        max-width: none;
        font-size: clamp(2rem, 9vw, 3.4rem);
    }

    .section-heading__title--two-line span {
        white-space: normal;
    }

    .capability-credentials {
        padding: 1rem;
    }

    .feature-grid,
    .service-grid,
    .story-grid,
    .operations-grid--cinematic,
    .split-feature__highlights,
    .stat-band__grid,
    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .site-footer__top {
        grid-template-areas: none;
    }

    .site-footer__highlights {
        grid-template-columns: 1fr;
    }

    .customer-logo-card {
        flex-basis: min(82vw, 18rem);
    }

    .feature-card,
    .service-card {
        min-height: 22rem;
    }

    .scroller-band {
        padding-block: 0.75rem;
    }

    .scroller-band__track {
        gap: 1.25rem;
    }

    .split-feature__frame {
        aspect-ratio: 4 / 5;
    }

    .cta-banner,
    .site-footer__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__meta p {
        margin-left: 0;
        text-align: left;
    }

    .page-hero {
        min-height: 30rem;
    }

    .page-hero__grid {
        min-height: 30rem;
        padding-top: 8rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 520px) {
    .site-header__inner {
        gap: 14px;
    }

    .hero__content--poster {
        padding-top: 7rem;
        padding-bottom: 2rem;
    }

    .hero__poster img {
        border-radius: 0;
    }

    .hero__content--detnov {
        padding-top: 7.2rem;
    }

    .hero__brand-badge {
        gap: 0.65rem;
        padding: 0.8rem 0.9rem;
    }

    .hero__brand-meta {
        width: 100%;
        font-size: 0.75rem;
        letter-spacing: 0.06em;
    }

    .brand {
        gap: 10px;
        max-width: calc(100% - 62px);
    }

    .brand__lockup {
        gap: 8px;
    }

    .brand__icon {
        width: 38px;
        height: 38px;
    }

    .brand__icon--partner {
        width: 5.7rem;
        height: 3.56rem;
    }

    .brand__text strong {
        font-size: 0.9rem;
    }

    .brand__text small {
        font-size: 0.7rem;
    }

    .button {
        width: 100%;
        padding-inline: 1.3rem;
        letter-spacing: 0.22em;
    }

    .hero__actions {
        width: 100%;
    }

    .detail-body,
    .operation-card,
    .story-card,
    .contact-panel__item,
    .service-card,
    .feature-card,
    .media-band__card,
    .cta-banner {
        border-radius: 1.6rem;
    }

    .media-band__card {
        padding: 1.4rem;
    }

    .media-band__card--certificates h3 {
        max-width: none;
        font-size: 1.7rem;
    }

    .media-band__visual-stage--accreditation {
        padding: 0.22rem 0.3rem;
    }

    .customer-logo-card {
        border-radius: 1.6rem;
    }

    .site-footer__newsletter-row {
        grid-template-columns: 1fr;
    }

    .site-whatsapp-float {
        width: 3.35rem;
        height: 3.35rem;
    }
}

@media (max-width: 1199px) {
    .hero__content--poster {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "visual"
            "facts"
            "consult";
        align-items: start;
        gap: 2rem;
        padding-top: 7.4rem;
        padding-bottom: 2.2rem;
    }

    .hero__poster {
        justify-self: center;
        margin-top: -0.75rem;
    }

    .hero__poster-frame {
        width: 100%;
        max-width: 52rem;
    }

    .hero__poster img {
        width: 100%;
        height: auto;
        max-height: none;
        margin-bottom: -5%;
        transform: translateY(-5%) scale(1.04);
    }

    .hero__poster-copy {
        max-width: 48rem;
    }

    .hero__poster-title {
        font-size: clamp(2.5rem, 5vw, 3.9rem);
    }

    .hero__poster-subtitle {
        font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    }

    .hero__content--poster::before {
        display: none;
    }

    .hero__poster::before {
        display: block;
        right: 0;
        background-position: center center;
        background-size: min(100%, 650px) auto;
    }

    .hero__poster-consult {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero__poster-consult-main {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) {
    .hero__poster-frame {
        max-width: 46rem;
    }
}

@media (max-width: 767px) {
    .hero__content--poster {
        gap: 1.75rem;
        padding-top: 7rem;
        padding-bottom: 2rem;
    }

    .hero__poster-kicker {
        font-size: 0.9rem;
    }

    .hero__poster-title {
        font-size: clamp(2rem, 7vw, 2.75rem);
        line-height: 0.98;
    }

    .hero__poster-title::after {
        width: 10rem;
        margin-top: 0.8rem;
    }

    .hero__poster-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.22rem);
        line-height: 1.18;
    }

    .hero__poster::before {
        display: block;
        right: 0;
        background-position: center center;
        background-size: min(100%, 480px) auto;
    }

    .hero__poster-lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero__poster-meta {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .hero__poster-europe,
    .hero__poster-cta {
        width: 100%;
        justify-content: center;
    }

    .hero__poster img {
        width: 100%;
        height: auto;
        margin-bottom: -8%;
        transform: translateY(-8%) scale(1.08);
    }

    .hero__poster-utility {
        gap: 1rem;
    }

    .hero__poster-icon--utility {
        width: 1.8rem;
        height: 1.8rem;
    }

    .hero__poster-utility p {
        font-size: 0.85rem;
    }

    .hero__poster-facts {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

    .hero__poster-fact {
        padding: 1.25rem 0;
        border-right: none !important;
    }

    .hero__poster-fact:not(:last-child) {
        border-bottom: 1px solid rgba(227, 24, 55, 0.22);
    }

    .hero__poster-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 0;
        width: 100%;
    }

    .hero__poster-badge {
        border-left: none !important;
        padding: 0 1rem;
    }

    .hero__poster-badge:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.18);
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroller-band {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .scroller-band__track {
        animation: none !important;
    }

    .customer-logo-marquee {
        overflow-x: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .customer-logo-track {
        animation: none !important;
    }
}
