
        /* ============================================
           CSS CUSTOM PROPERTIES
           ============================================ */
        :root {
            /* TCU Brand Colors */
            --purple-deep: #2A0A4A;
            --purple-primary: #4D1979;
            --purple-mid: #6B2FA0;
            --purple-light: #8B4FC6;
            --purple-glow: #A855F7;
            --purple-soft: #E9D5FF;
            --purple-wash: #F5EDFF;
            
            /* Accent Colors */
            --gold: #C8A951;
            --gold-light: #D4B96A;
            --gold-dark: #A8893A;
            --tcu-red: #CC0000;
            --tcu-red-soft: rgba(204, 0, 0, 0.08);
            
            /* Neutrals */
            --white: #FFFFFF;
            --off-white: #FAFAFA;
            --gray-100: #F5F5F5;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1A1A2E;
            --gray-900: #1A1A2E;
            --black: #0A0A0A;
            
            /* Semantic */
            --bg: var(--white);
            --bg-alt: var(--gray-100);
            --text: var(--gray-800);
            --text-secondary: var(--gray-600);
            --text-inverse: var(--white);
            
            /* Typography */
            --font-display: 'Bebas Neue', sans-serif;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Outfit', sans-serif;
            
            /* Spacing */
            --section-padding: clamp(60px, 10vw, 120px);
            --container-max: 1280px;
            --container-padding: clamp(16px, 4vw, 40px);
            
            /* Transitions */
            --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* Dark Mode */
        [data-theme="dark"] {
            --bg: #0D0118;
            --bg-alt: #1A0530;
            --text: #F0E6FF;
            --text-secondary: #B8A0D2;
            --text-inverse: var(--black);
            --gray-100: #1A0530;
            --gray-200: #2A0A4A;
        }

        /* ============================================
           RESET & BASE
           ============================================ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { 
            scroll-behavior: smooth; 
            -webkit-text-size-adjust: 100%;
            overflow-x: hidden;
        }
        
        body {
            font-family: var(--font-body);
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background 0.4s ease, color 0.4s ease;
        }

        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }
        button { cursor: pointer; border: none; background: none; font-family: inherit; }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }

        /* Screen reader only */
        .sr-only {
            position: absolute; width: 1px; height: 1px;
            padding: 0; margin: -1px; overflow: hidden;
            clip: rect(0,0,0,0); border: 0;
        }

        /* ============================================
           LOADING SCREEN
           ============================================ */
        .loader {
            position: fixed; inset: 0; z-index: 10000;
            background: var(--purple-deep);
            display: flex; align-items: center; justify-content: center;
            flex-direction: column; gap: 24px;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
        .loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
        
        .tennis-ball-loader {
            width: 40px; height: 40px;
            background: #DFFF00;
            border-radius: 50%;
            position: relative;
            animation: bounce-ball 0.6s var(--ease-spring) infinite alternate;
        }
        .tennis-ball-loader::after {
            content: '';
            position: absolute; inset: 4px;
            border: 2px solid rgba(0,0,0,0.15);
            border-radius: 50%;
            clip-path: path('M18 0 Q20 18 18 36 M0 18 Q18 16 36 18');
        }
        @keyframes bounce-ball {
            from { transform: translateY(0) scaleX(1) scaleY(1); }
            to { transform: translateY(-50px) scaleX(0.95) scaleY(1.05); }
        }

        .loader-text {
            font-family: var(--font-display);
            font-size: 1.2rem;
            letter-spacing: 0.3em;
            color: var(--gold);
            text-transform: uppercase;
        }
        /* ============================================
           NAVBAR
           ============================================ */
        .navbar {
            position: fixed; top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: all 0.4s var(--ease-out);
        }
        .navbar.scrolled {
            background: rgba(42, 10, 74, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 10px 0;
            box-shadow: 0 4px 30px rgba(77, 25, 121, 0.3);
        }
        .navbar .container {
            display: flex; align-items: center; justify-content: space-between;
        }
        .nav-logo img {
            height: 50px; width: auto;
            transition: height 0.3s ease;
        }
        .navbar.scrolled .nav-logo img { height: 40px; }

        .nav-links {
            display: flex; align-items: center; gap: 32px;
            list-style: none;
        }
        .nav-links a {
            font-family: var(--font-body);
            font-weight: 500; font-size: 0.9rem;
            color: var(--white);
            letter-spacing: 0.02em;
            position: relative;
            transition: color 0.3s ease;
        }
        .nav-links a::after {
            content: ''; position: absolute;
            bottom: -4px; left: 0; width: 0; height: 2px;
            background: var(--gold);
            transition: width 0.3s var(--ease-out);
        }
        .nav-links a:hover::after,
        .nav-links a.active::after { width: 100%; }
        .nav-links a:hover { color: var(--gold); }

        .nav-cta {
            background: var(--gold);
            color: var(--purple-deep) !important;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 700 !important;
            font-size: 0.85rem !important;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease !important;
        }
        .nav-cta::after { display: none !important; }
        .nav-cta:hover {
            transform: scale(1.05) !important;
            box-shadow: 0 4px 20px rgba(200, 169, 81, 0.4);
            color: var(--purple-deep) !important;
        }

        /* Language Toggle */
        .lang-toggle {
            display: flex; align-items: center;
            background: rgba(255,255,255,0.1);
            border-radius: 50px; padding: 3px;
            gap: 2px;
        }
        .lang-btn {
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--white);
            transition: all 0.3s ease;
            letter-spacing: 0.05em;
        }
        .lang-btn.active {
            background: var(--gold);
            color: var(--purple-deep);
        }

        /* Dark Mode Toggle */
        .theme-toggle {
            width: 36px; height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem;
            transition: all 0.3s ease;
            color: var(--white);
        }
        .theme-toggle:hover { background: rgba(255,255,255,0.2); transform: rotate(30deg); }

        /* Mobile Menu */
        .hamburger {
            display: none;
            flex-direction: column; gap: 5px;
            width: 28px;
            z-index: 1001;
        }
        .hamburger span {
            display: block; height: 2px; width: 100%;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.3s var(--ease-out);
            transform-origin: center;
        }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .mobile-menu {
            position: fixed; inset: 0;
            background: var(--purple-deep);
            z-index: 999;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            gap: 28px;
            opacity: 0; visibility: hidden;
            transition: all 0.4s var(--ease-out);
        }
        .mobile-menu.open { opacity: 1; visibility: visible; }
        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 2rem;
            color: var(--white);
            letter-spacing: 0.1em;
            transition: color 0.3s ease;
        }
        .mobile-menu a:hover { color: var(--gold); }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            position: relative;
            min-height: 100vh; min-height: 100dvh;
            display: flex; align-items: center;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute; inset: 0; z-index: 0;
        }
        .hero-bg img {
            width: 100%; height: 100%;
            object-fit: cover;
            object-position: center 20%;
        }
        .hero-bg::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(
                135deg,
                rgba(42, 10, 74, 0.92) 0%,
                rgba(77, 25, 121, 0.75) 40%,
                rgba(42, 10, 74, 0.6) 100%
            );
        }
        .hero-content {
            position: relative; z-index: 2;
            padding-top: 100px;
            padding-bottom: 160px;
        }
        .hero-tagline {
            font-family: var(--font-body);
            font-size: clamp(0.85rem, 1.5vw, 1rem);
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 0.25em;
            text-transform: uppercase;
            margin-bottom: 16px;
            opacity: 0; transform: translateY(20px);
            animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
        }
        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(3.5rem, 10vw, 8rem);
            line-height: 0.95;
            color: var(--white);
            letter-spacing: 0.02em;
            margin-bottom: 24px;
            opacity: 0; transform: translateY(30px);
            animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
        }
        .hero-title .accent {
            display: block;
            color: var(--gold);
            font-family: var(--font-heading);
            font-style: italic;
            font-size: 0.5em;
            letter-spacing: 0.01em;
            line-height: 1.2;
        }
        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: rgba(255,255,255,0.85);
            max-width: 550px;
            line-height: 1.7;
            margin-bottom: 40px;
            font-weight: 300;
            opacity: 0; transform: translateY(30px);
            animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
        }
        .hero-buttons {
            display: flex; gap: 16px; flex-wrap: wrap;
            opacity: 0; transform: translateY(30px);
            animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
        }

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

        /* Buttons */
        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600; font-size: 0.95rem;
            letter-spacing: 0.03em;
            transition: all 0.3s var(--ease-spring);
            position: relative; overflow: hidden;
        }
        .btn-primary {
            background: var(--gold);
            color: var(--purple-deep);
        }
        .btn-primary:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 8px 30px rgba(200, 169, 81, 0.4);
            background: var(--gold-light);
        }
        .btn-outline {
            border: 2px solid rgba(255,255,255,0.5);
            color: var(--white);
        }
        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-2px);
        }
        .btn-dark {
            background: var(--purple-primary);
            color: var(--white);
        }
        .btn-dark:hover {
            background: var(--purple-mid);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(77, 25, 121, 0.4);
        }

        /* Hero Stats Bar */
        .hero-stats {
            position: absolute;
            bottom: 30px; left: 0; right: 0;
            z-index: 2;
        }
        .hero-stats .container {
            display: flex; justify-content: center; gap: clamp(24px, 5vw, 60px);
            flex-wrap: wrap;
            background: rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 20px 32px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .stat-item {
            text-align: center;
            opacity: 0; transform: translateY(20px);
            animation: fadeUp 0.8s var(--ease-out) forwards;
        }
        .stat-item:nth-child(1) { animation-delay: 1.3s; }
        .stat-item:nth-child(2) { animation-delay: 1.5s; }
        .stat-item:nth-child(3) { animation-delay: 1.7s; }
        .stat-item:nth-child(4) { animation-delay: 1.9s; }
        .stat-item:nth-child(5) { animation-delay: 2.1s; }

        .stat-number {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 3.2vw, 2.5rem);
            color: var(--gold);
            line-height: 1;
            white-space: nowrap;
        }

        /* ============================================
           SERVICES MARQUEE
           ============================================ */
        .services-marquee {
            overflow: hidden;
            background: var(--purple-primary);
            padding: 22px 0;
            position: relative;
            border-top: 1px solid rgba(255,255,255,0.08);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        [data-theme="dark"] .services-marquee { background: var(--purple-deep); }
        .services-marquee::before,
        .services-marquee::after {
            content: "";
            position: absolute;
            top: 0; bottom: 0; width: 80px;
            z-index: 2;
            pointer-events: none;
        }
        .services-marquee::before {
            left: 0;
            background: linear-gradient(to right, var(--purple-primary), transparent);
        }
        .services-marquee::after {
            right: 0;
            background: linear-gradient(to left, var(--purple-primary), transparent);
        }
        [data-theme="dark"] .services-marquee::before {
            background: linear-gradient(to right, var(--purple-deep), transparent);
        }
        [data-theme="dark"] .services-marquee::after {
            background: linear-gradient(to left, var(--purple-deep), transparent);
        }
        .marquee-track {
            display: flex;
            align-items: center;
            gap: 48px;
            width: max-content;
            animation: marquee-scroll 40s linear infinite;
            will-change: transform;
        }
        .marquee-item {
            font-family: var(--font-display);
            font-size: clamp(1.4rem, 2.4vw, 2rem);
            color: var(--white);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            gap: 48px;
            white-space: nowrap;
        }
        .marquee-dot {
            color: var(--gold);
            font-size: 0.6em;
            line-height: 1;
        }
        @keyframes marquee-scroll {
            from { transform: translateX(0); }
            to   { transform: translateX(-50%); }
        }
        .stat-label {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.7);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 4px;
        }

        /* ============================================
           SECTION STYLES
           ============================================ */
        section { padding: var(--section-padding) 0; }
        
        .section-label {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--purple-primary);
            letter-spacing: 0.25em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        [data-theme="dark"] .section-label { color: var(--gold); }
        
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1;
            letter-spacing: 0.02em;
            margin-bottom: 20px;
        }
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            line-height: 1.7;
            font-weight: 300;
        }

        /* Scroll animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s var(--ease-out);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }

        /* ============================================
           WHY TOMI SECTION
           ============================================ */
        .why-tomi { background: var(--bg-alt); }

        /* Carousel */
        .why-carousel {
            margin-top: 48px;
            position: relative;
        }
        .why-carousel-viewport {
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            cursor: grab;
            padding-bottom: 4px;
        }
        .why-carousel-viewport::-webkit-scrollbar { display: none; }
        .why-carousel-viewport.dragging { cursor: grabbing; scroll-behavior: auto; }
        .why-carousel-viewport.dragging .why-card { pointer-events: none; }
        .why-carousel-track {
            display: flex;
            gap: 24px;
        }
        .why-carousel .why-card {
            flex: 0 0 calc((100% - 48px) / 3);
            min-width: 0;
            scroll-snap-align: start;
            scroll-snap-stop: always;
        }
        @media (max-width: 900px) {
            .why-carousel .why-card { flex: 0 0 calc((100% - 24px) / 2); }
        }
        @media (max-width: 600px) {
            .why-carousel .why-card { flex: 0 0 100%; }
        }
        .why-carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 28px;
        }
        .why-carousel-dots button {
            width: 10px; height: 10px;
            border-radius: 50%;
            border: none;
            padding: 0;
            background: var(--gray-300);
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        [data-theme="dark"] .why-carousel-dots button { background: rgba(255,255,255,0.2); }
        .why-carousel-dots button.active {
            background: var(--purple-primary);
            transform: scale(1.3);
        }
        [data-theme="dark"] .why-carousel-dots button.active { background: var(--gold); }

        /* Card base */
        .why-card {
            background: var(--bg);
            border-radius: 20px;
            padding: 36px 28px;
            position: relative;
            transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
            border: 1px solid var(--gray-200);
            opacity: 0;
            transform: translateY(20px);
            animation: why-card-in 0.6s var(--ease-out) forwards;
        }
        .why-carousel .why-card:nth-child(1) { animation-delay: 0.1s; }
        .why-carousel .why-card:nth-child(2) { animation-delay: 0.2s; }
        .why-carousel .why-card:nth-child(3) { animation-delay: 0.3s; }
        .why-carousel .why-card:nth-child(4) { animation-delay: 0.4s; }
        .why-carousel .why-card:nth-child(5) { animation-delay: 0.5s; }
        @keyframes why-card-in {
            to { opacity: 1; transform: translateY(0); }
        }
        [data-theme="dark"] .why-card { border-color: rgba(255,255,255,0.08); }
        .why-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(77, 25, 121, 0.12);
        }

        /* Spotlight glow — pointer-tracked radial gradient on cards */
        .why-card[data-glow] {
            --base: 280;
            --spread: 200;
            --border-size: 1.5px;
            --spotlight-size: 420px;
            --hue: calc(var(--base, 280) + (var(--xp, 0) * var(--spread, 200)));
            background-image: radial-gradient(
                var(--spotlight-size) var(--spotlight-size) at
                calc(var(--x, 0) * 1px) calc(var(--y, 0) * 1px),
                hsl(var(--hue) 100% 65% / 0.15),
                transparent
            );
            background-attachment: fixed;
            background-repeat: no-repeat;
            border: var(--border-size) solid var(--gray-200);
        }
        [data-theme="dark"] .why-card[data-glow] {
            background-color: rgba(255, 255, 255, 0.03);
            border-color: rgba(255, 255, 255, 0.08);
        }
        .why-card[data-glow]::before,
        .why-card[data-glow]::after {
            pointer-events: none;
            content: "";
            position: absolute;
            inset: calc(var(--border-size) * -1);
            border: var(--border-size) solid transparent;
            border-radius: inherit;
            background-attachment: fixed;
            background-repeat: no-repeat;
            background-position: 50% 50%;
            -webkit-mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
                    mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
            -webkit-mask-clip: padding-box, border-box;
                    mask-clip: padding-box, border-box;
            -webkit-mask-composite: source-in;
                    mask-composite: intersect;
        }
        .why-card[data-glow]::before {
            background-image: radial-gradient(
                calc(var(--spotlight-size) * 0.75) calc(var(--spotlight-size) * 0.75) at
                calc(var(--x, 0) * 1px) calc(var(--y, 0) * 1px),
                hsl(var(--hue) 100% 55%) 0%,
                transparent 100%
            );
            filter: brightness(1.6);
        }
        .why-card[data-glow]::after {
            background-image: radial-gradient(
                calc(var(--spotlight-size) * 0.5) calc(var(--spotlight-size) * 0.5) at
                calc(var(--x, 0) * 1px) calc(var(--y, 0) * 1px),
                hsl(0 0% 100% / 0.9) 0%,
                transparent 100%
            );
        }
        .why-card-icon {
            width: 56px; height: 56px;
            border-radius: 16px;
            background: var(--purple-wash);
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        [data-theme="dark"] .why-card-icon { background: rgba(168, 85, 247, 0.15); }
        .why-card h3 {
            font-family: var(--font-body);
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .why-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ============================================
           SERVICES SECTION
           ============================================ */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }
        .service-card {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            min-height: 380px;
            display: flex; flex-direction: column;
            justify-content: flex-end;
            padding: 32px;
            cursor: pointer;
            transition: transform 0.5s var(--ease-spring);
        }
        .service-card:hover { transform: scale(1.02); }
        .service-card img {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.5s var(--ease-out);
        }
        .service-card:hover img { transform: scale(1.08); }
        .service-card::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(0deg, rgba(42,10,74,0.95) 0%, rgba(42,10,74,0.4) 50%, transparent 100%);
        }
        .service-card-content {
            position: relative; z-index: 2;
        }
        .service-badge {
            display: inline-block;
            background: var(--gold);
            color: var(--purple-deep);
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 12px;
        }
        .service-card h3 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            color: var(--white);
            letter-spacing: 0.03em;
            margin-bottom: 8px;
        }
        .service-card p {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 16px;
        }
        .service-link {
            color: var(--gold);
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex; align-items: center; gap: 6px;
            transition: gap 0.3s ease;
        }
        .service-card:hover .service-link { gap: 12px; }

        /* ============================================
           PURPOSE PYRAMID SECTION
           ============================================ */
        .pyramid-section {
            background: var(--purple-deep);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        .pyramid-section::before {
            content: '';
            position: absolute;
            width: 600px; height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);
            top: -200px; right: -200px;
        }
        .pyramid-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: stretch;
            margin-top: 48px;
        }
        .pyramid-image {
            position: relative;
            display: flex;
            align-items: stretch;
            justify-content: center;
        }
        .pyramid-image img {
            border-radius: 20px;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .pyramid-levels {
            display: flex; flex-direction: column; gap: 20px;
        }
        .pyramid-level {
            display: flex; align-items: flex-start; gap: 16px;
            padding: 20px;
            border-radius: 16px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            transition: all 0.3s ease;
        }
        .pyramid-level:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(8px);
        }
        .pyramid-level-num {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--gold);
            line-height: 1;
            min-width: 30px;
        }
        .pyramid-level h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }
        .pyramid-level p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.65);
            line-height: 1.5;
        }

        /* ============================================
           STATS COUNTER SECTION
           ============================================ */
        .stats-section {
            background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-deep) 100%);
            padding: 60px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
        }
        .stats-grid .stat-number {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: var(--gold);
        }
        .stats-grid .stat-label {
            color: rgba(255,255,255,0.75);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* ============================================
           DISCOVERY CALL CTA
           ============================================ */
        .cta-section {
            position: relative;
            overflow: hidden;
        }
        .cta-inner {
            background: var(--bg-alt);
            border-radius: 32px;
            padding: clamp(40px, 6vw, 80px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--gray-200);
        }
        [data-theme="dark"] .cta-inner { border-color: rgba(255,255,255,0.08); }
        .cta-inner::before {
            content: ''; position: absolute;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(204,255,0,0.08) 0%, transparent 70%);
            bottom: -200px; right: -100px;
        }
        .cta-image {
            border-radius: 20px;
            overflow: hidden;
        }
        .cta-image img {
            width: 100%; height: 500px;
            object-fit: cover;
            object-position: center center;
        }
        .cta-content .section-title { margin-bottom: 16px; }

        /* ============================================
           JUNIOR BADGE SECTION
           ============================================ */
        .junior-section { background: var(--bg-alt); }
        .junior-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .junior-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--purple-deep);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
        }
        .junior-features {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 28px;
        }
        .junior-feature {
            display: flex; align-items: flex-start; gap: 10px;
            font-size: 0.95rem;
        }
        .junior-feature .check {
            color: var(--tcu-red);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .junior-photo {
            border-radius: 20px; overflow: hidden;
        }
        .junior-photo img {
            width: 100%; height: 600px;
            object-fit: cover;
            object-position: center center;
        }

        /* ============================================
           PRESS SECTION
           ============================================ */
        .press-section {
            padding: 40px 0;
            border-top: 1px solid var(--gray-200);
            border-bottom: 1px solid var(--gray-200);
        }
        [data-theme="dark"] .press-section { border-color: rgba(255,255,255,0.08); }
        .press-inner {
            display: flex; align-items: center;
            justify-content: center; gap: 48px;
            flex-wrap: wrap;
        }
        .press-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }
        .press-logo {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            color: var(--text-secondary);
            opacity: 0.6;
            transition: opacity 0.3s ease;
            font-style: italic;
        }
        .press-logo:hover { opacity: 1; }

        /* ============================================
           NEWSLETTER SECTION
           ============================================ */
        .newsletter {
            background: var(--purple-deep);
            color: var(--white);
            text-align: center;
        }
        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 32px auto 0;
            gap: 12px;
        }
        .newsletter-form input {
            flex: 1;
            padding: 16px 24px;
            border-radius: 50px;
            border: 2px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.08);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.3s ease;
        }
        .newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
        .newsletter-form input:focus { border-color: var(--gold); }
        .newsletter-form button {
            padding: 16px 32px;
            background: var(--gold);
            color: var(--purple-deep);
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.03em;
            transition: all 0.3s var(--ease-spring);
            white-space: nowrap;
        }
        .newsletter-form button:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(200, 169, 81, 0.4);
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: var(--black);
            color: rgba(255,255,255,0.7);
            padding: 60px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-brand img { height: 60px; margin-bottom: 16px; }
        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.6;
            max-width: 300px;
        }
        .footer-col h4 {
            color: var(--white);
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
        }
        .footer-col a {
            display: block;
            font-size: 0.9rem;
            padding: 4px 0;
            transition: color 0.3s ease;
        }
        .footer-col a:hover { color: var(--gold); }
        .footer-social {
            display: flex; gap: 12px;
            margin-top: 16px;
        }
        .footer-social a {
            width: 40px; height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            display: flex; align-items: center; justify-content: center;
            transition: all 0.3s ease;
        }
        .footer-social a:hover {
            background: var(--gold);
            color: var(--purple-deep);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.8rem;
        }
        .footer-legal { display: flex; gap: 20px; }
        .footer-legal a:hover { color: var(--gold); }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        
        /* Tablet */
        @media (max-width: 1024px) {
            .nav-links { display: none; }
            .hamburger { display: flex; }
            
            .pyramid-grid { grid-template-columns: 1fr; }
            .pyramid-image { order: -1; text-align: center; }
            
            .cta-inner { grid-template-columns: 1fr; }
            .cta-image { display: none; }
            
            .junior-inner { grid-template-columns: 1fr; }
            .junior-photo { order: -1; }
            .junior-photo img { height: 350px; }
            
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
            
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        
        /* Mobile */
        @media (max-width: 900px) {
            .hero-stats .container {
                flex-wrap: nowrap;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                justify-content: flex-start;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
                mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
                -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
            }
            .hero-stats .container::-webkit-scrollbar { display: none; }
            .hero-stats .stat-item {
                flex: 0 0 auto;
                min-width: 150px;
                scroll-snap-align: center;
            }
        }

        @media (max-width: 640px) {
            .hero-content { padding-top: 80px; padding-bottom: 160px; }

            .hero-buttons { flex-direction: column; }
            .btn { width: 100%; justify-content: center; }

            .hero-stats .container {
                gap: 18px;
                padding: 14px 18px;
            }
            .hero-stats .stat-item {
                flex: 0 0 auto;
                min-width: 130px;
            }
            .stat-number { font-size: 1.5rem !important; }
            .stat-label { font-size: 0.7rem; }
            
            .services-grid { grid-template-columns: 1fr; }
            .service-card { min-height: 300px; }
            
            .why-carousel-dots button { width: 9px; height: 9px; }
            
            .stats-grid { grid-template-columns: 1fr 1fr; }
            
            .junior-features { grid-template-columns: 1fr; }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .footer-legal { justify-content: center; }
            
            .press-inner { gap: 24px; }
        }

        /* Very small screens */
        @media (max-width: 380px) {
            .hero-title { font-size: 2.8rem; }
            .hero-stats .container { gap: 14px; padding: 12px 16px; }
            .hero-stats .stat-item { min-width: 120px; }
        }

        /* ============================================
           ACCESSIBILITY
           ============================================ */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            html { scroll-behavior: auto; }
        }

        :focus-visible {
            outline: 3px solid var(--gold);
            outline-offset: 3px;
            border-radius: 4px;
        }

        /* ============================================
           UTILITY CLASSES
           ============================================ */
        .text-center { text-align: center; }
        .mx-auto { margin-left: auto; margin-right: auto; }
        
        /* Spanish text (hidden by default) */
        [data-lang="es"] { display: none; }
        .lang-es [data-lang="en"] { display: none; }
        .lang-es [data-lang="es"] { display: block; }
        .lang-es span[data-lang="es"],
        .lang-es a[data-lang="es"] { display: inline; }
    