/* ================================================================
   RESET & BASE
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1a1a1a; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ================================================================
   CSS VARIABLES
================================================================ */
:root {
    --gradient: linear-gradient(135deg, #FF6B2B 0%, #8B2FC9 100%);
    --accent: #EA225D;
    --dark: #0d0d0d;
    --text: #1a1a1a;
    --muted: #666;
    --light: #f8f9fa;
    --white: #fff;
    --border: #e5e7eb;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --ease: 0.3s ease;
    --max: 1200px;
    
    /* ── Typography Scale ── */
    --text-xs: 0.75rem;                            /* 12px — labels, badges */
    --text-sm: 0.875rem;                           /* 14px — captions, small body */
    --text-base: 1rem;                             /* 16px — body text */
    --text-lg: 1.125rem;                           /* 18px — large body */
    --text-xl: 1.25rem;                            /* 20px — sub-headings */
    --text-2xl: 1.5rem;                            /* 24px — small headings */
    --text-3xl: clamp(1.75rem, 3.5vw, 2.25rem);   /* card / carousel headings */
    --text-4xl: clamp(1.75rem, 4vw, 3rem);         /* section headings */
    --text-5xl: clamp(2.25rem, 5vw, 4rem);         /* showcase / feature headings */

    /* ── Line Heights ── */
    --leading-tight: 1.15;
    --leading-snug: 1.3;
    --leading-normal: 1.6;
    --leading-relaxed: 1.7;

    /* ── Letter Spacing ── */
    --tracking-eyebrow: 0.2em;

    /* ── Section Spacing ── */
    --section-pad-y: clamp(80px, 8vw, 120px);
}

/* ================================================================
   NAVBAR
================================================================ */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    max-width: calc(var(--max) - 48px);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 8px;
    border-radius: 100px;
    background: rgba(0,0,0,0.35);
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.navbar.scrolled .nav-container {
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-links li {
    flex-shrink: 0;
}
.nav-links a {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: var(--text-base);
    padding: 8px 16px;
    border-radius: 100px;
    white-space: nowrap;
    transition: color var(--ease), background var(--ease);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.12); }

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 14px 24px !important;
    border-radius: 100px;
    font-weight: 600;
}
.nav-cta:hover { background: #c81a4a !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    transition: all var(--ease);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
}
.nav-overlay.active { display: block; }

@media (max-width: 900px) {
    .navbar {
        top: 16px;
        left: auto;
        right: 16px;
        transform: none;
        width: auto;
        max-width: none;
        z-index: 1002;
    }
    .nav-container {
        background: transparent;
        border: none;
        padding: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0;
    }
    .navbar.scrolled .nav-container { box-shadow: none; }
    .hamburger {
        display: flex;
        position: relative;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.35);
        border: 2px solid rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 1003;
    }
    .hamburger.open {
        background: var(--accent);
        border-color: rgba(255,255,255,0.5);
        box-shadow: 0 12px 32px rgba(234,34,93,0.28);
    }
    .hamburger span {
        width: 21px;
        height: 2px;
        border-radius: 999px;
        background: #fff;
        transition: all var(--ease);
    }
    .hamburger.open span {
        width: 22px;
        height: 2px;
        border-radius: 999px;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 86vw); height: 100vh;
        background: rgba(0, 0, 0, 0.35);
        border-left: 2px solid rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        padding: 112px 28px 40px;
        transition: right var(--ease);
        box-shadow: -18px 0 60px rgba(0,0,0,0.38);
        z-index: 1001;
        border-radius: 0;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links.open { right: 0; }
    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 48px;
        color: rgba(255,255,255,0.88) !important;
        font-size: 18px;
        font-weight: 600;
        text-align: center;
        background: rgba(0, 0, 0, 0.35) !important;
        border: 1px solid rgba(255, 255, 255, 0.28);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        padding: 12px 18px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }
    .nav-links a:hover {
        color: #fff !important;
        background: rgba(0, 0, 0, 0.48) !important;
    }
    .nav-links .nav-cta {
        margin-top: 8px;
        background: var(--accent) !important;
        border-color: transparent;
        color: #fff !important;
        box-shadow: 0 12px 32px rgba(234,34,93,0.28);
    }
}

/* ================================================================
   HERO
================================================================ */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 600px;
    /* Override the global `section { padding: ... 24px }` so the video
       fills edge-to-edge instead of sitting inside a 24px gutter. */
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}
.logo-scroll-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: var(--section-pad-y) 0;
    background: var(--dark);
}
.hero-mute-btn {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--ease), border-color var(--ease), opacity 1.4s ease, visibility 1.4s ease;
    backdrop-filter: blur(6px);
}
.hero-mute-btn--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.hero-mute-btn:hover {
    background: rgba(0,0,0,0.6);
    border-color: rgba(255,255,255,0.8);
}
.hero-mute-btn svg { width: 18px; height: 18px; }
.hero-mute-icon--on  { display: none; }
.hero-mute-icon--off { display: block; }
.hero-mute-btn--unmuted .hero-mute-icon--on  { display: block; }
.hero-mute-btn--unmuted .hero-mute-icon--off { display: none; }

.hero-reveal-label {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 700px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
}
.hero-reveal-label::before,
.hero-reveal-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

.hero-video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    opacity: 1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,13,13,0.88) 0%, rgba(139,47,201,0.25) 100%);
}
.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    max-width: 820px;
}
.hero-eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: #FF6B2B;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-title .text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 44px;
    line-height: var(--leading-relaxed);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Tablet: trim the hero so the video doesn't have to crop as aggressively. */
@media (max-width: 1024px) {
    .hero { min-height: 480px; }
}

