/* ==========================================================================
   Section layouts — each structurally unique
   ========================================================================== */

/* ---- ABOUT: editorial split + photography ---- */
.section-about {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-handoff);
    background: var(--bg);
    --reveal-curtain: var(--bg);
}

@media (min-width: 768px) {
    .section-about {
        padding-top: var(--space-3xl);
    }
}

@media (max-width: 767px) {
    .section-about {
        padding-top: var(--section-py-mobile);
        padding-bottom: var(--space-handoff);
    }
}

.section-about + .section-services {
    padding-top: var(--space-handoff);
}

.about-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: start;
}

@media (min-width: 1024px) {
    .about-split {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
        align-items: start;
    }
}

.about-split__copy {
    max-width: 36rem;
}

.about-accent-line {
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), rgba(255, 106, 19, 0.2));
    margin-bottom: var(--space-sm);
    border-radius: 2px;
    opacity: 0.4;
}

.about-split__label {
    font-family: var(--font-nav);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: var(--space-sm);
}

.about-split__headline {
    font-family: var(--font-heading);
    font-size: clamp(2.125rem, 3.2vw + 0.75rem, 3.5rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: var(--space-md);
    max-width: 18em;
    text-wrap: balance;
}

.about-split__lede {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 32rem;
    margin-bottom: var(--space-md);
}

.about-highlights {
    list-style: none;
    margin: 0 0 var(--space-md);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

@media (min-width: 640px) {
    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm) var(--space-md);
    }
}

.about-highlight {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: var(--space-xs);
    border-radius: 12px;
    transition: background 0.25s ease;
}

.about-highlight:hover {
    background: rgba(8, 27, 58, 0.03);
}

.about-highlight__icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    color: var(--orange);
    background: rgba(255, 106, 19, 0.08);
    border-radius: 8px;
}

.about-highlight__icon svg {
    width: 1rem;
    height: 1rem;
    display: block;
}

.about-highlight__title {
    display: block;
    font-family: var(--font-nav);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.about-highlight__desc {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--gray);
}

.about-split__cta {
    margin-top: var(--space-xs);
}

.about-split__media {
    width: 100%;
}

@media (min-width: 1024px) {
    .about-split__media {
        position: sticky;
        top: calc(var(--header-h) + var(--header-float-y) + var(--space-sm));
    }
}

.about-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .about-visual {
        max-width: none;
        margin: 0;
    }
}

.about-visual__main {
    position: relative;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(8, 27, 58, 0.08);
    box-shadow:
        0 20px 50px rgba(8, 27, 58, 0.1),
        0 0 0 1px rgba(255, 106, 19, 0.12);
}

.about-visual__main .photo-crop,
.about-visual__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-visual__main:hover .photo-crop,
.about-visual__main:hover img {
    transform: scale(1.03);
}

.about-visual__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(8, 27, 58, 0.72) 0%, rgba(8, 27, 58, 0.2) 55%, transparent 100%);
    pointer-events: none;
}

.about-visual__tag {
    padding: 0.35rem 0.75rem;
    font-family: var(--font-nav);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--orange);
    border-radius: 999px;
}

.about-visual__tag--navy {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.about-visual__inset {
    position: absolute;
    top: var(--space-md);
    left: calc(-1 * var(--space-sm));
    width: 38%;
    max-width: 180px;
    margin: 0;
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid var(--bg);
    box-shadow: 0 12px 32px rgba(8, 27, 58, 0.18);
    z-index: 2;
}

@media (min-width: 1024px) {
    .about-visual__inset {
        left: calc(-1 * var(--space-md));
        max-width: 200px;
    }
}

.about-visual__inset .photo-crop,
.about-visual__inset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-chips {
    position: absolute;
    top: 50%;
    right: calc(-1 * var(--space-xs));
    transform: translateY(-50%);
    z-index: 3;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

@media (max-width: 1023px) {
    .about-chips {
        right: var(--space-xs);
        top: auto;
        bottom: var(--space-md);
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
}

.about-chip {
    padding: 0.45rem 0.8rem;
    font-family: var(--font-nav);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--orange);
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(255, 106, 19, 0.3);
    white-space: nowrap;
}

.about-chip--dark {
    background: var(--navy);
    box-shadow: 0 4px 16px rgba(8, 27, 58, 0.2);
}

@media (prefers-reduced-motion: reduce) {
    .about-visual__main .photo-crop,
    .about-visual__main img {
        transition: none;
    }

    .about-accent-line {
        width: 3rem;
        opacity: 1;
    }
}

/* ---- SERVICES: Elevated enterprise cards ---- */
.section-services {
    position: relative;
    background: #081B3A;
    color: var(--white);
    overflow: hidden;
}

.services-shell {
    position: relative;
    z-index: 1;
}

.services-intro {
    max-width: 42rem;
    margin-bottom: var(--space-xl);
}

.services-intro__label {
    font-family: var(--font-nav);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: var(--space-sm);
}

.services-intro__title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 3.5vw + 0.5rem, 3.25rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.032em;
    color: var(--white);
    margin-bottom: var(--space-md);
    text-wrap: balance;
    max-width: 16em;
}

.services-intro__lede {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    max-width: 34rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    grid-auto-flow: row dense;
    align-items: start;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .svc-card--featured {
        grid-column: span 2;
    }
}

@media (min-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }

    .svc-card--featured {
        grid-column: span 2;
    }
}

