/* Page-specific styles for industries/laundry-industry.html */
/* ═══════════════════════════════════════════════════════════
           EMILY OBERMAN DESIGN SYSTEM — LAUNDRY INDUSTRY PAGE
           Wit and Heart. Real Results. Confident Case Study.
           ═══════════════════════════════════════════════════════════ */

        :root {
            /* Primary Brand */
            --signal-red: #E63946;
            --warm-gold: #D4A84B;
            --deep-navy: #1D3557;

            /* Neutrals - Warm, Never Sterile */
            --cream: #FAF8F5;
            --warm-white: #FFFFFF;
            --soft-gray: #6B7280;
            --charcoal: #2D3748;

            /* Supporting */
            --blush: #FDF2F0;
            --sage: #E8F0E8;
            --slate: #64748B;

            /* Typography */
            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'Space Grotesk', system-ui, sans-serif;

            /* Spacing */
            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-2xl: 48px;
            --space-3xl: 64px;
            --space-4xl: 96px;

            /* Shadows */
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 12px 24px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
            --shadow-glow: 0 0 24px rgba(230,57,70,0.15);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.6;
            color: var(--charcoal);
            background: var(--cream);
            -webkit-font-smoothing: antialiased;
        }

        /* ═══════════════════════════════════════════════════════════
           NAVIGATION
           ═══════════════════════════════════════════════════════════ */

        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: var(--space-lg) var(--space-2xl);
            background: rgba(250, 248, 245, 0.95);
            backdrop-filter: blur(10px);
            transition: box-shadow 0.3s ease;
        }

        .nav.scrolled {
            box-shadow: var(--shadow-md);
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: var(--deep-navy);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .nav-logo span {
            color: var(--signal-red);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: var(--space-xl);
        }

        .nav-links a {
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 500;
            color: var(--charcoal);
            text-decoration: none;
            transition: color 0.2s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--signal-red);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--signal-red);
            border-radius: 1px;
        }

        .nav-cta {
            background: var(--signal-red) !important;
            color: white !important;
            padding: 12px 24px !important;
            border-radius: 8px;
            font-weight: 600 !important;
            transition: all 0.2s ease !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md), var(--shadow-glow);
        }

        .nav-mobile {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: var(--space-sm);
        }

        .nav-mobile svg {
            width: 24px;
            height: 24px;
            stroke: var(--charcoal);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--cream);
            z-index: 999;
            padding: 100px var(--space-xl) var(--space-xl);
            flex-direction: column;
            gap: var(--space-lg);
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 32px;
            color: var(--charcoal);
            text-decoration: none;
            padding: var(--space-md) 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .mobile-menu a:hover {
            color: var(--signal-red);
        }

        /* ═══════════════════════════════════════════════════════════
           HERO SECTION
           ═══════════════════════════════════════════════════════════ */

        .hero {
            padding: 160px var(--space-2xl) var(--space-3xl);
            background: var(--deep-navy);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-label {
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--warm-gold);
            margin-bottom: var(--space-md);
            display: inline-block;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            line-height: 1.15;
            color: white;
            margin-bottom: var(--space-2xl);
        }

        .hero h1 em {
            font-style: italic;
            color: var(--warm-gold);
        }

        .hero-stat {
            margin-bottom: var(--space-xl);
        }

        .hero-stat-number {
            font-family: var(--font-display);
            font-size: clamp(64px, 10vw, 120px);
            font-weight: 700;
            color: var(--signal-red);
            line-height: 1;
            text-shadow: 0 4px 24px rgba(230, 57, 70, 0.3);
        }

        .hero-stat-label {
            font-family: var(--font-body);
            font-size: 16px;
            color: rgba(255,255,255,0.7);
            margin-top: var(--space-md);
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-cta {
            margin-top: var(--space-2xl);
        }

        .btn-primary {
            background: var(--signal-red);
            color: white;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 16px;
            padding: 18px 36px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg), var(--shadow-glow);
        }

        .btn-primary svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            transition: transform 0.2s ease;
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--deep-navy);
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 16px;
            padding: 16px 32px;
            border: 2px solid var(--deep-navy);
            border-radius: 8px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
        }

        .btn-secondary:hover {
            background: var(--deep-navy);
            color: white;
        }

        /* ═══════════════════════════════════════════════════════════
           HOOK SECTION
           ═══════════════════════════════════════════════════════════ */

        .hook-section {
            padding: var(--space-3xl) var(--space-2xl);
            background: var(--warm-white);
            text-align: center;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .hook-text {
            font-family: var(--font-display);
            font-size: clamp(24px, 3vw, 36px);
            font-weight: 500;
            color: var(--charcoal);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.4;
        }

        .hook-text em {
            font-style: italic;
            color: var(--signal-red);
        }

        /* ═══════════════════════════════════════════════════════════
           PROBLEM / SOLUTION SECTION
           ═══════════════════════════════════════════════════════════ */

        .ps-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--cream);
        }

        .ps-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-3xl);
        }

        .ps-card {
            padding: var(--space-2xl);
        }

        .ps-card.problem {
            background: var(--blush);
            border-radius: 16px;
            border-left: 4px solid var(--signal-red);
        }

        .ps-card.solution {
            background: var(--sage);
            border-radius: 16px;
            border-left: 4px solid var(--warm-gold);
        }

        .ps-label {
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: var(--space-md);
        }

        .ps-card.problem .ps-label {
            color: var(--signal-red);
        }

        .ps-card.solution .ps-label {
            color: var(--warm-gold);
        }

        .ps-card h3 {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-lg);
            line-height: 1.3;
        }

        .ps-card p {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--soft-gray);
            line-height: 1.8;
            margin-bottom: var(--space-md);
        }

        .ps-card p:last-child {
            margin-bottom: 0;
        }

        /* ═══════════════════════════════════════════════════════════
           STATS SECTION
           ═══════════════════════════════════════════════════════════ */

        .stats-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--warm-white);
        }

        .stats-inner {
            max-width: 1000px;
            margin: 0 auto;
        }

        .stats-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .section-headline {
            font-family: var(--font-display);
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 600;
            color: var(--charcoal);
            line-height: 1.2;
        }

        .section-headline em {
            font-style: italic;
            color: var(--signal-red);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
        }

        .stat-card {
            background: var(--cream);
            border-radius: 16px;
            padding: var(--space-2xl);
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: clamp(48px, 6vw, 64px);
            font-weight: 700;
            color: var(--signal-red);
            line-height: 1;
        }

        .stat-label {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--soft-gray);
            margin-top: var(--space-md);
            line-height: 1.5;
        }

        /* ═══════════════════════════════════════════════════════════
           CASE STUDY SECTION
           ═══════════════════════════════════════════════════════════ */

        .case-study-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--warm-white);
        }

        .case-study-inner {
            max-width: 1000px;
            margin: 0 auto;
        }

        .case-study-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .case-study-header .section-label {
            color: var(--signal-red);
        }

        .case-study-subtitle {
            font-family: var(--font-body);
            font-size: 18px;
            color: var(--soft-gray);
            margin-top: var(--space-md);
        }

        .metrics-dashboard {
            background: var(--deep-navy);
            border-radius: 20px;
            padding: var(--space-2xl);
            margin-bottom: var(--space-2xl);
        }

        .metric-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-lg);
            margin-bottom: var(--space-2xl);
            flex-wrap: wrap;
        }

        .metric-card {
            background: rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: var(--space-xl) var(--space-2xl);
            text-align: center;
            min-width: 180px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .metric-value {
            display: block;
            font-family: var(--font-display);
            font-size: 42px;
            font-weight: 700;
            color: white;
            line-height: 1;
        }

        .metric-card.spend .metric-value { color: var(--warm-gold); }
        .metric-card.visits .metric-value { color: var(--signal-red); }

        .metric-label {
            display: block;
            font-family: var(--font-body);
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            margin-top: var(--space-sm);
            font-weight: 500;
        }

        .metric-period {
            display: block;
            font-family: var(--font-body);
            font-size: 12px;
            color: rgba(255,255,255,0.5);
            margin-top: var(--space-xs);
        }

        .metric-arrow {
            font-size: 28px;
            color: rgba(255,255,255,0.3);
            font-weight: 300;
        }

        .metric-highlight {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-xl);
            padding-top: var(--space-xl);
            border-top: 1px solid rgba(255,255,255,0.1);
            flex-wrap: wrap;
        }

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

        .highlight-value {
            display: block;
            font-family: var(--font-display);
            font-size: 64px;
            font-weight: 700;
            color: var(--signal-red);
            line-height: 1;
            text-shadow: 0 4px 24px rgba(230, 57, 70, 0.4);
        }

        .highlight-label {
            display: block;
            font-family: var(--font-body);
            font-size: 16px;
            color: rgba(255,255,255,0.8);
            margin-top: var(--space-sm);
        }

        .highlight-badge {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            color: white;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 100px;
            box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
        }

        .attribution-breakdown {
            background: var(--cream);
            border-radius: 16px;
            padding: var(--space-2xl);
            text-align: center;
        }

        .attribution-breakdown h4 {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-xl);
        }

        .breakdown-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-lg);
            flex-wrap: wrap;
            margin-bottom: var(--space-lg);
        }

        .breakdown-stat {
            text-align: center;
            padding: var(--space-md) var(--space-xl);
        }

        .breakdown-stat.total {
            background: var(--signal-red);
            border-radius: 12px;
            padding: var(--space-lg) var(--space-xl);
        }

        .breakdown-number {
            display: block;
            font-family: var(--font-display);
            font-size: 36px;
            font-weight: 700;
            color: var(--signal-red);
            line-height: 1;
        }

        .breakdown-stat.total .breakdown-number {
            color: white;
        }

        .breakdown-label {
            display: block;
            font-family: var(--font-body);
            font-size: 14px;
            color: var(--soft-gray);
            margin-top: var(--space-xs);
        }

        .breakdown-stat.total .breakdown-label {
            color: rgba(255,255,255,0.9);
        }

        .breakdown-plus,
        .breakdown-equals {
            font-family: var(--font-body);
            font-size: 24px;
            font-weight: 300;
            color: var(--soft-gray);
        }

        .breakdown-note {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--soft-gray);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .case-study-client {
            text-align: center;
            margin-bottom: var(--space-xl);
            margin-top: var(--space-3xl);
        }

        .case-study-client:first-of-type {
            margin-top: 0;
        }

        .client-name {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-sm);
        }

        .client-name em {
            font-style: italic;
            color: var(--signal-red);
        }

        .client-period {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            color: var(--soft-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .case-study-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--soft-gray), transparent);
            margin: var(--space-3xl) 0;
            opacity: 0.3;
        }

        @media (max-width: 768px) {
            .metric-row {
                flex-direction: column;
            }
            .metric-arrow {
                transform: rotate(90deg);
            }
            .breakdown-row {
                flex-direction: column;
            }
            .breakdown-plus,
            .breakdown-equals {
                display: none;
            }
            .highlight-value {
                font-size: 48px;
            }
        }

        /* ═══════════════════════════════════════════════════════════
           PROCESS SECTION
           ═══════════════════════════════════════════════════════════ */

        .process-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--deep-navy);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .process-inner {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .process-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .process-section .section-label {
            color: var(--warm-gold);
        }

        .process-section .section-headline {
            color: white;
        }

        .process-section .section-headline em {
            color: var(--warm-gold);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
        }

        .process-step {
            text-align: center;
            padding: var(--space-xl);
            position: relative;
        }

        .step-number {
            font-family: var(--font-display);
            font-size: 56px;
            font-weight: 700;
            color: var(--signal-red);
            line-height: 1;
            margin-bottom: var(--space-lg);
        }

        .step-title {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 600;
            color: white;
            margin-bottom: var(--space-md);
        }

        .step-description {
            font-family: var(--font-body);
            font-size: 15px;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
        }

        /* Connector Lines */
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 44px;
            right: -16px;
            width: 32px;
            height: 2px;
            background: linear-gradient(90deg, var(--signal-red), transparent);
        }

        /* ═══════════════════════════════════════════════════════════
           SUCCESS STORY SECTION
           ═══════════════════════════════════════════════════════════ */

        .success-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--blush);
        }

        .success-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        .success-card {
            background: var(--warm-white);
            border-radius: 20px;
            padding: var(--space-3xl);
            box-shadow: var(--shadow-lg);
            position: relative;
        }

        .success-badge {
            position: absolute;
            top: -16px;
            left: var(--space-2xl);
            background: var(--warm-gold);
            color: white;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 10px 20px;
            border-radius: 100px;
        }

        .success-card h3 {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-lg);
        }

        .success-card p {
            font-family: var(--font-body);
            font-size: 18px;
            color: var(--soft-gray);
            line-height: 1.8;
            margin-bottom: var(--space-xl);
        }

        .success-link {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            color: var(--signal-red);
            text-decoration: none;
            transition: gap 0.2s ease;
        }

        .success-link:hover {
            gap: var(--space-md);
        }

        .success-link svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
        }

        /* ═══════════════════════════════════════════════════════════
           LAUNDRY SITE CALLOUT
           ═══════════════════════════════════════════════════════════ */

        .callout-section {
            padding: var(--space-3xl) var(--space-2xl);
            background: var(--cream);
            text-align: center;
        }

        .callout-inner {
            max-width: 700px;
            margin: 0 auto;
            padding: var(--space-2xl);
            background: var(--warm-white);
            border-radius: 16px;
            border: 2px dashed var(--warm-gold);
        }

        .callout-text {
            font-family: var(--font-display);
            font-size: 20px;
            font-style: italic;
            color: var(--charcoal);
            margin-bottom: var(--space-lg);
        }

        .callout-link {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 600;
            color: var(--signal-red);
            text-decoration: none;
            padding: 14px 28px;
            background: var(--blush);
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .callout-link:hover {
            background: var(--signal-red);
            color: white;
        }

        .callout-link svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
        }

        /* ═══════════════════════════════════════════════════════════
           CTA SECTION
           ═══════════════════════════════════════════════════════════ */

        .cta-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--warm-white);
            text-align: center;
        }

        .cta-content {
            max-width: 650px;
            margin: 0 auto;
        }

        .cta-headline {
            font-family: var(--font-display);
            font-size: clamp(32px, 4.5vw, 48px);
            font-weight: 700;
            color: var(--charcoal);
            margin-bottom: var(--space-lg);
            line-height: 1.2;
        }

        .cta-headline em {
            font-style: italic;
            color: var(--signal-red);
        }

        .cta-text {
            font-family: var(--font-body);
            font-size: 18px;
            color: var(--soft-gray);
            margin-bottom: var(--space-2xl);
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════════════════════ */

        .footer {
            background: var(--deep-navy);
            color: white;
            padding: var(--space-3xl) var(--space-2xl);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: var(--space-2xl);
            padding-bottom: var(--space-2xl);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-brand h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: var(--space-md);
        }

        .footer-brand h3 span {
            color: var(--signal-red);
        }

        .footer-brand p {
            font-size: 15px;
            color: rgba(255,255,255,0.7);
            margin-bottom: var(--space-lg);
            line-height: 1.7;
        }

        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--warm-gold);
            color: white;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 14px;
            border-radius: 100px;
        }

        .footer-column h4 {
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255,255,255,0.5);
            margin-bottom: var(--space-lg);
        }

        .footer-column a {
            display: block;
            font-size: 15px;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            margin-bottom: var(--space-md);
            transition: color 0.2s ease;
        }

        .footer-column a:hover {
            color: var(--warm-gold);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: var(--space-xl);
        }

        .footer-bottom p {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
        }

        /* ═══════════════════════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════════════════════ */

        @media (max-width: 1024px) {
            .ps-inner {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }

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

            .process-grid {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
            }

            .process-step:not(:last-child)::after {
                display: none;
            }

            .footer-main {
                grid-template-columns: 1fr 1fr;
            }
        }

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

            .nav-mobile {
                display: block;
            }

            .hero {
                padding: 120px var(--space-lg) var(--space-2xl);
            }

            .footer-main {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: var(--space-md);
                text-align: center;
            }

            .success-card {
                padding: var(--space-2xl);
            }
        }

        /* ═══════════════════════════════════════════════════════════
           ANIMATIONS
           ═══════════════════════════════════════════════════════════ */

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .hero-content {
            animation: fadeInUp 0.6s ease;
        }

        .hero-stat-number {
            animation: countUp 0.8s ease 0.2s both;
        }

        .stat-card {
            animation: fadeInUp 0.6s ease;
            animation-fill-mode: both;
        }

        .stat-card:nth-child(1) { animation-delay: 0.1s; }
        .stat-card:nth-child(2) { animation-delay: 0.2s; }
        .stat-card:nth-child(3) { animation-delay: 0.3s; }

        /* ═══════════════════════════════════════════════════════════
           SCROLL-TRIGGERED ANIMATIONS
           ═══════════════════════════════════════════════════════════ */

        [data-animate] {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        [data-animate].animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered delays for grouped elements */
        [data-animate-delay="1"] { transition-delay: 0.1s; }
        [data-animate-delay="2"] { transition-delay: 0.2s; }
        [data-animate-delay="3"] { transition-delay: 0.3s; }
        [data-animate-delay="4"] { transition-delay: 0.4s; }
        [data-animate-delay="5"] { transition-delay: 0.5s; }

        /* Scale up animation for metrics */
        [data-animate="scale"] {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        [data-animate="scale"].animated {
            opacity: 1;
            transform: scale(1);
        }

        /* Slide in from left */
        [data-animate="slide-left"] {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        [data-animate="slide-left"].animated {
            opacity: 1;
            transform: translateX(0);
        }

        /* Slide in from right */
        [data-animate="slide-right"] {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        [data-animate="slide-right"].animated {
            opacity: 1;
            transform: translateX(0);
        }

        /* Fade in only */
        [data-animate="fade"] {
            opacity: 0;
            transform: none;
            transition: opacity 0.8s ease;
        }

        [data-animate="fade"].animated {
            opacity: 1;
        }

        /* Dashboard card cascade */
        .metrics-dashboard [data-animate] {
            transition-duration: 0.4s;
        }

        /* Pulse animation for highlight badges */
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .highlight-badge.animated {
            animation: pulse 2s ease-in-out infinite;
            animation-delay: 1s;
        }

        /* Number count-up effect */
        @keyframes numberPop {
            0% { transform: scale(0.5); opacity: 0; }
            60% { transform: scale(1.1); }
            100% { transform: scale(1); opacity: 1; }
        }

        .highlight-value.animated,
        .breakdown-number.animated {
            animation: numberPop 0.6s ease-out forwards;
        }

        /* ═══════════════════════════════════════════════════════════
           FAQ SECTION - LLM-SEO OPTIMIZED
           ═══════════════════════════════════════════════════════════ */

        .faq-section {
            padding: var(--space-4xl) var(--space-2xl);
            background: var(--cream);
        }

        .faq-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .faq-header .section-label {
            color: var(--signal-red);
        }

        .faq-grid {
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
        }

        .faq-item {
            background: var(--warm-white);
            border-radius: 16px;
            padding: var(--space-xl) var(--space-2xl);
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--warm-gold);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
            transform: translateX(4px);
        }

        .faq-question {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: var(--space-md);
            line-height: 1.4;
        }

        .faq-answer p {
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--soft-gray);
            line-height: 1.8;
            margin: 0;
        }

        .faq-answer strong {
            color: var(--charcoal);
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .faq-item {
                padding: var(--space-lg);
            }

            .faq-question {
                font-size: 18px;
            }
        }