/* Mobile: drop the full-viewport hero and let the box take the video's
   native aspect ratio so the whole frame is visible. Adjust 16/9 below if
   the source video uses a different ratio. */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
        max-height: 100dvh;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        transform: none;
    }

    .hero-mute-btn {
        right: 14px;
        bottom: 14px;
        width: 38px;
        height: 38px;
    }
    .hero-mute-btn svg { width: 16px; height: 16px; }
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 40px;
    border-radius: 100px;
    transition: all var(--ease);
    box-shadow: 0 8px 32px rgba(234,34,93,0.35);
}
.btn-primary:hover {
    background: #c81a4a;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(234,34,93,0.45);
}
.btn-outline {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.45);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 100px;
    transition: all var(--ease);
}
.btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: heroScroll 2.5s ease-in-out infinite;
}
.hero-scroll::after {
    content: '';
    display: block;
    width: 1px; height: 36px;
    background: rgba(255,255,255,0.25);
}
@keyframes heroScroll {
    0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* ================================================================
   SECTION COMMON
================================================================ */
section { padding: var(--section-pad-y) 24px; }
section[id] { scroll-margin-top: 96px; }
.container { max-width: var(--max); margin: 0 auto; }

.section-eyebrow {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 12px;
    display: inline-block;
}
.section-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    font-family: 'Lora', serif;
    color: var(--text);
    line-height: var(--leading-tight);
    margin-bottom: 20px;
}
.hero-title,
.stats-heading,
.csuite-title,
.htesti-title,
.faq-title,
.culture-sticky-title,
.contact-info h2,
.contact-form-wrap h3,
.culture-sticky-subheading,
.diff-main-heading,
.diff-card-title,
.arc-title {
    font-family: 'Lora', serif;
}
.section-subtitle {
    font-size: var(--text-base);
    color: var(--muted);
    line-height: var(--leading-relaxed);
    max-width: 560px;
}
.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================================================
   MEDIA STRIP (As Featured In)
================================================================ */
.media-strip {
    background: var(--light);
    padding: var(--section-pad-y) 24px 12px;
    text-align: center;
}
.media-strip-label {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 0;
}
.media-strip-img {
    max-width: 900px;
    margin: 0 auto;
}
.media-strip-img img {
    width: 100%;
    filter: grayscale(1);
    opacity: 0.55;
    transition: all var(--ease);
}
.media-strip-img img:hover { filter: grayscale(0); opacity: 1; }

/* ================================================================
   LOGO CLOUD (Companies we collaborate with — per-logo card flip)
================================================================ */
.logo-cloud {
    background: var(--light);
    padding: 0 24px var(--section-pad-y);
}
.logo-cloud-inner {
    max-width: var(--max);
    margin: 0 auto;
}
.logo-cloud-heading {
    text-align: center;
    font-family: 'Lora', serif;
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0;
    line-height: var(--leading-tight);
    margin-bottom: 48px;
}
.logo-cloud-heading .text-gradient { font-weight: 800; }

.logo-cloud-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1120px;
    margin: 0 auto;
    gap: 4px 8px;
}
.logo-cell {
    position: relative;
    aspect-ratio: 5 / 2;
    perspective: 1200px;
}
.logo-face {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 10px 16px;
    transform-origin: center;
    backface-visibility: hidden;
    animation-duration: 48s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.65, 0.05, 0.35, 1);
    animation-delay: var(--cell-delay, 0s);
    animation-fill-mode: backwards;
}
.logo-face img {
    max-width: 78%;
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.logo-face img.is-sm { max-width: 55%; max-height: 50%; }

.logo-face--0 { animation-name: lc-face-spin-0; }
.logo-face--1 { animation-name: lc-face-spin-1; }
.logo-face--2 { animation-name: lc-face-spin-2; }
.logo-face--3 { animation-name: lc-face-spin-3; }

/* 48s cycle. Each face is visible for 25% of the cycle (12s),
   then flips out (1.5s) over its own X-axis while the next face flips in from below.
   Per-cell `--cell-delay` staggers cells so only one transition runs at a time. */
@keyframes lc-face-spin-0 {
    0%      { transform: rotateX(0deg);    opacity: 1; }
    25%     { transform: rotateX(0deg);    opacity: 1; }
    28.125% { transform: rotateX(180deg);  opacity: 0; }
    96.875% { transform: rotateX(-180deg); opacity: 0; }
    100%    { transform: rotateX(0deg);    opacity: 1; }
}
@keyframes lc-face-spin-1 {
    0%      { transform: rotateX(-180deg); opacity: 0; }
    25%     { transform: rotateX(-180deg); opacity: 0; }
    28.125% { transform: rotateX(0deg);    opacity: 1; }
    50%     { transform: rotateX(0deg);    opacity: 1; }
    53.125% { transform: rotateX(180deg);  opacity: 0; }
    100%    { transform: rotateX(180deg);  opacity: 0; }
}
@keyframes lc-face-spin-2 {
    0%      { transform: rotateX(-180deg); opacity: 0; }
    50%     { transform: rotateX(-180deg); opacity: 0; }
    53.125% { transform: rotateX(0deg);    opacity: 1; }
    75%     { transform: rotateX(0deg);    opacity: 1; }
    78.125% { transform: rotateX(180deg);  opacity: 0; }
    100%    { transform: rotateX(180deg);  opacity: 0; }
}
@keyframes lc-face-spin-3 {
    0%      { transform: rotateX(-180deg); opacity: 0; }
    75%     { transform: rotateX(-180deg); opacity: 0; }
    78.125% { transform: rotateX(0deg);    opacity: 1; }
    96.875% { transform: rotateX(0deg);    opacity: 1; }
    100%    { transform: rotateX(180deg);  opacity: 0; }
}

@media (max-width: 720px) {
    .logo-cloud-grid { grid-template-columns: repeat(2, 1fr); gap: 8px 10px; }
    .logo-cloud-heading { font-size: var(--text-4xl); margin-bottom: 32px; }
    .logo-cell { aspect-ratio: 3 / 2; }
    .logo-face { padding: 8px 10px; }
    .logo-face img { max-width: 95%; max-height: 90%; }
    .logo-face img.is-sm { max-width: 80%; max-height: 70%; }
}

@media (prefers-reduced-motion: reduce) {
    .logo-face { animation: none; opacity: 0; transform: none; }
    .logo-face--0 { opacity: 1; }
}

/* ================================================================
   ABOUT
================================================================ */
.about-section { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-body { display: flex; flex-direction: column; gap: 20px; }
.about-body p { font-size: var(--text-base); color: var(--muted); }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
}
.stat-card {
    padding: 24px;
    background: var(--light);
    border-radius: var(--radius);
    border-left: 3px solid transparent;
    border-image: var(--gradient) 1;
}
.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label { font-size: var(--text-xs); color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

.about-image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image { order: -1; aspect-ratio: 16/9; }
}

/* ================================================================
   FOUNDERS / TEAM
================================================================ */
.founders-section { background: var(--light); }
.founders-header { text-align: center; margin-bottom: 64px; }
.founders-header .section-subtitle { margin: 0 auto; }

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 860px;
    margin: 0 auto;
}
.founder-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--ease), box-shadow var(--ease);
}
.founder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.founder-photo { aspect-ratio: 3/4; overflow: hidden; }
.founder-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.founder-card:hover .founder-photo img { transform: scale(1.04); }
.founder-info { padding: 28px 32px; }
.founder-name { font-size: var(--text-xl); font-weight: 700; margin-bottom: 4px; }
.founder-role {
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}
.founder-bio { font-size: var(--text-sm); color: var(--muted); }