.svc-card {
    display: flex;
    flex-direction: column;
    align-self: start;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow:
        0 4px 6px rgba(8, 27, 58, 0.04),
        0 16px 40px rgba(8, 27, 58, 0.14);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-card:hover,
.svc-card:focus-within {
    transform: translateY(-4px);
    box-shadow:
        0 8px 12px rgba(8, 27, 58, 0.06),
        0 24px 56px rgba(8, 27, 58, 0.2);
}

.svc-card--featured {
    box-shadow:
        0 8px 16px rgba(8, 27, 58, 0.08),
        0 28px 64px rgba(8, 27, 58, 0.22);
}

.svc-card--featured:hover,
.svc-card--featured:focus-within {
    box-shadow:
        0 12px 24px rgba(8, 27, 58, 0.1),
        0 36px 80px rgba(8, 27, 58, 0.28);
}

.svc-card--dark {
    background: #0F1E39;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.svc-card--dark:hover,
.svc-card--dark:focus-within {
    border-color: #FF6A13;
    box-shadow: 0 30px 70px rgba(255, 106, 19, 0.18);
}

.svc-card--dark .svc-card__media {
    border-radius: 28px 28px 0 0;
}

.svc-card__media {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: #0a1628;
}

.svc-card__media img,
.svc-card__media .photo-crop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-card:hover .svc-card__media img,
.svc-card:hover .svc-card__media .photo-crop,
.svc-card:focus-within .svc-card__media img,
.svc-card:focus-within .svc-card__media .photo-crop {
    transform: scale(1.03);
}

.svc-card__media-edge {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 56px;
    background: linear-gradient(to top, rgba(8, 27, 58, 0.45) 0%, rgba(8, 27, 58, 0.12) 50%, transparent 100%);
    pointer-events: none;
}

.svc-card__body {
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.75rem 2rem;
}

.svc-card--featured .svc-card__body {
    padding: 2rem 2rem 2.5rem;
}

.svc-card__title {
    font-family: var(--font-heading);
    font-size: 2.125rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #081B3A;
    margin: 0;
}

.svc-card--dark .svc-card__title {
    color: #FFFFFF;
}

.svc-card__desc {
    margin: 0.75rem 0 0;
    font-size: 1.0625rem;
    line-height: 1.65;
    font-weight: 400;
    color: #6B7280;
}

.svc-card--dark .svc-card__desc {
    color: rgba(255, 255, 255, 0.62);
}

.svc-card__caps {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.svc-card__caps li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.45;
    color: #374151;
}

.svc-card--dark .svc-card__caps li {
    color: rgba(255, 255, 255, 0.78);
}

.svc-card__caps li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
}

.svc-card__footer {
    margin-top: 1.25rem;
}

.svc-card__btn.btn-premium {
    display: inline-flex;
}

.svc-card__btn .btn-premium__inner {
    padding: 0.8125rem 1.5rem;
    font-size: 0.9375rem;
}

@media (prefers-reduced-motion: reduce) {
    .svc-card:hover,
    .svc-card:focus-within {
        transform: none;
    }

    .svc-card__media img,
    .svc-card__media .photo-crop {
        transition: none;
    }
}


/* ---- WHY: Premium comparison experience ---- */
.section-why--viewport {
    position: relative;
    background: #FAFBFD;
    color: var(--navy);
    --reveal-curtain: #FAFBFD;
    height: 100vh;
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.why-experience-shell {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(1.25rem, 2.5vh, 2rem) clamp(1.5rem, 4vw, 3rem);
    box-sizing: border-box;
}

.why-experience {
    display: grid;
    grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
}

.why-experience__label {
    font-family: var(--font-nav);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(8, 27, 58, 0.48);
    margin: 0 0 1.25rem;
}

.why-experience__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 5.5vw, 6rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.038em;
    color: var(--navy);
    margin: 0 0 1.5rem;
    text-wrap: balance;
    max-width: 9.5em;
}

.why-experience__lede {
    font-size: clamp(1.375rem, 1.5vw, 1.5rem);
    line-height: 1.55;
    letter-spacing: -0.012em;
    color: rgba(8, 27, 58, 0.64);
    margin: 0 0 2rem;
    max-width: 22rem;
}

.why-experience__cta {
    margin-top: 0.25rem;
}

.why-experience__btn .btn-premium__inner {
    padding: 0.875rem 1.625rem;
    font-size: 1rem;
}

.why-experience__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.875rem, 1.5vw, 1.125rem);
    min-width: 0;
}

.why-card {
    position: relative;
    border-radius: 18px;
    border: 1px solid rgba(8, 27, 58, 0.07);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 1px 2px rgba(8, 27, 58, 0.04),
        0 12px 40px rgba(8, 27, 58, 0.06);
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px);
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
}

.why-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.45s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
}

.why-card:hover {
    box-shadow:
        0 2px 4px rgba(8, 27, 58, 0.05),
        0 20px 48px rgba(8, 27, 58, 0.1);
    transform: translateY(-4px);
}

.why-card.is-visible:hover {
    transform: translateY(-4px);
}

.why-card__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 85% 50%, rgba(255, 106, 19, 0.1) 0%, transparent 65%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.why-card.is-visible .why-card__glow {
    opacity: 1;
}

.why-card:hover .why-card__glow {
    opacity: 1;
    background: radial-gradient(ellipse 85% 75% at 85% 50%, rgba(255, 106, 19, 0.14) 0%, transparent 68%);
}

.why-card__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 3px 1fr;
    gap: clamp(0.875rem, 1.2vw, 1.125rem);
    align-items: stretch;
    padding: clamp(1.125rem, 2vh, 1.375rem) clamp(1rem, 1.5vw, 1.25rem);
    min-height: 7.5rem;
}

.why-card__side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    min-width: 0;
}

.why-card__side-label {
    font-family: var(--font-nav);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(8, 27, 58, 0.38);
}

.why-card__side-label--accent {
    color: var(--orange);
}

.why-card__text {
    font-family: var(--font-heading);
    font-size: clamp(1.0625rem, 1.1vw, 1.25rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.018em;
    margin: 0;
}

.why-card__text--muted {
    font-weight: 500;
    color: rgba(8, 27, 58, 0.38);
    text-decoration: line-through;
    text-decoration-color: rgba(8, 27, 58, 0.12);
}

.why-card__text--accent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--navy);
}

.why-card__side--traditional {
    opacity: 0;
    transform: translateX(-18px);
}

.why-card__side--jupiter {
    opacity: 0;
    transform: translateX(18px);
}

.why-card.is-visible .why-card__side--traditional,
.why-card.is-visible .why-card__side--jupiter {
    opacity: 1;
    transform: translateX(0);
}

.why-card__divider {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 3px;
}

.why-card__highlight {
    display: block;
    width: 100%;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--orange) 0%, rgba(255, 106, 19, 0.45) 100%);
    transform: scaleY(0);
    transform-origin: top center;
    box-shadow: 0 0 12px rgba(255, 106, 19, 0.35);
}

