/* =========================================
   DESIGN SYSTEM: Scientific Luxury (Editorial)
   ========================================= */
:root {
    /* Color Palette - User Refined v2 */
    --color-bg-base: #FAFAF9;
    /* Alabaster / High-End Paper */
    --color-text-main: #1A1A1A;
    /* Deep Charcoal */
    --color-text-muted: #555555;
    /* Soft Grey */
    --color-accent: #66023C;
    /* Tyrian Purple */
    --color-accent-light: #F7EBED;
    /* The Pink - moved to secondary/highlight */
    --color-white: #FFFFFF;

    /* Gradients & Effects */
    --glass-bg: rgba(255, 254, 250, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --color-card-warm: #FFFEFA;
    --color-rose-gold: #D4A373;
    --shadow-soft: 0 10px 40px -10px rgba(102, 2, 60, 0.08);
    /* Tinted shadow */
    --shadow-hover: 0 20px 50px -12px rgba(102, 2, 60, 0.15);

    /* Typography - User's Current Fonts */
    --font-heading: 'Instrument Serif', serif;
    --font-body: 'Newsreader', serif;

    /* Spacing */
    --container-width: 1200px;
    --section-spacing: 6rem;
    /* Tighter spacing */
}

/* =========================================
   ANIMATION HOOKS
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.editorial-italic {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
}

/* =========================================
   ACCESSIBILITY: Reduced Motion
   ========================================= */
@media (prefers-reduced-motion: reduce) {

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

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

    .marquee-content {
        animation: none;
    }

    .hero-text-bg {
        animation: none;
    }
}

/* Skip Link for Keyboard Navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-accent);
    color: white;
    padding: 8px 16px;
    z-index: 100000;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 0 0 4px 0;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg-base);
    /* Subtle 'Spotlight' Gradient Effect */
    background-image: radial-gradient(circle at 50% 30%, #FFFEFA 10%, #F0E6EA 80%);
    background-attachment: fixed;
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Texture Overlay - Grain/Noise */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Simulating noise */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.055;
    /* Extra luxury grain texture - stronger for ultra-luxe sophistication */
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
}

/* HQ Cloud & Star Overlay */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/pink-cloud-soft.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    /* Extremely subtle - barely noticeable */
    pointer-events: none;
    z-index: -1;
    mix-blend-mode: multiply;
    /* Subtle blending into background */
}

/* Vignette Overlay - Darkened edges for premium depth */
html::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.12) 100%);
    z-index: 9997;
}

/* =========================================
   NAVIGATION BAR
   ========================================= */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 0;
    background: rgba(250, 250, 249, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.main-nav.scrolled {
    background: rgba(250, 250, 249, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-text-main);
    text-decoration: none;
    letter-spacing: -0.02em;
    font-style: italic;
    /* Editorial luxe feel */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--color-accent);
    color: #fff !important;
    padding: 0.6rem 1.25rem;
    border-radius: 2px;
    font-weight: 500;
}

.nav-cta:hover {
    background: #4a012c;
}

/* Hamburger Menu Button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 10001;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text-main);
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(250, 250, 249, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 10000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        display: block !important;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .nav-cta {
        margin-top: 1rem;
    }

    /* Overlay when menu is open */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
    }
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

/* Premium body text readability */
p,
li {
    line-height: 1.8;
}

/* Label/tag letter-spacing for elegance */
.proof-label,
.founder-label,
.stat-label,
.cs-label,
.service-tag,
.case-tag {
    letter-spacing: 0.05em;
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.text-accent {
    color: var(--color-accent);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0 4rem 0;
    /* Extra top padding for fixed nav */
    position: relative;
}

/* Hero Label - subtle tagline above headline */
.hero-label {
    display: block;
    font-family: var(--font-body);
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-label.reveal.active {
    transform: translateY(0) scale(0.65);
}

.hero-label.reveal {
    transform: translateY(30px) scale(0.65);
}

/* The "Cloud" behind text for readability */
.hero-text-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.7) 55%, rgba(255, 255, 255, 0) 80%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    animation: breathingGlow 8s ease-in-out infinite;
}

@keyframes breathingGlow {

    0%,
    100% {
        transform: translate(-50%, -55%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -55%) scale(1.1);
        opacity: 1;
    }
}


.hero .container {
    position: relative;
    z-index: 2;
    /* Sit on top of the cloud glow */
}