@media (max-width: 680px) {
    .founders-grid { grid-template-columns: 1fr; max-width: 380px; }
}

/* ----------------------------------------------------------------
   Profile Cards  (below "Faces behind the brand")
---------------------------------------------------------------- */
.profile-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 960px;
    margin: 80px auto 0;
    padding: 0 16px;
}

/* Scroll-in animation */
@keyframes pc-fade-in-right {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes pc-fade-in-left {
    from { opacity: 0; transform: translateX(-24px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes pc-fade-in-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.profile-card[data-pc-observe] .pc-content,
.profile-card[data-pc-observe] .pc-mobile-content {
    opacity: 0;
}
.profile-card[data-pc-observe].pc-visible .pc-content {
    animation: pc-fade-in-right 0.5s ease forwards;
}
.profile-card--reverse[data-pc-observe].pc-visible .pc-content {
    animation: pc-fade-in-left 0.5s ease forwards;
}
.profile-card[data-pc-observe].pc-visible .pc-mobile-content {
    animation: pc-fade-in-up 0.5s ease forwards;
}

/* Desktop layout */
.pc-desktop {
    display: none;
    position: relative;
    align-items: center;
}
@media (min-width: 769px) {
    .pc-desktop { display: flex; }
    .pc-mobile  { display: none; }
}

.pc-image-wrap {
    width: 400px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e5e7eb;
}
.pc-image-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    user-select: none;
}

.pc-content {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.14);
    padding: 40px 40px 36px;
    margin-left: -72px;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

/* Reverse variant: card overlaps from the right */
.profile-card--reverse .pc-desktop {
    flex-direction: row-reverse;
}
.profile-card--reverse .pc-content {
    margin-left: 0;
    margin-right: -72px;
}

.pc-header { margin-bottom: 20px; }
.pc-name {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.pc-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--muted);
}
.pc-description {
    font-size: var(--text-base);
    color: var(--text);
    margin-bottom: 0;
}
.pc-description p {
    margin-bottom: 12px;
}
.pc-description p:last-child {
    margin-bottom: 0;
}
.pc-socials {
    display: flex;
    gap: 12px;
}
.pc-social-btn {
    width: 44px;
    height: 44px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background var(--ease), transform var(--ease);
    flex-shrink: 0;
}
.pc-social-btn:hover {
    background: #333;
    transform: scale(1.08);
}

/* Mobile layout */
.pc-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    background: transparent;
}
@media (max-width: 768px) {
    .pc-mobile  { display: flex; }
    .pc-desktop { display: none; }
}

.pc-mobile-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #e5e7eb;
}
.pc-mobile-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    user-select: none;
}
.pc-mobile-content .pc-name  { margin-bottom: 6px; }
.pc-mobile-content .pc-title { margin-bottom: 14px; }

/* Culture — Where Passion Meets Creativity (sticky image + scrolling text) */
.culture-sticky-wrap {
    display: flex;
    align-items: flex-start;
    gap: 56px;
    margin-top: 80px;
    padding-bottom: 60px;
    padding-left: 40px;
    padding-right: 40px;
}

.culture-sticky-img-col {
    position: sticky;
    top: 110px;
    width: 50%;
    flex-shrink: 0;
    align-self: flex-start;
    border-radius: 20px 0 20px 0;
    overflow: hidden;
}

.culture-sticky-img-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px 0 20px 0;
}

.culture-scroll-text-col {
    flex: 1;
    min-width: 0;
    padding-bottom: 0;
}

.culture-sticky-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--dark);
    line-height: var(--leading-tight);
    margin-bottom: 40px;
}

.culture-sticky-title .tr-word__ghost {
    color: var(--dark);
    opacity: 0.15;
}

.culture-sticky-title .tr-word__reveal {
    color: var(--dark);
    opacity: 0;
    transition: opacity 0.55s ease;
}