.why-card.is-visible .why-card__highlight {
    transform: scaleY(1);
}

.why-card__check {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.625rem;
    height: 1.625rem;
    margin-top: 0.0625rem;
    border-radius: 50%;
    background: rgba(255, 106, 19, 0.12);
    color: var(--orange);
    opacity: 0;
    transform: scale(0.4);
}

.why-card.is-visible .why-card__check {
    opacity: 1;
    transform: scale(1);
}

[data-why-animate] {
    opacity: 0;
}

@media (max-width: 1100px) {
    .why-experience {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-experience__heading {
        max-width: none;
        font-size: clamp(2.5rem, 8vw, 4.5rem);
    }

    .why-experience__lede {
        max-width: 36rem;
        font-size: clamp(1.25rem, 2.5vw, 1.375rem);
    }
}

@media (max-width: 680px) {
    .section-why--viewport {
        height: auto;
        min-height: auto;
        max-height: none;
        padding-top: var(--section-py-mobile) !important;
        padding-bottom: var(--section-py-mobile) !important;
        overflow: visible;
        display: block;
    }

    .why-experience__cards {
        grid-template-columns: 1fr;
    }

    .why-experience__heading {
        font-size: clamp(2.25rem, 10vw, 3.25rem);
    }

    .why-experience__lede {
        font-size: 1.25rem;
    }

    .why-card__inner {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-card,
    .why-card__side--traditional,
    .why-card__side--jupiter,
    .why-card__highlight,
    .why-card__check,
    .why-card__glow,
    [data-why-animate] {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .why-card__highlight {
        transform: scaleY(1);
    }
}

/* ---- PROCESS: Horizontal journey ---- */
.section-process--viewport {
    position: relative;
    background: #060E1A;
    color: var(--white);
    overflow: hidden;
    --reveal-curtain: #060E1A;
    height: 100vh;
    height: 100svh;
    min-height: 100svh;
    max-height: 100svh;
    padding: 0 !important;
    box-sizing: border-box;
}

.process-journey-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.process-journey-bg__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 95% 80% at 50% 42%, black 15%, transparent 72%);
}

.process-journey-bg__glow {
    position: absolute;
    top: 18%;
    left: 50%;
    width: 70%;
    height: 45%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(255, 106, 19, 0.06) 0%, transparent 68%);
}

.process-journey-shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 100%;
    padding-top: var(--header-h-scrolled, 72px);
    padding-bottom: clamp(1.5rem, 3vh, 2.5rem);
    padding-left: clamp(1.25rem, 4vw, 2.5rem);
    padding-right: clamp(1.25rem, 4vw, 2.5rem);
    box-sizing: border-box;
}

.process-journey__header {
    flex-shrink: 0;
    text-align: center;
    padding-top: clamp(0.5rem, 2vh, 1.25rem);
    margin-bottom: clamp(1.75rem, 4vh, 3rem);
}

.process-journey__label {
    font-family: var(--font-nav);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 106, 19, 0.88);
    margin: 0 0 0.625rem;
}

.process-journey__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 2.8vw + 0.5rem, 2.75rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.032em;
    color: #FFFFFF;
    margin: 0;
    text-wrap: balance;
}

.process-journey__stage {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 0;
}

.process-journey__track {
    position: relative;
    width: 100%;
}

.process-journey__line {
    position: absolute;
    top: 26px;
    left: calc(100% / 12);
    right: calc(100% / 12);
    height: 2px;
    z-index: 0;
    pointer-events: none;
}

.process-journey__line-track {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 1px;
}

.process-journey__line-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    background: linear-gradient(90deg, var(--orange) 0%, rgba(255, 106, 19, 0.55) 100%);
    border-radius: 1px;
    box-shadow: 0 0 12px rgba(255, 106, 19, 0.35);
}

.process-journey__steps {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(0.375rem, 1vw, 0.75rem);
}

.process-journey__step {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-journey__node {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 0 clamp(0.875rem, 1.5vh, 1.125rem);
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition:
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.process-journey__node:hover,
.process-journey__node:focus-visible {
    outline: none;
    border-color: rgba(255, 106, 19, 0.45);
}

.process-journey__node.is-active {
    transform: scale(1.14);
    border-color: var(--orange);
    background: rgba(255, 106, 19, 0.1);
    box-shadow:
        0 0 0 4px rgba(255, 106, 19, 0.12),
        0 0 28px rgba(255, 106, 19, 0.42);
}

.process-journey__node-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: border-color 0.25s ease, opacity 0.25s ease;
    opacity: 0;
}

.process-journey__node.is-active .process-journey__node-ring {
    opacity: 1;
    border-color: rgba(255, 106, 19, 0.25);
}

.process-journey__number {
    font-family: var(--font-nav);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.25s ease;
}

.process-journey__node.is-active .process-journey__number {
    color: var(--orange);
}

.process-journey__title {
    font-family: var(--font-heading);
    font-size: clamp(0.9375rem, 0.75vw + 0.55rem, 1.125rem);
    font-weight: 600;
    letter-spacing: -0.012em;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 0.5rem;
    transition: color 0.25s ease;
}

.process-journey__step.is-active .process-journey__title {
    color: #FFFFFF;
}

.process-journey__desc {
    font-size: clamp(0.8125rem, 0.45vw + 0.6rem, 0.9375rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.32);
    margin: 0;
    max-width: 13rem;
    transition: color 0.28s ease, opacity 0.28s ease, transform 0.28s ease;
}

.process-journey__step.is-active .process-journey__desc {
    color: rgba(255, 255, 255, 0.62);
}

.process-journey__chips {
    list-style: none;
    margin: clamp(0.75rem, 1.2vh, 1rem) 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.375rem;
    max-width: 14rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        visibility 0.28s ease;
}

.process-journey__step.is-active .process-journey__chips {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.process-journey__chip {
    font-family: var(--font-nav);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.72);
    padding: 0.375rem 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
}

.process-journey__step.is-active .process-journey__chip {
    border-color: rgba(255, 106, 19, 0.22);
    background: rgba(255, 106, 19, 0.08);
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1023px) {
    .section-process--viewport {
        height: auto;
        min-height: auto;
        max-height: none;
        padding-top: var(--section-py-mobile) !important;
        padding-bottom: var(--section-py-mobile) !important;
    }

    .process-journey-shell {
        height: auto;
        padding-top: 0;
    }

    .process-journey__stage {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 calc(-1 * clamp(1.25rem, 4vw, 2.5rem));
        padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    }

    .process-journey__stage::-webkit-scrollbar {
        display: none;
    }

    .process-journey__track {
        min-width: 720px;
    }

    .process-journey__line {
        top: 22px;
    }

    .process-journey__node {
        width: 44px;
        height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .process-journey__line-fill,
    .process-journey__node,
    .process-journey__desc,
    .process-journey__chips,
    .process-journey__title {
        transition: none;
    }
}
/* ---- INDUSTRIES: Editorial showcase ---- */
.section-industries--viewport {
    position: relative;
    background: #FAFBFD;
    color: var(--navy);
    overflow: hidden;
    --reveal-curtain: #FAFBFD;
    --showcase-accent: #FF6A13;
    --showcase-glow: rgba(255, 106, 19, 0.08);
    transition: background-color 0.6s ease;
}

.industries-showcase-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.industries-showcase-bg__wash {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 85% 20%, var(--showcase-glow) 0%, transparent 70%),
        radial-gradient(ellipse 35% 30% at 8% 90%, rgba(8, 27, 58, 0.025) 0%, transparent 60%);
    transition: opacity 0.6s ease;
}

.industry-showcase-shell {
    position: relative;
    z-index: 1;
}

.industry-showcase {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

/* Left — navigation */
.industry-showcase__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0.25rem;
}

@media (min-width: 1024px) {
    .industry-showcase__nav {
        position: sticky;
        top: calc(var(--header-h-scrolled, 72px) + 1.5rem);
    }
}

.industry-showcase__label {
    font-family: var(--font-nav);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 0.75rem;
}

.industry-showcase__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 2.2vw + 0.5rem, 2.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.032em;
    color: var(--navy);
    margin: 0;
    text-wrap: balance;
    max-width: 11em;
}