.hero h1 {
    font-size: 5.5rem;
    /* Slightly larger for drama */
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    z-index: 2;
    line-height: 1.1;
}

/* ... existing hero p ... */
.hero p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    z-index: 2;
    position: relative;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 4px 15px rgba(102, 2, 60, 0.25);
    z-index: 2;
    position: relative;
    border-radius: 2px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 30px rgba(102, 2, 60, 0.3),
        0 0 20px rgba(102, 2, 60, 0.15);
}

/* Text Accent in Hero */
.hero h1 .text-accent {
    font-weight: 700;
    /* Bold again */
    color: var(--color-accent);
    /* Ensure it's Crimson */
    font-family: var(--font-heading);
    /* Ensure it keeps the serif font */
}

/* HERO GHOSTS - Mockup Layout (Panoramic Spread) */
/* Emails removed as per feedback */

/* Subtle float animation */
@keyframes softFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* =========================================
   SECTION 2: PROOF BAR (MARQUEE)
   ========================================= */
.proof-bar {
    padding: 1.5rem 0 3rem 0;
    /* Tighter - closer to hero */
    border-top: none;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.proof-label {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    /* Extra wide for luxe feel */
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-weight: 500;
}

.marquee {
    display: flex;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    contain: layout style paint;
}

.marquee-content {
    display: flex;
    gap: 6rem;
    padding-right: 6rem;
    animation: scroll-left-to-right 40s linear infinite;
    flex-shrink: 0;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: rgba(26, 26, 26, 0.15);
    /* Light grey for "Scientific Luxury" base */
    text-transform: uppercase;
    white-space: nowrap;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    user-select: none;
}

.marquee-content span:hover {
    color: var(--color-accent);
    transform: scale(1.1);
    opacity: 1;
}

@keyframes scroll-left-to-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* Pause on hover */
.marquee:hover .marquee-content {
    animation-play-state: paused;
}

/* ... existing sections ... */
/* =========================================
   THE CONTOURED METHOD: UNIFIED SECTION
   ========================================= */
.method-section {
    padding: var(--section-spacing) 0;
}

.method-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.method-subhead {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--color-accent);
    margin: 0 0 1rem;
    display: block;
}

.method-intro {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

.method-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    margin: 4rem 0;
}

.bbb-section,
.ddd-section {
    padding: 0;
    /* Remove internal padding as they are now combined */
    position: relative;
}

.bbb-section {
    margin-bottom: 2rem;
}

.ddd-section {
    margin-top: 2rem;
}

.bbb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bbb-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 3.5rem;
    border-radius: 2px;
    /* Sharper for luxury */
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(102, 2, 60, 0.03);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.bbb-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px -12px rgba(102, 2, 60, 0.15),
        0 0 30px rgba(102, 2, 60, 0.08);
}

/* Industries / "Pills" Section */
.industry-pill {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    /* Pill shape */
    font-size: 0.9rem;
    color: var(--color-text-main);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    cursor: default;
    /* "Fake button" */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.industry-pill:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 8px 15px rgba(102, 2, 60, 0.1);
}

/* Footnote & Tooltip Styles */
.footnote-marker {
    cursor: pointer;
    color: var(--color-accent);
    font-size: 0.8em;
    vertical-align: super;
    position: relative;
    padding: 0 2px;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.footnote-marker:hover {
    opacity: 0.7;
}

.footnote-box {
    display: none;
    position: absolute;
    bottom: 160%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    /* Slightly translucent for premium look */
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    font-size: 0.7rem;
    color: var(--color-text-main);
    width: max-content;
    max-width: 220px;
    z-index: 1001;
    text-align: left;
    white-space: normal;
    text-transform: none;
    /* Reset uppercase inheritance */
    letter-spacing: normal;
    /* Reset tracking inheritance */
    line-height: 1.4;
    font-family: var(--font-body);
    font-weight: 400;
    pointer-events: none;
}

.footnote-box::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.9) transparent transparent transparent;
}

.footnote-marker.active .footnote-box {
    display: block;
    animation: fadeInScale 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* The Watermark Number */
.bbb-number {
    position: absolute;
    top: -1rem;
    /* Slightly adjusted */
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 8rem;
    /* Increased size for better impact */
    color: rgba(102, 2, 60, 0.03);
    /* Faint accent fill */
    -webkit-text-stroke: 1px var(--color-accent);
    /* Subtle on-brand border */
    z-index: 0;
    pointer-events: none;
}

.bbb-content {
    position: relative;
    z-index: 1;
}

.bbb-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-accent-light);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.bbb-stat-wrapper {
    margin-bottom: 1.5rem;
}