.culture-sticky-title .tr-word__reveal em {
    font-style: italic;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.culture-tr-block {
    margin-bottom: 32px;
}

.culture-tr-block--sub {
    margin-top: 16px;
    margin-bottom: 16px;
}

.culture-tr-para {
    font-size: var(--text-base);
    color: #444;
    line-height: var(--leading-relaxed);
    margin: 0;
}

.culture-tr-block .tr-word__ghost {
    color: var(--dark);
    opacity: 0.15;
}

.culture-tr-block .tr-word__reveal {
    color: #444;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.culture-sticky-subheading {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.culture-sticky-subheading .tr-word__ghost {
    color: var(--dark);
}

.culture-sticky-subheading .tr-word__reveal {
    color: var(--dark);
}

/* Triggered state */
.culture-tr-block.tr-is-visible .tr-word__reveal,
.culture-sticky-title.tr-is-visible .tr-word__reveal {
    opacity: 1;
}

@media (max-width: 820px) {
    .culture-sticky-wrap {
        flex-direction: column;
        gap: 40px;
        margin-top: 60px;
        padding-left: 24px;
        padding-right: 24px;
    }
    .culture-sticky-img-col {
        position: relative;
        top: auto;
        width: 100%;
    }
    .culture-scroll-text-col {
        padding-bottom: 0;
    }
}

/* ================================================================
   SERVICES
================================================================ */
.services-section { background: var(--dark); }
.services-section .section-title { color: var(--white); }
.services-section .section-subtitle { color: rgba(255,255,255,0.55); }
.services-header { margin-bottom: 64px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--ease);
}
.service-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,107,43,0.4);
    transform: translateY(-5px);
}
.service-img-wrap {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.service-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, transparent 55%);
}
.service-body { padding: 24px; }
.service-num {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}
.service-title { font-size: var(--text-lg); font-weight: 700; color: var(--white); margin-bottom: 10px; }
.service-desc { font-size: var(--text-sm); color: rgba(255,255,255,0.55); }

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

/* ================================================================
   HOW WE WORK — SCROLL CURVE CARDS
================================================================ */
.process-section { background: var(--white); }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-subtitle { margin: 0 auto; }

/* Wrapper */
.scc-wrapper {
    position: relative;
    padding: 20px 0 40px;
}