.industry-showcase__list-wrap {
    position: relative;
    display: flex;
    gap: 1rem;
    margin-top: clamp(1.75rem, 3vw, 2.25rem);
    align-items: flex-start;
}

.industry-showcase__progress {
    position: relative;
    flex-shrink: 0;
    width: 2px;
    align-self: stretch;
}

.industry-showcase__progress-track {
    position: absolute;
    inset: 0;
    background: rgba(8, 27, 58, 0.06);
    border-radius: 1px;
}

.industry-showcase__progress-marker {
    position: absolute;
    top: 0;
    left: -1px;
    width: 4px;
    height: 1.75rem;
    border-radius: 2px;
    background: var(--showcase-accent);
    transform: translateY(0);
    will-change: transform;
}

.industry-showcase__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.industry-showcase__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.4375rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.industry-showcase__item:not(.is-active) {
    opacity: 0.45;
}

.industry-showcase__item:hover,
.industry-showcase__item:focus-visible {
    opacity: 1;
    outline: none;
}

.industry-showcase__item-indicator {
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: transparent;
    transition: background 0.3s ease, transform 0.3s ease;
}

.industry-showcase__item.is-active .industry-showcase__item-indicator {
    background: var(--showcase-accent);
    transform: scale(1.25);
}

.industry-showcase__item-name {
    font-family: var(--font-heading);
    font-size: clamp(0.9375rem, 1vw + 0.25rem, 1.0625rem);
    font-weight: 500;
    letter-spacing: -0.012em;
    line-height: 1.25;
    color: var(--navy);
    transition: font-weight 0.2s ease;
}

.industry-showcase__item.is-active .industry-showcase__item-name {
    font-weight: 600;
}

/* Right — stage */
.industry-showcase__stage {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2vw, 1.75rem);
    min-width: 0;
}

.industry-showcase__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #0a1628;
    box-shadow:
        0 1px 2px rgba(8, 27, 58, 0.06),
        0 12px 32px rgba(8, 27, 58, 0.1);
}

.industry-showcase__photo {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    margin: 0;
}

.industry-showcase__photo.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.industry-showcase__photo img,
.industry-showcase__photo .photo-crop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.industry-showcase__photo-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 27, 58, 0.42) 0%, transparent 50%);
    pointer-events: none;
}

.industry-showcase__content {
    position: relative;
    min-height: 380px;
}

.industry-showcase__panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 1.5vw, 1.25rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.industry-showcase__panel.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.industry-showcase__intro {
    max-width: 42rem;
}

.industry-showcase__title {
    font-family: var(--font-heading);
    font-size: clamp(1.375rem, 1.5vw + 0.5rem, 1.75rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.028em;
    color: var(--navy);
    margin: 0 0 0.5rem;
}

.industry-showcase__desc {
    font-size: clamp(0.9375rem, 0.5vw + 0.75rem, 1.0625rem);
    line-height: 1.65;
    color: rgba(8, 27, 58, 0.72);
    margin: 0;
}

.industry-showcase__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.875rem;
    align-items: stretch;
}

.industry-showcase__card {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.125rem;
    background: #FFFFFF;
    border: 1px solid rgba(8, 27, 58, 0.08);
    border-radius: 10px;
}

.industry-showcase__card--solution {
    border-color: rgba(255, 106, 19, 0.18);
    background: #FFFFFF;
}

.industry-showcase__kicker {
    font-family: var(--font-nav);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(8, 27, 58, 0.45);
    margin: 0 0 0.5rem;
}

.industry-showcase__card--solution .industry-showcase__kicker {
    color: var(--showcase-accent);
}

.industry-showcase__card p {
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(8, 27, 58, 0.78);
    margin: 0;
}

.industry-showcase__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.industry-showcase__metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.875rem 1rem;
    background: #FFFFFF;
    border: 1px solid rgba(8, 27, 58, 0.08);
    border-radius: 10px;
    text-align: left;
}

.industry-showcase__metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.2vw + 0.5rem, 1.625rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--showcase-accent);
    margin-bottom: 0.25rem;
    transition: color 0.45s ease;
}

.industry-showcase__metric-label {
    display: block;
    font-family: var(--font-nav);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.35;
    color: rgba(8, 27, 58, 0.52);
    text-transform: uppercase;
}