.bbb-stat {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-accent);
    line-height: 1;
    display: block;
}

.bbb-stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.bbb-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.bbb-highlight {
    font-weight: 600;
    color: var(--color-text-main);
}


/* =========================================
   REFINED HERO GRID SECTION (2x3 Layout)
   ========================================= */
.hero-grid-section {
    padding: var(--section-spacing) 0;
}


/* =========================================
   TESTIMONIALS SECTION: PAPER SHEETS
   ========================================= */
.testimonials-section {
    padding: var(--section-spacing) 0;
    overflow: hidden;
    position: relative;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    padding: 3rem 0;
}

.paper-card {
    background: #fff;
    padding: 3.5rem;
    max-width: 420px;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04), 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Create the "cut" corner using clip-path */
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
}

/* Scattering rotations */
.paper-card:nth-child(1) {
    transform: rotate(-2deg);
}

.paper-card:nth-child(2) {
    transform: rotate(1.5deg);
    margin-top: 1rem;
}

.paper-card:nth-child(3) {
    transform: rotate(-1.5deg);
    margin-top: -1rem;
}

.paper-card:nth-child(4) {
    transform: rotate(2deg);
}

.paper-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

/* Dog-ear Fold Corner */
.paper-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, transparent 50%, #f0ede7 50%);
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.testimonial-quote {
    font-family: 'Instrument Serif', serif;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: auto;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eee;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text);
}

.author-title {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .testimonial-grid {
        gap: 2.5rem;
        padding: 1rem;
    }

    .paper-card {
        transform: rotate(0deg) !important;
        margin-top: 0 !important;
        padding: 2.5rem;
    }
}


/* =========================================
   REFINED HERO GRID SECTION (2x3 Layout)
   ========================================= */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    /* Forces all cards in rows to match the tallest content's height */
    gap: 2rem;
    align-items: stretch;
}

.hero-grid-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    /* Spacious padding */
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
}

.hero-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.hero-grid-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 1rem;
}

.hero-grid-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.hero-grid-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: 700;
}

/* Responsive Grid Scaling */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero-grid-card {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        /* Allow height to fit content on mobile */
    }

    .hero-grid-card {
        padding: 2.5rem;
    }
}

/* =========================================
   FOUNDER SECTION: OVERHAUL
   ========================================= */
.about-section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image-container img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    display: block;
}

/* Decorative frame behind image */
.about-image-container::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--color-accent);
    border-left: 2px solid var(--color-accent);
    z-index: -1;
    opacity: 0.3;
}

.founder-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    display: block;
}

.founder-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.founder-bio {
    margin-bottom: 2.5rem;
}

.founder-bio-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.founder-bio-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.founder-bio-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.founder-vision {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-main);
    border-left: 3px solid var(--color-accent-light);
    padding-left: 1.5rem;
    margin-top: 2.5rem;
    line-height: 1.6;
}

/* Founder Stat Grid */
.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

@media (max-width: 1024px) {
    .about-grid {
        gap: 3rem;
    }

    .founder-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-image-container {
        max-width: 400px;
        margin: 0 auto 3rem;
    }

    .founder-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .founder-title {
        font-size: 2.5rem;
    }
}

/* =========================================
   RESULTS SECTION: SCIENTIFIC PROOF
   ========================================= */
.results-section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.result-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    padding: 3.5rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 2px solid var(--color-accent);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px -15px rgba(102, 2, 60, 0.1);
}

.result-stat {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.result-metric {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    display: block;
}

.result-text {
    font-size: 1.1rem;
    color: var(--color-text-main);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* Stylized proof graph background */
.result-proof-bg {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 60%;
    height: 100px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
    filter: grayscale(1) contrast(1.2);
    transition: all 0.8s ease;
}

.result-card:hover .result-proof-bg {
    opacity: 0.15;
    transform: scale(1.1) translateX(-10px);
    filter: grayscale(0) contrast(1);
}

.result-proof-bg svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .result-stat {
        font-size: 4rem;
    }

    .result-card {
        padding: 2.5rem;
    }
}

/* =========================================
   RECOVERY BLOCK: SECTIONS 3, 5, 6
   ========================================= */

/* --- SECTION 3: ANCHOR (Phone + Glass) --- */
.anchor-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.anchor-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
    /* Align top so phone is closer to header */
    padding-top: 2rem;
}