/* SVG overlay */
.scc-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 0;
}
.scc-bg-line {
    fill: none;
    stroke: #dde1e7;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.scc-fg-line {
    fill: none;
    stroke: url(#scc-grad);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Rows */
.scc-row {
    display: flex;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}
.scc-row:last-child { margin-bottom: 0; }
.scc-row--left  { justify-content: flex-start; }
.scc-row--right { justify-content: flex-end; }

/* Cards */
.scc-card {
    width: 42%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.06);
    position: relative;
    transition: box-shadow var(--ease);
}
.scc-card:hover { box-shadow: 0 14px 48px rgba(0,0,0,0.11); }

/* Node circles — hidden but kept in DOM for the JS animation hooks */
.scc-node { display: none; }

/* Card content */
.scc-badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: var(--tracking-eyebrow);
    margin-bottom: 12px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.scc-card-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.scc-card-desc {
    font-size: var(--text-sm);
    color: var(--muted);
    margin: 0;
}

/* Card reveal animation (class added by JS) */
@keyframes sccCardIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.scc-card.scc-visible {
    animation: sccCardIn 0.6s ease forwards;
}
@media (prefers-reduced-motion: reduce) {
    .scc-card.scc-visible { animation: none; opacity: 1; }
}

/* Mobile: single-column stack — keep the SVG curve so connector arcs show
   between cards (cards sit above the SVG via z-index, so the curve is only
   visible in the row gap). */
@media (max-width: 768px) {
    .scc-row { margin-bottom: 56px; }
    .scc-row--left,
    .scc-row--right { justify-content: stretch; }
    .scc-card {
        width: 100%;
        opacity: 1 !important;
        animation: none !important;
    }
}

/* Legacy .process-steps still used by old section further down */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 31px;
    left: calc(12.5% + 8px);
    right: calc(12.5% + 8px);
    height: 2px;
    background: var(--gradient);
    z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-dot {
    width: 64px; height: 64px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(255,107,43,0.3);
}
.step-title { font-size: var(--text-base); font-weight: 700; color: var(--text); margin-bottom: 12px; }
.step-desc { font-size: var(--text-sm); color: var(--muted); }
@media (max-width: 900px) {
    .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
    .process-steps::before { display: none; }
}
@media (max-width: 500px) { .process-steps { grid-template-columns: 1fr; } }

/* ================================================================
   CLIENTS
================================================================ */
.clients-section { background: var(--light); }
.clients-header { text-align: center; margin-bottom: 64px; }
.clients-header .section-subtitle { margin: 0 auto; }

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}
.client-tile {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 2/1;
    transition: all var(--ease);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.client-tile img {
    max-height: 56px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.55;
    transition: all var(--ease);
}
.client-tile:hover img { filter: grayscale(0); opacity: 1; }

@media (max-width: 900px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 580px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials-section { background: var(--dark); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 64px; }

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.testi-video-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color var(--ease);
}
.testi-video-card:hover { border-color: rgba(255,107,43,0.35); }
.testi-video-card video { width: 100%; display: block; max-height: 360px; object-fit: cover; }
.testi-video-meta { padding: 20px 24px; }
.testi-video-meta h3 { font-size: var(--text-base); font-weight: 600; color: var(--white); margin-bottom: 4px; }
.testi-video-meta p { font-size: var(--text-sm); color: rgba(255,255,255,0.45); }

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

/* ================================================================
   CONTACT
================================================================ */
.contact-section {
    background: var(--white);
    display: flex;
    align-items: center;
    padding-top: var(--section-pad-y) !important;
    padding-bottom: var(--section-pad-y) !important;
}
.contact-section .container { width: 100%; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info { min-width: 0; }
.contact-info h2 {
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: var(--leading-tight);
    margin-bottom: 16px;
}
.contact-info > p {
    font-size: var(--text-base);
    color: var(--muted);
    line-height: var(--leading-relaxed);
    margin-bottom: 28px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: var(--text-base);
    color: var(--muted);
}
.contact-icon {
    width: 40px; height: 40px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: var(--text-base);
}
.contact-item a { transition: color var(--ease); }
.contact-item a:hover { color: #FF6B2B; }

.contact-form-wrap {
    background: var(--light);
    border-radius: 20px;
    padding: 36px 40px;
}
.contact-form-wrap h3 { font-size: var(--text-xl); font-weight: 700; margin-bottom: 6px; }
.contact-form-wrap > p { font-size: var(--text-sm); color: var(--muted); margin-bottom: 22px; }

.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.form-required {
    color: var(--accent);
    margin-left: 3px;
    font-weight: 800;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: var(--text-sm);
    color: var(--text);
    background: var(--white);
    transition: border-color var(--ease), box-shadow var(--ease);
    appearance: none;
    -webkit-appearance: none;
}
.form-group textarea {
    resize: vertical;
    min-height: 72px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B2B;
    box-shadow: 0 0 0 3px rgba(255,107,43,0.1);
}
.select-wrap { position: relative; }
.select-wrap::after {
    content: '▾';
    position: absolute;
    right: 16px; top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--muted);
    font-size: 14px;
}

.form-submit {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 100px;
    font-family: inherit;
    font-size: var(--text-base);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--ease);
    margin-top: 6px;
}
.form-submit:hover { background: #c81a4a; transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-msg {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: var(--text-sm);
    font-weight: 500;
    display: none;
}
.form-msg.success { background: rgba(34,168,60,0.12); color: #1a8c30; display: block; }
.form-msg.error   { background: rgba(234,34,93,0.1);  color: var(--accent); display: block; }

.thank-you-screen {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(13,13,13,0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.thank-you-screen.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.thank-you-panel {
    width: min(100%, 620px);
    padding: clamp(34px, 5vw, 56px);
    border-radius: 22px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 28px 90px rgba(0,0,0,0.34);
    text-align: center;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.35s ease;
}
.thank-you-screen.is-open .thank-you-panel {
    transform: translateY(0) scale(1);
}
.thank-you-logo {
    height: 36px;
    width: auto;
    margin: 0 auto 24px;
    filter: brightness(0);
}
.thank-you-eyebrow {
    margin: 0 0 12px;
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--accent);
}
.thank-you-panel h2 {
    font-family: 'Lora', serif;
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: var(--leading-tight);
    color: var(--text);
    margin-bottom: 16px;
}
.thank-you-panel > p:not(.thank-you-eyebrow) {
    max-width: 500px;
    margin: 0 auto 22px;
    color: var(--muted);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}
body.thank-you-open {
    overflow: hidden;
}

.lead-popup {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lead-popup.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.lead-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.62);
    backdrop-filter: blur(8px);
}
.lead-popup-dialog {
    position: relative;
    width: min(calc(100vw - 48px), 1320px);
    height: min(780px, calc(100svh - 48px));
    overflow: visible;
    transform: translateY(18px) scale(0.98);
    transition: transform 0.3s ease;
}
.lead-popup.is-open .lead-popup-dialog {
    transform: translateY(0) scale(1);
}
.lead-popup-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    height: 100%;
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 90px rgba(0,0,0,0.28);
}
.lead-popup-info {
    min-width: 0;
    padding: clamp(30px, 3vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lead-popup-info h2 {
    font-family: 'Lora', serif;
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: var(--leading-tight);
    margin-bottom: 16px;
}
.lead-popup-info p {
    font-size: var(--text-base);
    color: var(--muted);
    line-height: var(--leading-relaxed);
    margin: 0;
}
.lead-popup-card {
    border-radius: 0;
    box-shadow: none;
    padding: clamp(30px, 3vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lead-popup-card .form-group { margin-bottom: 12px; }
.lead-popup-card .form-group input,
.lead-popup-card .form-group select,
.lead-popup-card .form-group textarea {
    padding: 10px 14px;
}
.lead-popup-card .form-group textarea {
    min-height: 64px;
}
.lead-popup-card .form-submit {
    padding: 13px;
}
.contact-brands.lead-popup-brands {
    margin-top: 30px;
}
.lead-popup-brands .contact-brands-label {
    margin-bottom: 14px;
}
.lead-popup-brands .contact-brands-track img {
    width: auto;
    max-width: 110px;
    height: 48px;
    margin-right: 48px;
}
.lead-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--white);
    color: var(--text);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform var(--ease), background var(--ease);
}
.lead-popup-close:hover {
    background: #f3f4f6;
    transform: scale(1.04);
}
body.lead-popup-open {
    overflow: hidden;
}

.contact-brands { margin-top: 40px; }
.contact-brands-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}
.contact-brands-label::before,
.contact-brands-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: currentColor;
    opacity: 0.4;
}
.contact-brands-track-wrap {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.contact-brands-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: brandScroll 40s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}
.contact-brands-track img {
    width: auto;
    max-width: 140px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 60px;
}
.logo-scroll-section .contact-brands-track img {
    width: auto;
    max-width: 140px;
    height: 72px;
}
.hero-logo-rows {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    overflow: hidden;
    padding: 0 170px;
    box-sizing: border-box;
}
@keyframes brandScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes brandScrollReverse {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.contact-brands-track--reverse {
    animation-name: brandScrollReverse;
}

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

@media (min-width: 769px) and (max-width: 1024px) {
    .lead-popup-dialog {
        width: min(calc(100vw - 36px), 940px);
        height: min(700px, calc(100svh - 36px));
    }

    .lead-popup-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1fr);
    }

    .lead-popup-info {
        padding: 28px;
    }

    .lead-popup-info h2 {
        font-size: var(--text-3xl);
    }

    .lead-popup-info p {
        font-size: var(--text-sm);
        line-height: 1.55;
    }

    .lead-popup-card {
        padding: 28px;
    }

    .lead-popup-card .form-group {
        margin-bottom: 10px;
    }

    .lead-popup-card .form-group textarea {
        min-height: 54px;
    }

    .lead-popup-brands {
        margin-top: 20px;
    }

    .lead-popup-brands .contact-brands-track img {
        width: auto;
        max-width: 90px;
        height: 36px;
        margin-right: 36px;
    }
}