.industry-showcase__cta {
    padding-top: 0.25rem;
}

.industry-showcase__btn .btn-premium__inner {
    padding: 0.6875rem 1.25rem;
    font-size: 0.875rem;
}

@media (max-width: 1023px) {
    .industry-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .industry-showcase__nav {
        position: static;
    }

    .industry-showcase__heading {
        max-width: none;
    }

    .industry-showcase__list-wrap {
        margin-top: 1.5rem;
    }

    .industry-showcase__list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.375rem 1rem;
    }

    .industry-showcase__progress {
        display: none;
    }

    .industry-showcase__item {
        width: auto;
        padding: 0.375rem 0;
    }

    .industry-showcase__item-indicator {
        display: none;
    }

    .industry-showcase__content {
        min-height: 320px;
    }

    .industry-showcase__panel {
        position: relative;
        display: none;
    }

    .industry-showcase__panel.is-active {
        display: flex;
    }

    .industry-showcase__cards {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .industry-showcase__progress-marker,
    .industries-showcase-bg__wash {
        transition: none;
    }
}
/* ---- TECH: Engineering ecosystem ---- */
.section-tech {
    position: relative;
    background: linear-gradient(165deg, #081B3A 0%, #0A1F3D 45%, #0D2444 100%);
    color: var(--white);
    overflow: hidden;
    --reveal-curtain: #081B3A;
}

.tech-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.tech-bg__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: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 80% at 65% 50%, black 15%, transparent 72%);
}

.tech-bg__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.tech-bg__glow--core {
    top: 30%;
    right: 15%;
    width: 45%;
    height: 50%;
    background: radial-gradient(circle, rgba(255, 106, 19, 0.08) 0%, transparent 68%);
}

.tech-bg__glow--accent {
    bottom: -10%;
    left: -5%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(56, 120, 200, 0.06) 0%, transparent 70%);
}

.tech-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
}

@media (min-width: 1024px) {
    .tech-layout {
        grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
        gap: clamp(3rem, 5vw, 5rem);
    }
}

.tech-copy__label {
    font-family: var(--font-nav);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 106, 19, 0.9);
    margin-bottom: var(--space-sm);
}

.tech-copy__title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 3.5vw + 0.5rem, 3.25rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.032em;
    color: #FFFFFF;
    margin-bottom: var(--space-md);
    text-wrap: balance;
    max-width: 16em;
}

.tech-copy__lede {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
    max-width: 26rem;
    margin: 0;
}

.tech-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tech-showcase {
        gap: 1.75rem;
    }
}

/* Statistics row */
.tech-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .tech-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.tech-stat {
    padding: 1.125rem 1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.tech-stat__value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.375rem, 2vw, 1.625rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--orange);
    margin-bottom: 0.35rem;
}

.tech-stat__label {
    display: block;
    font-family: var(--font-nav);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.4;
}

/* Interactive visualization */
.tech-viz {
    position: relative;
    min-height: 520px;
    border-radius: 20px;
    background: rgba(8, 27, 58, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

@media (min-width: 768px) {
    .tech-viz {
        min-height: 580px;
    }
}

.tech-viz__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.tech-viz__lines line,
.tech-viz__lines path {
    stroke: url(#tech-line-gradient);
    stroke-width: 1;
    fill: none;
    opacity: 0.35;
    transition: opacity 0.4s ease;
}

.tech-viz__lines .is-active {
    opacity: 1;
    stroke: rgba(255, 106, 19, 0.55);
    filter: drop-shadow(0 0 4px rgba(255, 106, 19, 0.4));
}

/* Central hub */
.tech-hub {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: clamp(100px, 18vw, 130px);
    height: clamp(100px, 18vw, 130px);
    pointer-events: none;
}

.tech-hub__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 106, 19, 0.2);
}

.tech-hub__ring--outer {
    animation: tech-hub-pulse 4s ease-in-out infinite;
}

.tech-hub__ring--inner {
    inset: 12%;
    border-color: rgba(255, 106, 19, 0.35);
    box-shadow: 0 0 32px rgba(255, 106, 19, 0.15);
}

.tech-hub__core {
    position: absolute;
    inset: 22%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 106, 19, 0.18) 0%, rgba(8, 27, 58, 0.9) 100%);
    border: 1px solid rgba(255, 106, 19, 0.35);
    box-shadow:
        0 0 40px rgba(255, 106, 19, 0.2),
        inset 0 0 20px rgba(255, 106, 19, 0.08);
}

.tech-hub__label {
    font-family: var(--font-nav);
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 1.3;
    padding: 0 0.25rem;
}

@keyframes tech-hub-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.06); opacity: 1; }
}

/* Category orbit */
.tech-orbit {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.tech-orbit__group {
    position: absolute;
    left: var(--orbit-x);
    top: var(--orbit-y);
    transform: translate(-50%, -50%);
    width: max-content;
    max-width: min(220px, 42vw);
    z-index: 3;
}

.tech-orbit__group.is-active {
    z-index: 5;
}

.tech-category {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    width: 100%;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    text-align: left;
    transition:
        background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    -webkit-tap-highlight-color: transparent;
}

.tech-category:hover,
.tech-category:focus-visible {
    border-color: rgba(255, 106, 19, 0.4);
    background: rgba(255, 106, 19, 0.08);
    box-shadow: 0 4px 20px rgba(255, 106, 19, 0.12);
    outline: none;
}

.tech-orbit__group.is-active .tech-category {
    border-color: rgba(255, 106, 19, 0.55);
    background: rgba(255, 106, 19, 0.1);
    box-shadow:
        0 0 28px rgba(255, 106, 19, 0.18),
        inset 0 0 0 1px rgba(255, 106, 19, 0.08);
}

.tech-category__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 8px rgba(255, 106, 19, 0.6);
    margin-bottom: 0.15rem;
}

.tech-category__title {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

.tech-category__count {
    font-family: var(--font-nav);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.45);
}