.anchor-visual {
    position: relative;
    /* Removed fixed height to let video dictate size or fit naturally */
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.anchor-phone-frame {
    position: relative;
    z-index: 2;
    width: 320px;
    transform: rotate(-2deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease;
}

.anchor-phone-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.anchor-card-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 80%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 2px;
    z-index: 1;
}

.anchor-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.anchor-content p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

/* Editorial Subhead Style */
.editorial-subhead {
    font-family: var(--font-heading);
    font-size: 1rem;
    /* Slightly smaller than header */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-main);
    font-weight: 700;
    /* Bold as requested */
    margin-bottom: 0.5rem;
}

/* Small Case Study Button */
.case-study-btn-xs {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    color: var(--color-text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

/* Button flashes purple on hover */
.case-study-btn-xs:hover {
    background: var(--color-accent);
    /* Tyrian Purple */
    color: #fff;
    border-color: var(--color-accent);
    transform: translateX(2px);
}

.anchor-case-studies {
    display: flex;
    justify-content: flex-start;
    gap: 4rem;
    margin-bottom: 3rem;
}

.anchor-case-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-left .testimonial-title {
    font-size: 5.5rem;
    /* Increased to 5.5rem as requested */
    font-family: var(--font-heading);
    font-weight: 400;
    /* Unbolded for luxe look */
    color: var(--color-text-main);
    line-height: 1.1;
    margin-bottom: 3rem;
    text-align: left;
}

.anchor-case-link .brand-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    /* Increased size as requested */
    font-style: italic;
    color: var(--color-text-main);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.anchor-case-link .stat-value {
    font-size: 1.1rem;
    /* Slightly bigger */
    margin-bottom: 0.75rem;
    display: block;
}

/* Hover: Brand Name turns Purple */
.anchor-case-link:hover .brand-name {
    color: var(--color-accent);
}

/* --- SECTION 5: SERVICES (Compact 3-Col) --- */
.services-section {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 1.75rem;
    border-radius: 4px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    min-height: 220px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px -12px rgba(102, 2, 60, 0.15),
        0 0 25px rgba(102, 2, 60, 0.06);
    border-color: rgba(102, 2, 60, 0.15);
}

.service-header {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-family: var(--font-heading);
    color: var(--color-text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-icon {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-accent);
    opacity: 0.6;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
    min-height: auto;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.service-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
    cursor: default;
    white-space: nowrap;
}

.service-tag:hover {
    background: #fff;
    color: var(--color-accent);
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.service-card:hover .service-tag {
    border-color: rgba(102, 2, 60, 0.15);
}

/* --- SECTION 6: TESTIMONIALS (Split Layout) --- */
.testimonials-section {
    padding: 5rem 0;
    overflow: hidden;
}

.testimonial-left-col {
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.testimonial-header .nav-btn {
    width: 50px;
    height: 50px;
}

.testimonial-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.testimonial-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.testimonial-email-img {
    position: relative;
    z-index: 2;
    width: 320px;
    transform: rotate(2deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease;
}

.testimonial-email-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.testimonial-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text-main);
}

/* Specific Style for Next Button as requested */
.nav-btn.next-btn {
    background: var(--color-accent);
    /* Perpetual Purple */
    border-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(102, 2, 60, 0.3);
}

.nav-btn:hover {
    transform: scale(1.05);
}

/* Hover for Next Button */
.nav-btn.next-btn:hover,
.nav-btn.next-btn:active {
    box-shadow: 0 8px 25px rgba(102, 2, 60, 0.4);
    border-color: var(--color-accent);
}

.testimonial-card-glass {
    background: var(--color-card-warm, rgba(255, 254, 250, 0.8));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 2px;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Sophisticated hover on card */
.testimonial-card-glass:hover {
    transform: translateY(-6px);
    box-shadow:
        0 25px 50px rgba(102, 2, 60, 0.1),
        0 0 30px rgba(102, 2, 60, 0.05);
    border-color: rgba(102, 2, 60, 0.1);
}

.quote-icon {
    font-size: 2rem;
    color: var(--color-accent);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.t-quote {
    font-size: 1.5rem;
    line-height: 1.5;
    font-family: var(--font-heading);
    color: var(--color-text-main);
    margin-bottom: 2.5rem;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.t-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-text-main);
}

.t-role {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {

    .anchor-grid,
    .services-grid,
    .testimonial-split {
        grid-template-columns: 1fr;
    }

    .testimonial-visual {
        order: -1;
    }

    .testimonial-email-img {
        width: 200px;
    }

    .testimonial-header .nav-btn {
        width: 50px;
        height: 50px;
    }

    .anchor-visual {
        height: 500px;
    }

    .anchor-phone-frame {
        width: 280px;
    }

    .testimonial-left,
    .testimonial-title {
        text-align: center;
        align-items: center;
    }

    .testimonial-nav {
        justify-content: center;
    }
}

/* --- SECTION 7: SYSTEMS (Opal Replica - Light Theme) --- */
.systems-section {
    background-color: transparent;
    /* Transparent to show Body Gradient */
    color: var(--color-text-main);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.systems-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Global Section Title (Optional, keeping as wrapper) */
.systems-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #333333;
    /* Charcoal Grey */
}

.systems-title em {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-accent);
}

.systems-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
}

/* --- TABS NAVIGATION (Text Only) --- */
.systems-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 1rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.sys-tab-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    /* Grey inactive */
    font-size: 1.1rem;
    cursor: pointer;
    padding-bottom: 1rem;
    position: relative;
    transition: color 0.3s ease;
    font-family: var(--font-body);
    font-weight: 500;
}

.sys-tab-btn:hover {
    color: var(--color-text-main);
}

.sys-tab-btn.active {
    color: var(--color-accent);
    /* Purple Active */
    font-weight: 600;
}

/* Active indicator line */
.sys-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
}

/* --- TAB CONTENT & HEADERS --- */
.sys-tab-content {
    display: none;
    animation: fadeIn 0.4s ease forwards;
    max-width: 1400px;
    margin: 0 auto;
}

.sys-tab-content.active {
    display: block;
}

/* Internal Header for each Tab (Title + Subtitle) */
.sys-content-header {
    text-align: center;
    /* Centered above grid */
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.sys-internal-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.sys-internal-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    max-width: 600px;
    margin: 0 auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- CARD GRID --- */
.sys-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .sys-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sys-card-grid {
        grid-template-columns: 1fr;
    }
}

.sys-card {
    position: relative;
    background: transparent;
    /* No background needed if full image */
    border-radius: 12px;
    overflow: hidden;
    /* aspect-ratio: 4/5; */
    aspect-ratio: 9/16;
    /* TALLER CARDS as requested */
    transition: transform 0.3s ease;
    cursor: zoom-in;
    /* Indicate clickable */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for definition */
}

.sys-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 20px rgba(102, 2, 60, 0.08);
}

.sys-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Show TOP of email */
    display: block;
    /* Full opacity images as requested */
}