@media (min-width: 769px) and (max-height: 720px) {
    .lead-popup-dialog {
        height: calc(100svh - 32px);
    }

    .lead-popup-info,
    .lead-popup-card {
        padding: 24px;
    }

    .lead-popup-info h2 {
        font-size: var(--text-3xl);
        margin-bottom: 10px;
    }

    .lead-popup-info p {
        font-size: var(--text-sm);
        line-height: 1.45;
    }

    .lead-popup-card > p {
        margin-bottom: 14px;
    }

    .lead-popup-card .form-group {
        margin-bottom: 8px;
    }

    .lead-popup-card .form-group label {
        margin-bottom: 4px;
    }

    .lead-popup-card .form-group input,
    .lead-popup-card .form-group select,
    .lead-popup-card .form-group textarea {
        padding: 8px 12px;
    }

    .lead-popup-card .form-group textarea {
        min-height: 46px;
    }

    .contact-brands.lead-popup-brands {
        margin-top: 14px;
    }

    .lead-popup-brands .contact-brands-label {
        margin-bottom: 8px;
    }

    .lead-popup-brands .contact-brands-track img {
        width: auto;
        max-width: 90px;
        height: 32px;
    }
}

/* Prevent iOS Safari from zooming on input focus (input font-size must be >= 16px) */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .lead-popup {
        padding: 14px;
    }

    .lead-popup-dialog {
        width: 100%;
        height: auto;
        max-height: none;
    }

    .lead-popup-grid {
        display: block;
        border-radius: 16px;
    }

    .lead-popup-info {
        display: none;
    }

    .lead-popup-card {
        border-radius: 16px;
        padding: 28px 22px;
    }
}

/* ================================================================
   HORIZONTAL TEXT TESTIMONIALS
================================================================ */
.htesti-section {
    background: var(--dark);
    padding: var(--section-pad-y) 0;
    overflow: hidden;
}
.htesti-header-wrap {
    text-align: center;
    margin-bottom: 64px;
    padding: 0 24px;
}
.htesti-badge {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 4px 18px;
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    margin-bottom: 24px;
}
.htesti-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--white);
    line-height: var(--leading-tight);
    margin-bottom: 16px;
}
.htesti-subtitle {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.4);
    max-width: 520px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
}

.htesti-track-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.htesti-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 16px 12px;
    animation: htestiScroll 42s linear infinite;
}
.htesti-track:hover { animation-play-state: paused; }

@keyframes htestiScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.htesti-card {
    width: 320px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px;
    transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
    cursor: default;
}
.htesti-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,107,43,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.htesti-text {
    font-size: var(--text-base);
    color: rgba(255,255,255,0.6);
    margin: 0 0 24px;
}
.htesti-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.htesti-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.1);
}
.htesti-name {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--white);
    line-height: 1.3;
}
.htesti-role {
    display: block;
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.38);
    margin-top: 2px;
}

/* ================================================================
   C-SUITE PARTNER TESTIMONIALS
================================================================ */
.csuite-section {
    background: var(--dark);
    padding: var(--section-pad-y) 24px;
}

.csuite-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.csuite-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--white);
    line-height: var(--leading-tight);
    text-align: center;
}

.csuite-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 12px 26px;
    border-radius: 100px;
    font-size: var(--text-sm);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all var(--ease);
}
.csuite-view-all:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
}

/* Two-column body */
.csuite-body {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 20px;
    min-height: 320px;
    padding-left: 24px;
    padding-right: 24px;
}

/* ── Left: Video Reel ── */
.csuite-reel {
    position: relative;
    background: #111;
    overflow: hidden;
    border-radius: 20px;
}
.csuite-reel-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 73%;
    opacity: 0.75;
}
.csuite-reel-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.28);
    cursor: pointer;
    transition: background var(--ease), opacity 0.4s ease;
}
.csuite-reel-overlay:hover { background: rgba(0,0,0,0.15); }
.csuite-reel-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.csuite-reel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.94);
    color: var(--dark);
    border: none;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: inherit;
    font-size: var(--text-sm);
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform var(--ease), background var(--ease);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.csuite-reel-btn:hover {
    background: var(--white);
    transform: scale(1.05);
}

/* ── Right: Gradient slider ── */
.csuite-slider-wrap {
    position: relative;
    background: linear-gradient(135deg, #fdf3e7 0%, #fde0be 40%, #fdb97c 72%, #FF6B2B 100%);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 20px;
    overflow: hidden;
}

.csuite-track {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-areas: "stack";
    align-items: stretch;
}

/* Individual testimonial cards — all stacked in same cell so the track
   reserves height for the tallest testimonial; only .active is visible. */
.csuite-item {
    grid-area: stack;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    background: var(--white);
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(32px) scale(0.98);
    filter: blur(6px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0s linear 0.55s;
}
.csuite-item.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    filter: blur(0);
    /* slight delay so the outgoing card finishes fading first */
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
                filter 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
                visibility 0s linear 0s;
}

/* Staggered reveal for inner content of the active testimonial */
.csuite-item .csuite-quote-mark,
.csuite-item .csuite-text,
.csuite-item .csuite-author {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.csuite-item.active .csuite-quote-mark {
    opacity: 1;
    transform: none;
    transition-delay: 0.22s;
}
.csuite-item.active .csuite-text {
    opacity: 1;
    transform: none;
    transition-delay: 0.32s;
}
.csuite-item.active .csuite-author {
    opacity: 1;
    transform: none;
    transition-delay: 0.42s;
}

@media (prefers-reduced-motion: reduce) {
    .csuite-item,
    .csuite-item.active,
    .csuite-item .csuite-quote-mark,
    .csuite-item .csuite-text,
    .csuite-item .csuite-author {
        transition-duration: 0.2s;
        transition-delay: 0s;
        filter: none;
        transform: none;
    }
}

.csuite-quote-mark {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4.5rem;
    line-height: 0.7;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    user-select: none;
}

.csuite-text {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text);
    line-height: var(--leading-relaxed);
    flex: 1;
}

.csuite-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.csuite-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border);
}
.csuite-name {
    font-size: var(--text-base);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 3px;
}
.csuite-role {
    font-size: var(--text-xs);
    color: var(--muted);
    font-weight: 500;
}