/* Expandable technology nodes */
.tech-category__panel {
    position: absolute;
    left: 50%;
    top: calc(100% + 0.625rem);
    transform: translateX(-50%);
    width: max-content;
    min-width: 180px;
    max-width: min(280px, 70vw);
    padding: 0.75rem;
    border-radius: 14px;
    background: rgba(8, 27, 58, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tech-orbit__group.is-active .tech-category__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tech-category__nodes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
}

.tech-node {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.tech-node:hover {
    background: rgba(255, 106, 19, 0.1);
    border-color: rgba(255, 106, 19, 0.3);
    box-shadow: 0 0 16px rgba(255, 106, 19, 0.1);
    transform: translateX(2px);
}

.tech-node__pulse {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 106, 19, 0.5);
    box-shadow: 0 0 0 0 rgba(255, 106, 19, 0.4);
    animation: tech-node-pulse 2.5s ease-in-out infinite;
}

.tech-node__name {
    font-family: var(--font-nav);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.88);
}

@keyframes tech-node-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 106, 19, 0.35); }
    50% { box-shadow: 0 0 0 4px rgba(255, 106, 19, 0); }
}

/* Mobile: stack categories below hub */
@media (max-width: 767px) {
    .tech-viz {
        min-height: auto;
        padding: 1.5rem 1rem 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .tech-hub {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 0.5rem;
    }

    .tech-orbit {
        position: relative;
        inset: auto;
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
    }

    .tech-orbit__group {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: none;
    }

    .tech-category__panel {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: none;
        margin-top: 0.5rem;
    }

    .tech-orbit__group:not(.is-active) .tech-category__panel {
        display: none;
    }

    .tech-viz__lines {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tech-hub__ring--outer,
    .tech-node__pulse {
        animation: none;
    }

    .tech-category,
    .tech-node {
        transition: background 0.2s ease, border-color 0.2s ease;
    }
}

/* ---- CASE STUDIES: Enterprise showcase ---- */
.section-cases--viewport {
    position: relative;
    background: #FFFFFF;
    color: var(--navy);
    --reveal-curtain: #FFFFFF;
    min-height: 100svh;
    height: auto;
    max-height: none;
    padding: 0 !important;
    padding-bottom: clamp(2rem, 4vh, 3rem) !important;
    overflow: visible;
    box-sizing: border-box;
}

.case-showcase-shell {
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - clamp(2rem, 4vh, 3rem));
    height: auto;
    padding-top: var(--header-h-scrolled, 72px);
    padding-bottom: clamp(1.75rem, 3vh, 2.5rem);
    box-sizing: border-box;
}

.case-showcase__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: end;
    flex-shrink: 0;
    margin-bottom: clamp(1.25rem, 2.5vh, 1.75rem);
}

.case-showcase__label {
    font-family: var(--font-nav);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(8, 27, 58, 0.45);
    margin: 0 0 0.625rem;
}

.case-showcase__title {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 2.8vw + 0.5rem, 2.75rem);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.032em;
    color: var(--navy);
    margin: 0;
    text-wrap: balance;
    max-width: 11em;
}

.case-showcase__nav {
    min-width: 0;
}

.case-showcase__categories {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.4375rem;
}

.case-showcase__cat {
    font-family: var(--font-nav);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(8, 27, 58, 0.52);
    padding: 0.5rem 0.9375rem;
    border: 1px solid rgba(8, 27, 58, 0.1);
    border-radius: 999px;
    background: #FFFFFF;
    cursor: pointer;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.case-showcase__cat:hover,
.case-showcase__cat:focus-visible {
    outline: none;
    color: rgba(8, 27, 58, 0.78);
    border-color: rgba(8, 27, 58, 0.18);
}

.case-showcase__cat.is-active {
    color: var(--orange);
    border-color: rgba(255, 106, 19, 0.45);
    background: rgba(255, 106, 19, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 106, 19, 0.08);
}

.case-showcase__card {
    position: relative;
    flex: 1 1 auto;
    min-height: clamp(480px, 58vh, 640px);
    border: 1px solid rgba(8, 27, 58, 0.08);
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow:
        0 1px 2px rgba(8, 27, 58, 0.04),
        0 12px 40px rgba(8, 27, 58, 0.07);
    overflow: hidden;
}

.case-showcase__panel {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 44% 56%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.case-showcase__panel.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.case-showcase__media {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #0a1628;
}

.case-showcase__media img,
.case-showcase__media .photo-crop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-showcase__panel.is-active .case-showcase__media img,
.case-showcase__panel.is-active .case-showcase__media .photo-crop {
    transform: scale(1.04);
}

.case-showcase__media-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 55%, rgba(255, 255, 255, 0.06) 100%);
    pointer-events: none;
}

.case-showcase__content {
    display: flex;
    flex-direction: column;
    gap: clamp(0.625rem, 1.1vh, 0.875rem);
    padding: clamp(1.125rem, 2vh, 1.5rem) clamp(1.25rem, 2vw, 2rem);
    padding-bottom: clamp(1.25rem, 2vh, 1.75rem);
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
}

.case-showcase__project {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.4vw + 0.5rem, 1.625rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.028em;
    color: var(--navy);
    margin: 0 0 0.375rem;
}

.case-showcase__summary {
    font-size: clamp(0.875rem, 0.5vw + 0.75rem, 0.9375rem);
    line-height: 1.55;
    color: rgba(8, 27, 58, 0.62);
    margin: 0;
    max-width: 36rem;
}

.case-showcase__kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.5rem, 0.9vw, 0.75rem);
    padding: clamp(0.625rem, 1vh, 0.875rem) 0;
    border-top: 1px solid rgba(8, 27, 58, 0.07);
    border-bottom: 1px solid rgba(8, 27, 58, 0.07);
}

.case-showcase__kpi {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.case-showcase__kpi-value {
    font-family: var(--font-heading);
    font-size: clamp(1.375rem, 1.5vw + 0.5rem, 1.875rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--navy);
}

.case-showcase__kpi-label {
    font-family: var(--font-nav);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(8, 27, 58, 0.48);
    line-height: 1.35;
}

.case-showcase__narrative {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.875rem, 1.5vw, 1.25rem);
}

.case-showcase__kicker {
    font-family: var(--font-nav);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(8, 27, 58, 0.42);
    margin: 0 0 0.375rem;
}

.case-showcase__block--solution .case-showcase__kicker {
    color: var(--orange);
}