/* --- LIGHTBOX CSS --- */
.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* Enable scroll if image is long */
    background-color: rgba(0, 0, 0, 0.85);
    /* Dark overlay */
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 50%;
    max-width: 450px;
    margin-top: 80px;
    margin-bottom: 80px;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Lightbox */
@media only screen and (max-width: 700px) {
    .lightbox-content {
        width: 95%;
    }
}

/* --- RESULTS / CASE STUDIES SECTION --- */
.results-section {
    padding: 5rem 0;
    background-color: transparent;
    color: var(--color-text-main);
    overflow: hidden;
}

.results-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.results-slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.results-track {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.results-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(20px);
}

.results-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0);
}

.case-study-card {
    display: flex;
    background: var(--color-card-warm, #FFFEFA);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px -12px rgba(102, 2, 60, 0.1),
        0 0 30px rgba(102, 2, 60, 0.05);
}

.case-info {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-accent-light);
    color: var(--color-text-main);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.case-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.case-desc {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.case-stats-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.case-stat-item {
    display: flex;
    flex-direction: column;
}

.cs-val {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.cs-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.case-visual {
    flex: 1;
    background-color: #f9f9f9;
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.case-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.case-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #555;
}

.img-content {
    text-align: center;
}

.img-big-stat {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-top: 0.5rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.slider-nav:hover {
    background: var(--color-text-main);
    color: #fff;
    border-color: var(--color-text-main);
}

.slider-nav.prev {
    left: -70px;
}

.slider-nav.next {
    right: -70px;
}

@media (max-width: 900px) {
    .case-study-card {
        flex-direction: column-reverse;
    }

    .case-visual {
        min-height: 250px;
    }

    .case-info {
        padding: 2.5rem;
    }

    .slider-nav {
        display: none;
    }

    .results-slider-wrapper {
        padding-bottom: 2rem;
    }
}

/* --- SUPER CTA SECTION (Light Brand Theme) --- */
.super-cta-section {
    position: relative;
    padding: 5rem 0 6rem 0;
    background-color: transparent;
    /* Transparent to match site gradient */
    color: var(--color-text-main);
    /* Dark text */
    overflow: hidden;
    text-align: center;
}

.cta-background-glow {
    display: none;
    /* Removed to ensure color consistency with rest of site */
}

.relative-z {
    position: relative;
    z-index: 2;
}

.cta-content-wrapper {
    max-width: 800px;
    margin: 0 auto 6rem auto;
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
    /* Dark charcoal */
}

.cta-highlight {
    color: var(--color-accent);
    /* Tyrian Purple */
    font-weight: 500;
    font-style: italic;
}

.cta-subheadline {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    /* Soft grey */
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: #fff;
    border-radius: 2px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(102, 2, 60, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 30px rgba(102, 2, 60, 0.3),
        0 0 20px rgba(102, 2, 60, 0.15);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-text-main);
    border-radius: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.cta-visual-row {
    margin-top: 2rem;
    transform: rotate(-3deg) translateZ(0);
    width: 120%;
    margin-left: -10%;
    display: flex;
    justify-content: center;
    opacity: 0.9;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    contain: layout style paint;
    isolation: isolate;
    content-visibility: auto;
    contain-intrinsic-size: auto 520px;
}

/* Email marquee in systems section - no rotation */
.systems-marquee {
    margin-top: 3rem;
    transform: none;
}

.cta-track {
    display: flex;
    gap: 1.5rem;
    animation: marqueeFloat 40s linear infinite;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@keyframes marqueeFloat {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.cta-img-card {
    width: 180px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    cursor: pointer;
    transform: translateZ(0);
}

.cta-img-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow:
        0 25px 50px rgba(102, 2, 60, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Pause marquee on hover so user can look at emails */
.cta-track:hover {
    animation-play-state: paused;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.cta-img-card:hover .cta-img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .cta-headline {
        font-size: 2.5rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-visual-row {
        width: 150%;
        margin-left: -25%;
    }

    .cta-img-card {
        width: 140px;
        height: 400px;
    }
}

/* --- CASCADE LAYOUT (Dark Box Cards like Cascade reference) --- */
.cascade-section {
    background-color: transparent;
    color: var(--color-text-main);
    padding: 5rem 0;
    font-family: var(--font-body);
}

#process-ddd {
    padding-top: 1.5rem;
}

.cascade-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header Card for BBB/DDD section titles */
.cascade-header-card {
    position: relative;
    background: var(--color-card-warm, #FFFEFA);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    text-align: center;
    margin-bottom: 1rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--color-accent);
    border-right: 3px solid var(--color-accent);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.cascade-header-card:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.cascade-header-card .section-title {
    margin-bottom: 0.75rem;
}

.cascade-header-card .section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.cascade-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.cascade-section-header .section-title {
    color: var(--color-text-main);
    /* Dark charcoal */
    margin-bottom: 1rem;
}

.cascade-section-header .section-subtitle {
    color: var(--color-text-muted);
    /* Soft grey */
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Row Structure - Dark card box */
.cascade-row {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    background: var(--color-card-warm, #FFFEFA);
    /* Warmer white card */
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--color-accent);
    /* Tyrian Purple left border */
    border-radius: 8px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-soft);
}

.cascade-row:hover {
    background: #fff;
    transform: translateY(-6px);
    box-shadow:
        0 20px 50px -12px rgba(102, 2, 60, 0.12),
        0 0 30px rgba(102, 2, 60, 0.05);
}

/* Timeline Column (Left) */
.cascade-timeline-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.cascade-number {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-accent);
    /* Tyrian Purple */
    font-weight: 400;
}

.cascade-line {
    display: none;
    /* Hide the line, we're using box layout */
}

/* Main Content (Right) */
.cascade-main {
    flex: 1;
}

.cascade-header-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.cascade-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text-main);
    /* Dark charcoal */
    line-height: 1.2;
    font-weight: 400;
}

/* Cascade stat box styles moved to BBB/DDD Redesign section */

.cascade-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    /* Soft grey text */
    line-height: 1.6;
}

.cascade-body p {
    margin: 0;
}

.text-accent {
    color: var(--color-accent);
    /* Tyrian Purple accent */
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .cascade-row {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .cascade-timeline-col {
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        justify-content: flex-start;
    }

    .cascade-header-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .cascade-stat-box {
        text-align: center;
        transform: none;
        margin-top: 1rem;
    }

    .cascade-body {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cascade-header-card {
        padding: 1.25rem 1.5rem;
    }
}

/* =========================================
   ENHANCED VISUAL POLISH
   ========================================= */

/* Luxe Stats Styling */
.stat-number,
.cascade-stat,
.cs-val,
.bbb-stat {
    color: var(--color-accent);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Luxe stat styling - see BBB/DDD redesign section for hover effects */

/* Link Underline Animation */
.btn-text,
.case-study-btn-xs {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.btn-text::after,
.anchor-case-link .case-study-btn-xs::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.btn-text:hover::after,
.anchor-case-link:hover .case-study-btn-xs::after {
    width: 100%;
}

/* Staggered Reveal Animations */
.reveal.stagger-1 {
    transition-delay: 0.1s;
}

.reveal.stagger-2 {
    transition-delay: 0.2s;
}

.reveal.stagger-3 {
    transition-delay: 0.3s;
}

.reveal.stagger-4 {
    transition-delay: 0.4s;
}

.reveal.stagger-5 {
    transition-delay: 0.5s;
}

.reveal.stagger-6 {
    transition-delay: 0.6s;
}

/* Service cards stagger */
.service-card:nth-child(1) {
    transition-delay: 0s;
}

.service-card:nth-child(2) {
    transition-delay: 0.1s;
}

.service-card:nth-child(3) {
    transition-delay: 0.2s;
}

.service-card:nth-child(4) {
    transition-delay: 0.3s;
}

.service-card:nth-child(5) {
    transition-delay: 0.4s;
}

.service-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* Cascade rows stagger */
.cascade-row:nth-child(1) {
    transition-delay: 0s;
}

.cascade-row:nth-child(2) {
    transition-delay: 0.15s;
}

.cascade-row:nth-child(3) {
    transition-delay: 0.3s;
}

/* =========================================
   STICKY CTA BUTTON
   ========================================= */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: inline-block;
    padding: 1rem 1.5rem;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 2px;
    /* Square corners */
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(102, 2, 60, 0.35);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    box-shadow:
        0 15px 40px rgba(102, 2, 60, 0.4),
        0 0 30px rgba(102, 2, 60, 0.2);
}

.sticky-cta-btn svg {
    width: 18px;
    height: 18px;
}

/* Mobile sticky CTA adjustments */
@media (max-width: 768px) {
    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.25rem;
    }
}

/* =========================================
   CALENDLY EMBED STYLES
   ========================================= */
.calendly-inline-widget {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* =========================================
   COUNTER ANIMATION SUPPORT
   ========================================= */
.counter-animate {
    display: inline-block;
}

/* =========================================
   COMPACT ABOUT SECTION (High-End)
   ========================================= */
.about-compact {
    padding: 5rem 0;
}

.about-compact-grid {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-image-compact {
    flex-shrink: 0;
}

.about-image-compact img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(102, 2, 60, 0.12);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.about-content-compact {
    flex: 1;
}

.about-content-compact .founder-label {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.founder-title-compact {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.founder-tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.founder-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--color-text-main);
    border-left: 2px solid var(--color-accent);
    padding-left: 1rem;
    margin: 0;
}

/* Stats Bar Below Founder */
.founder-stats-bar {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item-compact {
    text-align: center;
}

.stat-item-compact .stat-number {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-item-compact .stat-label {
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .about-compact-grid {
        flex-direction: column;
        text-align: center;
    }

    .founder-quote {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid var(--color-accent);
        padding-top: 1rem;
    }

    .founder-stats-bar {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

/* =========================================
   PROCESS LIST (Anchor Section DDD)
   ========================================= */
.process-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-text-muted);
    min-width: 40px;
}

.process-number.purple {
    color: var(--color-accent);
}

.process-text h3 {
    margin-bottom: 0.25rem;
}

.process-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* =========================================
   STAT SMALL ITALIC (for anchor section)
   ========================================= */
.stat-small-italic {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    display: block;
}

/* =========================================
   SYSTEMS CONTAINER CARD
   ========================================= */
.systems-container-card {
    background: var(--color-card-warm, #FFFEFA);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-soft);
    position: relative;
}

/* White glow inside systems container */
.systems-container-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
    z-index: 0;
}

.systems-container-card>* {
    position: relative;
    z-index: 1;
}

.systems-subtitle-brand {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .systems-container-card {
        padding: 2rem 1rem;
    }
}

/* =========================================
   TALLER EMAIL CARDS
   ========================================= */
.sys-card {
    aspect-ratio: 9/20;
    /* Taller cards to show more of email */
}

/* =========================================
   BBB/DDD STAT BOX REDESIGN - Asymmetric Luxe Rectangle
   ========================================= */
.cascade-stat-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: right;
    padding: 0.6rem 1.25rem 0.6rem 1.5rem;
    background: rgba(247, 235, 237, 0.5);
    border: 1px solid rgba(102, 2, 60, 0.08);
    border-radius: 2px 16px 2px 16px;
    box-shadow: 0 4px 20px rgba(102, 2, 60, 0.06);
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    white-space: nowrap;
}

.cascade-stat {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0;
    flex-shrink: 0;
    transition: color 0.4s ease;
}

.cascade-stat-desc {
    display: block;
    font-size: 0.65rem;
    color: var(--color-text-muted);
    line-height: 1.3;
    max-width: 160px;
    text-align: left;
    white-space: normal;
    transition: color 0.4s ease;
}

/* Footnote styling inside stat box */
.cascade-stat-box .footnote-marker {
    color: var(--color-accent);
}

.cascade-stat-box .footnote-box {
    background: #fff;
    color: var(--color-text-main);
}

/* Hover state - fills with purple */
.cascade-row:hover .cascade-stat-box {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 8px 30px rgba(102, 2, 60, 0.25);
}

.cascade-row:hover .cascade-stat {
    color: #fff;
}

.cascade-row:hover .cascade-stat-desc {
    color: rgba(255, 255, 255, 0.9);
}

.cascade-row:hover .cascade-stat-box .footnote-marker {
    color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   WHITE GLOW/BLUR IN CENTER OF SECTIONS
   ========================================= */
.cascade-section,
.services-section,
.testimonials-section,
.results-section,
.systems-section,
.anchor-section {
    position: relative;
}

.cascade-section::before,
.services-section::before,
.testimonials-section::before,
.results-section::before,
.anchor-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.cascade-section>.container,
.services-section>.container,
.testimonials-section>.container,
.results-section>.container,
.anchor-section>.container {
    position: relative;
    z-index: 1;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding: 5rem 0;
    background: transparent;
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-card-warm, #FFFEFA);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-soft);
    border-color: rgba(102, 2, 60, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text-main);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

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

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
    }
}

/* =========================================
   CASCADE ACCORDION
   ========================================= */
.cascade-accordion {
    cursor: pointer;
}

.cascade-accordion .cascade-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin 0.4s ease;
    opacity: 0;
    margin-top: 0;
}

.cascade-accordion.active .cascade-body {
    max-height: 400px;
    opacity: 1;
    margin-top: 1.25rem;
}

.cascade-toggle-icon {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.cascade-accordion.active .cascade-toggle-icon {
    transform: rotate(45deg);
}

/* =========================================
   HERO SCROLL INDICATOR
   ========================================= */
.scroll-indicator {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* =========================================
   SERVICES MARQUEE SPACING
   ========================================= */
.services-section .systems-marquee {
    margin-top: 4rem;
    padding-top: 3rem;
}

.results-slider-wrapper {
    position: relative;
    overflow: visible;
}

.slider-nav {
    position: absolute;
    z-index: 50;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #fff;
    color: var(--color-text-main);
    transition: all 0.3s ease;
}

/* Positioning */
.slider-nav.prev {
    left: 16px;
}

.slider-nav.next {
    right: 16px;
}

/* Purple accent hover (matches case-study-btn-xs) */
.slider-nav:hover {
    background: var(--color-accent);
    /* Tyrian Purple */
    color: #fff;
    border-color: var(--color-accent);
    transform: translateX(2px);
}

.hero-label {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
}