/* Sidebar dash indicators */
.csuite-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.csuite-nav-dot {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 2px;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 0;
    transition: background var(--ease), width var(--ease);
}
.csuite-nav-dot.active {
    background: var(--white);
    width: 40px;
}
.csuite-nav-dot:hover:not(.active) { background: rgba(255,255,255,0.72); }

/* Responsive */
@media (max-width: 1100px) {
    .csuite-body {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 18px;
        padding-left: 0;
        padding-right: 0;
        max-width: 580px;
        margin-left: auto;
        margin-right: auto;
    }
    .csuite-reel {
        min-height: 0;
        aspect-ratio: 16 / 10;
        width: 100%;
    }
    .csuite-slider-wrap {
        flex-direction: column;
        align-items: stretch;
        padding: 28px;
        gap: 22px;
        width: 100%;
    }
    /* Grid stacking reserves the tallest testimonial's height so the card
       stays a fixed size as the slider cycles. Content hugs the top — the
       leftover whitespace falls below it instead of forcing the card to grow. */
    .csuite-track { width: 100%; }
    .csuite-item {
        justify-content: flex-start;
        gap: 18px;
        padding: 26px 24px;
    }
    /* Inline the quote mark with the testimonial body — saves a row of height
       and reads as a drop-cap rather than a standalone glyph. */
    .csuite-quote-mark { display: none; }
    .csuite-text::before {
        content: "\201C";
        float: left;
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 3.2rem;
        line-height: 0.72;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        font-weight: 700;
        margin: 4px 12px 0 0;
    }
    .csuite-nav {
        flex-direction: row;
        justify-content: center;
    }
}
@media (max-width: 600px) {
    .csuite-header { flex-direction: column; align-items: center; }
    .csuite-body { gap: 14px; }
    .csuite-reel { border-radius: 16px; }
    .csuite-slider-wrap { padding: 22px 18px; gap: 18px; border-radius: 16px; }
    .csuite-item { padding: 22px 18px; gap: 14px; border-radius: 16px; }
    .csuite-text { font-size: var(--text-sm); }
    .csuite-text::before {
        font-size: 2.6rem;
        margin: 2px 10px 0 0;
    }
    .csuite-name { font-size: var(--text-sm); }
}

/* ================================================================
   FAQ
================================================================ */
.faq-section { background: var(--light); }

.faq-inner {
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.faq-hd {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--text);
    line-height: var(--leading-tight);
}



.faq-subtitle {
    font-size: var(--text-base);
    color: var(--muted);
    max-width: 672px;
}

.faq-accordion {
    background: var(--white);
    width: 100%;
    border-radius: 8px;
}

.faq-item {
    position: relative;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    margin-top: -1px;
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
    border-radius: 8px 8px 0 0;
    margin-top: 0;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border);
    border-radius: 0 0 8px 8px;
}

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
}

.faq-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

.faq-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.2s ease;
}