.case-showcase__block p {
    font-size: clamp(0.8125rem, 0.35vw + 0.7rem, 0.875rem);
    line-height: 1.55;
    color: rgba(8, 27, 58, 0.72);
    margin: 0;
}

.case-showcase__tech {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.case-showcase__tech-chip {
    font-family: var(--font-nav);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(8, 27, 58, 0.68);
    padding: 0.375rem 0.6875rem;
    border: 1px solid rgba(8, 27, 58, 0.1);
    border-radius: 999px;
    background: rgba(8, 27, 58, 0.02);
}

.case-showcase__footer {
    margin-top: auto;
    padding-top: clamp(0.5rem, 1vh, 0.75rem);
    padding-bottom: 0.25rem;
    flex-shrink: 0;
}

.case-showcase__btn .btn-premium__inner {
    padding: 0.6875rem 1.375rem;
    font-size: 0.875rem;
}

@media (max-width: 1023px) {
    .section-cases--viewport {
        height: auto;
        min-height: auto;
        max-height: none;
        padding-top: var(--section-py-mobile) !important;
        padding-bottom: var(--section-py-mobile) !important;
        overflow: visible;
    }

    .case-showcase-shell {
        height: auto;
        padding-top: 0;
    }

    .case-showcase__top {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .case-showcase__categories {
        justify-content: flex-start;
    }

    .case-showcase__card {
        min-height: 640px;
    }

    .case-showcase__panel {
        grid-template-columns: 1fr;
        grid-template-rows: 220px 1fr;
    }

    .case-showcase__content {
        overflow: visible;
    }

    .case-showcase__narrative {
        grid-template-columns: 1fr;
    }

    .case-showcase__kpis {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1280px) {
    .case-showcase__kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .case-showcase__kpis {
        grid-template-columns: 1fr;
    }

    .case-showcase__card {
        min-height: auto;
    }

    .case-showcase__panel {
        position: relative;
        display: none;
        grid-template-rows: 200px auto;
    }

    .case-showcase__panel.is-active {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    .case-showcase__media img,
    .case-showcase__media .photo-crop,
    .case-showcase__cat {
        transition: none;
    }
}
/* ---- Global closing CTA (light, before footer) ---- */
.site-closing-cta {
    padding: var(--ds-section-py) clamp(1.25rem, 4vw, 2rem);
    background: #F7F9FC;
    text-align: center;
    border-top: 1px solid rgba(8, 27, 58, 0.06);
}

.site-closing-cta__shell {
    max-width: 720px;
    margin: 0 auto;
}

.site-closing-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #081B3A;
    margin: 0 0 1rem;
}

.site-closing-cta__lede {
    font-size: clamp(1.0625rem, 0.5vw + 1rem, 1.1875rem);
    line-height: 1.65;
    color: rgba(8, 27, 58, 0.58);
    margin: 0 0 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.site-closing-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.875rem;
}

.site-closing-cta__btn--outline .btn-premium__inner {
    background: transparent;
    border: 1px solid rgba(8, 27, 58, 0.18);
    color: #081B3A;
}

.site-closing-cta__btn--outline:hover .btn-premium__inner {
    border-color: #FF6B00;
    color: #FF6B00;
}

.site-footer-divider {
    height: 1px;
    max-width: min(1400px, calc(100% - 3rem));
    margin: 0 auto;
    background: rgba(8, 27, 58, 0.1);
}

.site-footer {
    margin-top: 0;
}

[data-cta-animate] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-cta-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-cta-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Legacy alias — keep for any stale references */
.section-cta--viewport {
    padding: var(--ds-section-py) clamp(1.25rem, 4vw, 2rem) !important;
    background: #F7F9FC !important;
    color: #081B3A !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
}

/* ---- CONTACT: Premium conversion ---- */
.section-contact--viewport {
    position: relative;
    min-height: 100svh;
    padding-top: clamp(7.5rem, 11vh, 8.75rem) !important;
    padding-bottom: clamp(7.5rem, 11vh, 8.75rem) !important;
    overflow: visible;
    background: linear-gradient(165deg, #081B3A 0%, #0A1F3D 45%, #0D2444 100%);
    color: var(--white);
    --reveal-curtain: #081B3A;
    box-sizing: border-box;
    border-top: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-convert-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-convert-bg__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.contact-convert-bg__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: 48px 48px;
    mask-image: radial-gradient(ellipse 95% 90% at 50% 50%, black 30%, transparent 78%);
}

.contact-convert-bg__glow--left {
    top: 10%;
    left: -5%;
    width: 45%;
    height: 50%;
    background: radial-gradient(circle, rgba(255, 106, 19, 0.1) 0%, transparent 70%);
}

.contact-convert-bg__glow--right {
    bottom: 5%;
    right: -5%;
    width: 40%;
    height: 45%;
    background: radial-gradient(circle, rgba(56, 120, 200, 0.08) 0%, transparent 70%);
}

.contact-convert-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: clamp(1.5rem, 3vw, 2.5rem);
    padding-right: clamp(1.5rem, 3vw, 2.5rem);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
    gap: clamp(2rem, 4vw, 3rem);
}

.contact-convert__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
}

.contact-convert__photo {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.contact-convert__photo img,
.contact-convert__photo picture,
.contact-convert__photo .photo-crop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-convert {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: clamp(5rem, 6.5vw, 6.25rem);
    align-items: center;
    width: 100%;
}

.contact-convert__sales {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-right: clamp(0.5rem, 2vw, 1.5rem);
}

.contact-convert__label {
    font-family: var(--font-nav);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 106, 19, 0.9);
    margin: 0 0 1.25rem;
}

.contact-convert__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.038em;
    color: var(--white);
    margin: 0 0 1.75rem;
    text-wrap: balance;
}

.contact-convert__lede {
    font-size: clamp(1.125rem, 1.2vw, 1.375rem);
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.68);
    margin: 0 0 2.25rem;
    max-width: 28rem;
}

.contact-convert__checklist {
    list-style: none;
    margin: 0 0 2.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.contact-convert__check-item {
    display: flex;
    align-items: center;
    gap: 0.6875rem;
    font-size: clamp(0.9375rem, 1vw, 1.0625rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
}

.contact-convert__check-item.is-visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-convert__check-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(255, 106, 19, 0.15);
    color: var(--orange);
}

.contact-convert__process {
    margin-bottom: 2.25rem;
}

.contact-convert__process-label {
    font-family: var(--font-nav);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 0.875rem;
}

.contact-convert__timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-convert__timeline-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4375rem 0;
}

.contact-convert__timeline-step.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.contact-convert__timeline-marker {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    font-family: var(--font-nav);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--orange);
    box-shadow: none;
}

.contact-convert__timeline-text {
    font-size: clamp(0.875rem, 0.9vw, 0.9375rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.contact-convert__timeline-connector {
    position: absolute;
    left: 0.75rem;
    top: 1.875rem;
    width: 1px;
    height: calc(100% - 0.25rem);
    background: rgba(255, 255, 255, 0.12);
    transform: scaleY(0);
    transform-origin: top center;
}

.contact-convert__timeline-step.is-visible .contact-convert__timeline-connector {
    transform: scaleY(1);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.contact-convert__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1.5rem;
    max-width: 24rem;
    padding-top: 0.5rem;
}

.contact-convert__stat.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.contact-convert__stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 2.2vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--white);
    margin-bottom: 0.375rem;
}

.contact-convert__stat-label {
    display: block;
    font-family: var(--font-nav);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.35;
}

.contact-convert__form-wrap {
    min-width: 0;
    padding: 3rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.08),
        0 24px 64px rgba(0, 0, 0, 0.22);
}

.contact-convert__success {
    margin: 0 0 1.5rem;
    padding: 1rem 1.125rem;
    border-radius: 12px;
    background: rgba(255, 106, 19, 0.08);
    border: 1px solid rgba(255, 106, 19, 0.2);
    color: var(--navy);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.contact-convert__form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-convert__field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
}

.contact-convert__field {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.contact-convert__label-field {
    font-family: var(--font-nav);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(8, 27, 58, 0.48);
}

.contact-convert__field input,
.contact-convert__field textarea,
.contact-convert__select-wrap select {
    width: 100%;
    height: 4rem;
    padding: 0 1.25rem;
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.4;
    color: var(--navy);
    background: #FFFFFF;
    border: 1px solid rgba(8, 27, 58, 0.1);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(8, 27, 58, 0.03);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.contact-convert__field textarea {
    height: auto;
    min-height: 8rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    resize: vertical;
}

.contact-convert__field input:hover,
.contact-convert__field textarea:hover,
.contact-convert__select-wrap select:hover {
    border-color: rgba(8, 27, 58, 0.18);
    background: #FFFFFF;
}

.contact-convert__field input:focus,
.contact-convert__field textarea:focus,
.contact-convert__select-wrap select:focus {
    outline: none;
    border-color: rgba(255, 106, 19, 0.45);
    box-shadow:
        0 0 0 3px rgba(255, 106, 19, 0.12),
        0 4px 16px rgba(255, 106, 19, 0.08);
    background: #FFFFFF;
}

.contact-convert__select-wrap {
    position: relative;
}

.contact-convert__select-wrap select {
    padding-right: 2.5rem;
    cursor: pointer;
}

.contact-convert__select-chevron {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 1.5px solid rgba(8, 27, 58, 0.4);
    border-bottom: 1.5px solid rgba(8, 27, 58, 0.4);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.contact-convert__submit {
    margin-top: 0.5rem;
}

.contact-convert__btn {
    width: 100%;
}

.contact-convert__btn .btn-premium__inner {
    width: 100%;
    justify-content: center;
    padding: 1.125rem 1.75rem;
    font-size: 1.0625rem;
    border-radius: 12px;
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.contact-convert__btn:hover .btn-premium__inner,
.contact-convert__btn:focus-visible .btn-premium__inner {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255, 106, 19, 0.3),
        0 8px 28px rgba(255, 106, 19, 0.28),
        0 16px 40px rgba(255, 106, 19, 0.12);
}

.contact-convert__fine-print {
    margin: 0.25rem 0 0;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(8, 27, 58, 0.45);
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .section-contact--viewport {
        padding-top: var(--ds-section-py) !important;
        padding-bottom: var(--ds-section-py) !important;
    }

    .contact-convert-shell {
        display: block;
    }

    .contact-convert {
        grid-template-columns: 1fr;
        gap: clamp(3.5rem, 8vw, 5rem);
    }

    .contact-convert__sales {
        padding-right: 0;
    }

    .contact-convert__stats {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .contact-convert__field-row {
        grid-template-columns: 1fr;
    }

    .contact-convert__heading {
        font-size: clamp(2.125rem, 9vw, 3rem);
    }

    .contact-convert__form-wrap {
        padding: 2rem 1.5rem;
    }

    .contact-convert__field input,
    .contact-convert__field textarea,
    .contact-convert__select-wrap select {
        font-size: 1.0625rem;
        height: 3.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-convert__check-item,
    .contact-convert__timeline-step,
    .contact-convert__stat {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .contact-convert__timeline-connector {
        transform: scaleY(1);
    }
}

/* ---- Contact page: office locations ---- */
.contact-offices {
    padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 3vw, 2.5rem);
    background: #F7F9FC;
    border-top: 1px solid rgba(8, 27, 58, 0.06);
}

.contact-offices__shell {
    max-width: 1440px;
    margin: 0 auto;
}

.contact-offices__header {
    max-width: 640px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-offices__label {
    font-family: var(--font-nav);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 106, 19, 0.9);
    margin: 0 0 0.75rem;
}

.contact-offices__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.5rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #081B3A;
    margin: 0;
}

.contact-offices__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .contact-offices__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-office-card {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 18px;
    background: #FFFFFF;
    border: 1px solid rgba(8, 27, 58, 0.08);
    box-shadow: 0 8px 32px rgba(8, 27, 58, 0.06);
}

.contact-office-card__country {
    font-family: var(--font-nav);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FF6B00;
    margin: 0 0 0.75rem;
}

.contact-office-card__address {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(8, 27, 58, 0.72);
    margin: 0 0 1rem;
}

.contact-office-card__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.contact-office-card__links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #081B3A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-office-card__links a:hover,
.contact-office-card__links a:focus-visible {
    color: #FF6B00;
    outline: none;
}