.faq-btn[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-panel-inner {
    padding: 0 16px 16px;
    font-size: var(--text-sm);
    color: var(--muted);
}

.faq-foot {
    font-size: var(--text-sm);
    color: var(--muted);
}

.faq-foot-link {
    color: var(--accent);
}

.faq-foot-link:hover { text-decoration: underline; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: var(--section-pad-y) 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-container {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-brand img { filter: brightness(0) invert(1); height: 40px; width: auto; max-width: 100%; object-fit: contain; align-self: flex-start; }
.footer-brand p { font-size: var(--text-sm); color: rgba(255,255,255,0.25); margin: 0; }

.footer-links h4,
.footer-contact h4 {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a,
.footer-contact a {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
    transition: color var(--ease);
}
.footer-links a:hover,
.footer-contact a:hover { color: #FF6B2B; }
.footer-contact p { margin-bottom: 10px; font-size: var(--text-sm); }


@media (max-width: 768px) {
    .footer-container { flex-direction: column; gap: 32px; }
}

/* ── Stats / By the Numbers ─────────────────────────────────── */
.stats-section {
    background: #fff;
    color: #000;
    padding: var(--section-pad-y) 24px;
}
.stats-frame {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.stats-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 0 40px;
    align-items: start;
}
.stats-top-left {}
.stats-heading {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: #000;
    line-height: var(--leading-tight);
    margin: 0;
}
.stats-heading em {
    font-style: italic;
    color: rgba(0,0,0,0.6);
}
.stats-top-right {
    display: flex;
    align-items: center;
    height: 100%;
}
.stats-tagline {
    font-size: var(--text-base);
    color: rgba(0, 0, 0, 0.5);
    line-height: var(--leading-relaxed);
    margin: 0;
}
.stats-rule {
    height: 1px;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transform: scaleX(0.6);
    transform-origin: center;
    transition: opacity 0.7s ease 0.05s, transform 0.9s ease 0.05s;
}
.stats-section.is-revealed .stats-rule {
    opacity: 1;
    transform: scaleX(1);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.stats-section.is-revealed .stats-grid {
    opacity: 1;
    transform: translateY(0);
}
.stats-col {
    padding: 56px 24px 64px;
    border-left: 1px solid rgba(0,0,0,0.15);
    min-width: 0;
}
.stats-col:first-child {
    border-left: none;
}
.stats-number {
    font-size: clamp(1.875rem, 4.6vw, 4.25rem);
    font-weight: 500;
    color: #000;
    line-height: 1;
    margin-bottom: 20px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #000;
    background-clip: unset;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
    white-space: nowrap;
}
.stats-label {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: var(--tracking-eyebrow);
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    margin: 0;
}
@media (max-width: 900px) {
    .stats-top { grid-template-columns: 1fr; gap: 24px; }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stats-col { padding: 40px 32px; }
    .stats-col:nth-child(odd) { border-left: none; }
    .stats-col:nth-child(even) { border-left: 1px solid rgba(0,0,0,0.15); }
}
@media (max-width: 540px) {
    .stats-top { padding: 32px 0 24px; }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stats-col { padding: 32px 20px; }
}

/* ── DIFFERENT BY DESIGN ─────────────────────────────────────── */
.diff-section {
    background: #000;
}

/* Text Reveal */
.text-reveal-wrapper {
    position: relative;
    height: 200vh;
    z-index: 0;
}
.text-reveal-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
}
.diff-main-heading {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: #fff;
    line-height: var(--leading-snug);
    margin: 0 0 32px;
    padding: 2rem 0;
}
.tr-word {
    position: relative;
    display: inline-block;
    margin: 0 0.22em 0.1em 0;
}
.tr-word__ghost {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
    color: #fff;
    pointer-events: none;
    white-space: nowrap;
}
.tr-word__reveal {
    display: inline-block;
    color: #fff;
    opacity: 0;
    white-space: nowrap;
}

.diff-row-wrapper .container,
.diff-heading-wrapper .container {
    width: 100%;
}
.diff-row {
    display: flex;
    align-items: center;
    gap: 80px;
}
.diff-row--reverse {
    flex-direction: row-reverse;
}
.diff-text {
    flex: 0 0 52%;
}
.diff-card-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: #fff;
    line-height: var(--leading-tight);
    margin: 0 0 32px;
}
.diff-card-desc {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.75);
    line-height: var(--leading-relaxed);
    margin: 0;
}
.diff-card-desc .tr-word__reveal {
    color: rgba(255, 255, 255, 0.75);
}
.diff-images {
    flex: 1;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
}
.diff-row--reverse .diff-images {
    justify-content: flex-start;
}
.diff-img {
    width: 80%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: 24px 0 24px 0;
}
@media (max-width: 900px) {
    .diff-row-wrapper,
    .diff-heading-wrapper { height: auto; }
    .diff-row-sticky,
    .diff-heading-sticky {
        position: static;
        height: auto;
        min-height: auto;
        padding: 56px 0;
    }
    .diff-row,
    .diff-row--reverse {
        flex-direction: column;
        gap: 40px;
    }
    .diff-text { flex: none; width: 100%; }
    .diff-images { width: 100%; }
}


/* ================================================================
   ARC FOCUS CAROUSEL
================================================================ */
.arc-section {
    background: var(--light);
    padding-bottom: var(--section-pad-y);
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
}
.arc-header {
    text-align: center;
    margin-bottom: 12px;
    padding: 0 24px;
}

/* ── Carousel container ────────────────────────────────────── */
.arc-carousel {
    position: relative;
    width: 100%;
    user-select: none;
    -webkit-user-select: none;
}

/* ── Card track (the arc area) ─────────────────────────────── */
.arc-track {
    position: relative;
    width: 100%;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: grab;
}
.arc-track:active { cursor: grabbing; }

/* ── Individual cards ──────────────────────────────────────── */
.arc-card {
    position: absolute;
    width: 280px;
    height: 370px;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: box-shadow 0.3s ease;
}
.arc-card:hover {
    box-shadow: 0 14px 56px rgba(0,0,0,0.18);
}
.arc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

/* ── Content area ──────────────────────────────────────────── */
.arc-content {
    text-align: center;
    padding: 0 24px;
    margin-top: -20px;
    position: relative;
    z-index: 20;
}

/* Nav row: arrows + title */
.arc-nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 12px;
}

/* Arrows */
.arc-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}
.arc-arrow:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(234,34,93,0.06);
    transform: scale(1.08);
}

/* Title wrapper — stacks titles, only active is visible */
.arc-title-wrap {
    position: relative;
    height: 52px;
    min-width: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.arc-title {
    position: absolute;
    white-space: nowrap;
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--text);
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}
.arc-title.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Subtitle */
.arc-subtitle {
    font-size: var(--text-base);
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 24px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    width: 100%;
    padding: 0 24px;
    text-align: center;
}
.arc-subtitle.active {
    position: relative;
    left: auto;
    transform: translateX(0) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* CTA button */
.arc-cta {
    display: none;
    margin: 0 auto;
    padding: 12px 32px;
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    font-size: var(--text-base);
    border-radius: 100px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}
.arc-cta.active {
    display: inline-block;
}
.arc-cta:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

/* ── Pagination dots ───────────────────────────────────────── */
.arc-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    padding-bottom: 12px;
}
.arc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.arc-dot.active {
    background: var(--dark);
    width: 28px;
    border-radius: 100px;
}
.arc-dot:hover:not(.active) {
    background: #aaa;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1200px) {
    .arc-track { height: 500px; }
    .arc-card  { width: 240px; height: 320px; }
}
@media (max-width: 900px) {
    .arc-track { height: 420px; }
    .arc-card  { width: 200px; height: 260px; border-radius: 18px; }
    .arc-title { font-size: var(--text-2xl); }
    .arc-subtitle { max-width: 480px; font-size: var(--text-base); }
}
@media (max-width: 600px) {
    .arc-section { padding-top: var(--section-pad-y); padding-bottom: var(--section-pad-y); }
    .arc-track { height: 340px; }
    .arc-card  { width: 150px; height: 200px; border-radius: 16px; }
    .arc-arrow { width: 36px; height: 36px; }
    .arc-arrow svg { width: 16px; height: 16px; }
    .arc-title-wrap { min-width: 260px; height: 44px; }
    .arc-subtitle { max-width: 360px; font-size: var(--text-base); }
    .arc-cta { padding: 10px 24px; font-size: var(--text-base); }
    .arc-nav-row { gap: 12px; }
}
