        :root {
            --void: #050505;
            --obsidian: #0a0a0a;
            --charcoal: #111111;
            --graphite: #1a1a1a;
            --slate: #2a2a2a;
            --ash: #3a3a3a;
            --mist: #888888;
            --silver: #b0b0b0;
            --pearl: #e8e8e8;
            --ivory: #f5f5f5;

            --gold-deep: #B8860B;
            --gold: #D4A84B;
            --gold-light: #F0C05A;
            --gold-glow: #edd06d;
            --gold-pale: rgba(240, 192, 90, 0.1);

            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Outfit', -apple-system, sans-serif;

            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
        }

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

        html {
            font-size: 16px;
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: var(--gold) var(--charcoal);
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--charcoal);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 4px;
        }

        body {
            font-family: var(--font-body);
            background: var(--obsidian);
            color: var(--pearl);
            line-height: 1.8;
            font-weight: 300;
            font-size: clamp(16px, 1.1vw, 18px);
            overflow-x: hidden;
            cursor: none;
        }

        a,
        button,
        input,
        textarea,
        select {
            cursor: none;
        }

        ::selection {
            background: var(--gold);
            color: var(--void);
        }

        /* ═══════════════════════════════════════
           SKIP TO CONTENT - ACCESSIBILITY
        ═══════════════════════════════════════ */
        .skip-to-content {
            position: absolute;
            top: -100px;
            left: 0;
            background: var(--gold);
            color: var(--void);
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            z-index: 10000;
            transition: top 0.3s ease;
        }

        .skip-to-content:focus {
            top: 0;
        }


        /* ═══════════════════════════════════════
   CUSTOM CURSOR - DESKTOP ONLY
═══════════════════════════════════════ */
        .cursor {
            width: 28px;
            height: 28px;
            border: 2px solid var(--gold-light);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999999;
            opacity: 1;
            transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 8px rgba(240, 192, 90, 0.3);
            display: block;
        }

        .cursor.hover {
            width: 45px;
            height: 45px;
            background-color: rgba(240, 192, 90, 0.2);
            border-color: transparent;
        }

        .cursor-dot {
            width: 6px;
            height: 6px;
            background: var(--gold-light);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 10000000;
            opacity: 1;
            box-shadow: 0 0 10px rgba(240, 192, 90, 0.8);
            transition: opacity 0.3s ease, transform 0.3s ease;
            transform: translate(-50%, -50%);
            display: block;
        }

        .mouse-glow {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle at center, rgba(240, 192, 90, 0.08) 0%, transparent 60%);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 0;
            transform: translate(-50%, -50%);
            transition: opacity 0.5s ease;
            display: block;
        }

        /* Hide custom cursor on touch devices (mobile/tablet) */
        @media (hover: none) and (pointer: coarse) {

            .cursor,
            .cursor-dot,
            .mouse-glow {
                display: none !important;
            }
        }

        /* ═══════════════════════════════════════
           NAVIGATION
        ═══════════════════════════════════════ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 1.5rem 0;
            transition: all 0.5s var(--ease-out-expo);
            background: linear-gradient(to bottom, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.8) 50%, transparent 100%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .nav.scrolled {
            padding: 1rem 0;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--slate);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }

        .logo-symbol {
            width: 48px;
            height: 48px;
            fill: var(--gold-light);
            transition: all 0.4s var(--ease-out-expo);
        }

        .logo:hover .logo-symbol {
            filter: drop-shadow(0 0 20px rgba(240, 192, 90, 0.6));
            transform: scale(1.05);
        }

        .logo-text {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--gold-light);
            letter-spacing: 0.15em;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            font-size: 1rem;
            font-weight: 400;
            color: var(--silver);
            text-decoration: none;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, var(--gold), var(--gold-glow));
            transition: width 0.4s var(--ease-out-expo);
        }

        .nav-links a:hover {
            color: var(--gold-light);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 0.85rem 2rem;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold-light);
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
            text-decoration: none;
        }

        .nav-cta:hover {
            background: var(--gold);
            color: var(--void);
            box-shadow: 0 0 40px rgba(240, 192, 90, 0.3);
        }

        /* Programs Button - Desktop: same style as nav-cta */
        .nav-programs-btn {
            padding: 0.85rem 2rem;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold-light);
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
            text-decoration: none;
            display: inline-block;
        }

        .nav-programs-btn:hover {
            background: var(--gold);
            color: var(--void);
            box-shadow: 0 0 40px rgba(240, 192, 90, 0.3);
        }


        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
            background: transparent;
            border: none;
            z-index: 1001;
            position: relative;
        }

        .mobile-toggle span {
            width: 28px;
            height: 2px;
            background: var(--gold-light);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
            display: block;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        @media (max-width: 992px) {

            /* 1. Reset Container to Row with proper spacing */
            .nav-container {
                flex-direction: row;
                padding: 1.2rem 1.5rem;
                height: auto;
                gap: 1rem;
                justify-content: space-between;
                align-items: center;
            }

            /* Logo positioned first */
            .logo {
                order: 1;
                flex-shrink: 0;
            }

            /* 2. Show Hamburger Toggle */
            .mobile-toggle {
                display: flex !important;
                z-index: 1002;
                /* Ensure above overlay */
            }

            /* 3. Mobile Menu Overlay */
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 1.2rem;
                transform: translateX(100%) !important;
                transition: transform 0.5s var(--ease-out-expo) !important;
                z-index: 1000;
                display: flex !important;
                padding-top: 0;
            }

            .nav-links.active {
                transform: translateX(0) !important;
            }

            .nav-links li {
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.4s ease;
                transition-delay: 0.1s;
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateY(0);
            }

            .nav-links.active li:nth-child(1) {
                transition-delay: 0.2s;
            }

            .nav-links.active li:nth-child(2) {
                transition-delay: 0.3s;
            }

            .nav-links.active li:nth-child(3) {
                transition-delay: 0.4s;
            }

            .nav-links.active li:nth-child(4) {
                transition-delay: 0.5s;
            }

            .nav-links.active li:nth-child(5) {
                transition-delay: 0.6s;
            }

            .nav-links a {
                font-family: var(--font-body);
                font-size: 1.1rem !important;
                font-weight: 400;
                color: var(--pearl);
                position: relative;
                letter-spacing: 0.08em;
                text-transform: uppercase;
                padding: 0.5rem 0;
            }

            .nav-links a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 1px;
                background: var(--gold);
                transition: width 0.3s ease;
            }

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

            .nav-links a:hover::after {
                width: 60%;
            }


            /* 4. Programs Button - Always Visible on Mobile */
            .nav-programs-btn {
                display: block;
                order: 2;
                /* Position between logo (order 1) and toggle (order 3) */
                padding: 0.6rem 1.2rem;
                font-size: 0.75rem;
                margin: 0;
                white-space: nowrap;
                flex-shrink: 0;
            }

            /* 5. Hamburger Toggle - positioned last */
            .mobile-toggle {
                order: 3;
            }

            /* 6. Hide Get Started CTA on mobile (Programs is primary) */
            .nav-cta {
                display: none;
            }

            /* 7. Don't show Get Started in menu anymore since we have Programs visible */
            .nav-links.active~.nav-cta {
                display: none;
            }
        }

        /* iPhone SE / XE Specific Optimizations (375px and smaller) */
        @media (max-width: 400px) {
            .nav-container {
                padding: 1rem 1.2rem;
            }

            .logo-symbol {
                width: 40px;
                height: 40px;
            }

            .logo-text {
                font-size: 1.5rem;
            }

            .nav-programs-btn {
                padding: 0.55rem 1rem;
                font-size: 0.7rem;
                letter-spacing: 0.12em;
            }

            .mobile-toggle {
                padding: 8px;
            }

            .mobile-toggle span {
                width: 24px;
            }
        }

        /* ═══════════════════════════════════════
           HERO SECTION - WITH SHAPES & EFFECTS
        ═══════════════════════════════════════ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 6rem 2rem 3rem;
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 85vh;
                padding: 5rem 1.5rem 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero {
                min-height: auto;
                /* Remove fixed height - let content determine */
                padding: 4rem 1rem 1.5rem;
                /* Much tighter bottom padding */
            }
        }


        /* Animated Background */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(240, 192, 90, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(240, 192, 90, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 100%, rgba(240, 192, 90, 0.03) 0%, transparent 50%);
            animation: bgPulse 10s ease-in-out infinite;
        }

        @keyframes bgPulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.7;
            }
        }

        /* Floating Shapes */
        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .hero-shapes {
                opacity: 0.5;
                /* Keep shapes visible but subtle on mobile */
            }
        }

        @media (max-width: 480px) {
            .hero-shapes {
                opacity: 0.4;
                /* Lighter on small mobile */
            }

            .shape {
                border-color: rgba(240, 192, 90, 0.25);
                /* More visible on mobile */
            }
        }


        .shape {
            position: absolute;
            border: 1px solid rgba(240, 192, 90, 0.2);
            border-radius: 50%;
            transition: transform 0.1s ease-out;
        }

        .shape-1 {
            width: 500px;
            height: 500px;
            top: 5%;
            left: -10%;
            animation: floatShape 20s ease-in-out infinite;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            top: 50%;
            right: -10%;
            animation: floatShape 25s ease-in-out infinite reverse;
        }

        .shape-3 {
            width: 250px;
            height: 250px;
            top: 15%;
            right: 15%;
            border-color: rgba(240, 192, 90, 0.15);
            animation: floatShape 18s ease-in-out infinite 2s;
        }

        .shape-4 {
            width: 180px;
            height: 180px;
            bottom: 15%;
            left: 10%;
            border-color: rgba(240, 192, 90, 0.1);
            animation: floatShape 22s ease-in-out infinite 1s;
        }

        .shape-5 {
            width: 100px;
            height: 100px;
            top: 40%;
            left: 20%;
            border-color: rgba(240, 192, 90, 0.25);
            animation: floatShape 15s ease-in-out infinite 3s;
        }

        /* Center Rings */
        .hero-rings {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .hero-rings {
                opacity: 0.4;
                /* Keep rings visible on tablets */
                transform: translate(-50%, -50%) scale(0.6);
            }
        }

        @media (max-width: 480px) {
            .hero-rings {
                opacity: 0.3;
                /* Keep rings visible on mobile, just subtle */
                transform: translate(-50%, -50%) scale(0.5);
            }
        }


        .ring {
            position: absolute;
            border: 1px solid rgba(240, 192, 90, 0.1);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .ring-1 {
            width: 300px;
            height: 300px;
            animation: pulseRing 6s ease-in-out infinite;
        }

        .ring-2 {
            width: 500px;
            height: 500px;
            animation: pulseRing 6s ease-in-out infinite 0.5s;
        }

        .ring-3 {
            width: 700px;
            height: 700px;
            animation: pulseRing 6s ease-in-out infinite 1s;
        }

        .ring-4 {
            width: 900px;
            height: 900px;
            animation: pulseRing 6s ease-in-out infinite 1.5s;
        }

        @keyframes floatShape {

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

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

        @keyframes pulseRing {

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

            50% {
                transform: translate(-50%, -50%) scale(1.05);
                opacity: 0.2;
            }
        }

        /* Grid Lines */
        .hero-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.3;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 950px;
            text-align: center;
            padding: 2rem 1rem;
        }

        @media (max-width: 768px) {
            .hero-content {
                padding: 1.5rem 0;
            }
        }

        @media (max-width: 480px) {
            .hero-content {
                padding: 0.5rem 0;
                /* Minimal padding */
            }
        }


        .hero-tagline {
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 400;
            color: var(--gold);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            opacity: 1;
        }

        @media (max-width: 480px) {
            .hero-tagline {
                font-size: 0.9rem;
                margin-bottom: 0.75rem;
                letter-spacing: 0.25em;
            }
        }


        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 7vw, 5rem);
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: clamp(1.5rem, 6vw, 2.5rem);
                margin-bottom: 0.75rem;
                /* Reduced from 1rem */
            }
        }


        .hero-title .line {
            display: block;
            overflow: hidden;
        }

        .hero-title .line span {
            display: block;
            opacity: 1;
        }

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

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

        .hero-subtitle {
            font-size: clamp(1.05rem, 3.5vw, 1.3rem);
            font-weight: 300;
            color: var(--silver);
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 1;
            line-height: 1.6;
        }

        @media (max-width: 480px) {
            .hero-subtitle {
                font-size: 1rem;
                margin: 0 auto 1.5rem;
            }
        }

        .hero-cta-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 1;
            margin-top: 2rem;
        }

        @media (max-width: 768px) {
            .hero-cta-group {
                gap: 1rem;
            }
        }

        @media (max-width: 520px) {
            .hero-cta-group {
                flex-direction: column;
                align-items: center;
                gap: 0.75rem;
                margin-top: 1.5rem;
            }

            .hero-cta-group .btn-primary,
            .hero-cta-group .btn-secondary {
                width: 100%;
                max-width: 300px;
                text-align: center;
                justify-content: center;
            }
        }


        /* Floating Keywords Animation */
        .hero-floating-keywords {
            position: relative;
            height: 60px;
            margin: 2rem 0 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            overflow: hidden;
        }

        .floating-word {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--gold);
            opacity: 0;
            letter-spacing: 0.05em;
            animation: floatWord 6s ease-in-out infinite;
            text-shadow: 0 0 20px rgba(240, 192, 90, 0.3);
        }

        @keyframes floatWord {

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

            25% {
                opacity: 0.6;
            }

            50% {
                transform: translateY(-12px);
                opacity: 0.8;
            }

            75% {
                opacity: 0.6;
            }
        }

        @media (max-width: 768px) {
            .hero-floating-keywords {
                gap: 2rem;
                height: 50px;
                margin: 1.5rem 0 0;
            }

            .floating-word {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .hero-floating-keywords {
                gap: 1.5rem;
                height: 40px;
                flex-wrap: wrap;
                margin: 1rem 0 0;
                /* Reduced from 1.5rem */
            }

            .floating-word {
                font-size: 0.75rem;
            }
        }




        .btn-primary {
            padding: 1.15rem 2.5rem;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
            border: none;
            color: var(--void);
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            display: inline-block;
        }

        @media (max-width: 480px) {
            .btn-primary {
                padding: 0.95rem 2rem;
                font-size: 0.95rem;
                width: 100%;
                text-align: center;
            }
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(240, 192, 90, 0.5);
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-secondary {
            padding: 1.15rem 2.5rem;
            background: transparent;
            border: 1px solid var(--ash);
            color: var(--pearl);
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
            text-decoration: none;
            display: inline-block;
        }

        @media (max-width: 480px) {
            .btn-secondary {
                padding: 0.95rem 2rem;
                font-size: 0.95rem;
                width: 100%;
                text-align: center;
            }
        }

        .btn-secondary:hover {
            border-color: var(--gold);
            color: var(--gold-light);
            background: rgba(240, 192, 90, 0.1);
        }

        .hero-scroll {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            opacity: 0;
            animation: fadeIn 1s ease 1.5s forwards;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .hero-scroll:hover {
            transform: translateX(-50%) translateY(-5px);
        }

        .hero-scroll span {
            font-size: 0.7rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--mist);
            font-weight: 500;
        }

        /* Minimal Line */
        .scroll-line-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
        }

        .scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            animation: linePulse 2s ease-in-out infinite;
        }

        .scroll-arrow-down {
            color: var(--gold);
            opacity: 0.8;
        }

        @keyframes linePulse {

            0%,
            100% {
                opacity: 0.3;
                transform: scaleY(0.6);
            }

            50% {
                opacity: 1;
                transform: scaleY(1);
            }
        }

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

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* ═══════════════════════════════════════
           SECTION STYLES
        ═══════════════════════════════════════ */
        section {
            position: relative;
            z-index: 1;
        }

        .section-pad {
            padding: 8rem 4rem;
            scroll-margin-top: 100px;
        }

        /* Scroll target adjustment for sections */
        section[id] {
            scroll-margin-top: 100px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            margin-bottom: 4rem;
        }

        .section-label {
            font-size: 1rem;
            font-weight: 500;
            color: var(--gold);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .section-label::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 400;
            line-height: 1.3;
            max-width: 100%;
        }

        .section-title em {
            font-style: italic;
            color: var(--gold-light);
        }

        /* ═══════════════════════════════════════
           ABOUT SECTION
        ═══════════════════════════════════════ */
        .about {
            background: linear-gradient(180deg, var(--obsidian) 0%, var(--charcoal) 100%);
        }

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

        .about-content p {
            font-size: 1.25rem;
            color: var(--silver);
            margin-bottom: 2rem;
            line-height: 1.9;
        }

        .about-stats {
            display: flex;
            gap: 4rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: left;
            cursor: none;
            transition: transform 0.3s var(--ease-out-expo);
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 4.5rem;
            font-weight: 600;
            color: var(--gold-light);
            line-height: 1;
        }

        .stat-label {
            font-size: 1.05rem;
            color: var(--mist);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 0.5rem;
        }

        /* Visual Element - Animated */
        .about-visual {
            position: relative;
            height: 550px;
        }

        .visual-container {
            position: relative;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--graphite) 0%, var(--charcoal) 100%);
            border: 1px solid var(--slate);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .visual-container::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 1px solid var(--gold);
            z-index: -1;
        }

        /* Animated circles inside visual */
        .visual-circles {
            position: relative;
            width: 300px;
            height: 300px;
        }

        .v-circle {
            position: absolute;
            border: 1px solid var(--gold);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .v-circle-1 {
            width: 100%;
            height: 100%;
            opacity: 0.2;
            animation: vPulse 4s ease-in-out infinite;
        }

        .v-circle-2 {
            width: 75%;
            height: 75%;
            opacity: 0.3;
            animation: vPulse 4s ease-in-out infinite 0.5s;
        }

        .v-circle-3 {
            width: 50%;
            height: 50%;
            opacity: 0.5;
            animation: vPulse 4s ease-in-out infinite 1s;
        }

        @keyframes vPulse {

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

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

        .visual-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            fill: var(--gold-light);
            filter: drop-shadow(0 0 30px rgba(240, 192, 90, 0.4));
            animation: logoGlow 3s ease-in-out infinite;
        }

        @keyframes logoGlow {

            0%,
            100% {
                filter: drop-shadow(0 0 20px rgba(240, 192, 90, 0.3));
            }

            50% {
                filter: drop-shadow(0 0 40px rgba(240, 192, 90, 0.6));
            }
        }

        /* Floating dots */
        .visual-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            animation: dotFloat 3s ease-in-out infinite;
        }

        .visual-dot:nth-child(1) {
            top: 15%;
            left: 20%;
            animation-delay: 0s;
        }

        .visual-dot:nth-child(2) {
            top: 25%;
            right: 15%;
            animation-delay: 0.5s;
        }

        .visual-dot:nth-child(3) {
            bottom: 20%;
            left: 15%;
            animation-delay: 1s;
        }

        .visual-dot:nth-child(4) {
            bottom: 30%;
            right: 20%;
            animation-delay: 1.5s;
        }

        @keyframes dotFloat {

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

            50% {
                transform: translateY(-15px);
                opacity: 1;
            }
        }

        /* Corner accents */
        .corner-accent {
            position: absolute;
            width: 40px;
            height: 40px;
            border-color: var(--gold);
            border-style: solid;
        }

        .corner-accent.tl {
            top: 20px;
            left: 20px;
            border-width: 2px 0 0 2px;
        }

        .corner-accent.tr {
            top: 20px;
            right: 20px;
            border-width: 2px 2px 0 0;
        }

        .corner-accent.bl {
            bottom: 20px;
            left: 20px;
            border-width: 0 0 2px 2px;
        }

        .corner-accent.br {
            bottom: 20px;
            right: 20px;
            border-width: 0 2px 2px 0;
        }

        /* Purpose Section (Combined Vision + Mission) */
        .purpose-section {
            margin-top: 6rem;
            padding: 4rem 5rem;
            background: linear-gradient(135deg, var(--graphite) 0%, var(--charcoal) 100%);
            border: 1px solid var(--slate);
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 3rem;
            align-items: center;
            transition: all 0.4s var(--ease-out-expo);
        }

        .purpose-section:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
        }

        .purpose-icon {
            width: 80px;
            height: 80px;
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--gold-light);
        }

        .purpose-content h3 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 500;
            color: var(--gold-light);
            margin-bottom: 1rem;
        }

        .purpose-content p {
            font-size: 1.25rem;
            color: var(--silver);
            line-height: 1.9;
            max-width: 800px;
        }

        /* ═══════════════════════════════════════
           IMAGE DIVIDER
        ═══════════════════════════════════════ */
        .quote-divider {
            padding: 8rem 4rem;
            background: var(--graphite);
            position: relative;
            overflow: hidden;
        }

        .quote-divider::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(ellipse at 30% 50%, rgba(240, 192, 90, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(240, 192, 90, 0.03) 0%, transparent 50%);
        }

        .quote-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .quote-mark {
            font-family: var(--font-display);
            font-size: 8rem;
            color: var(--gold);
            opacity: 0.3;
            line-height: 0;
            margin-bottom: 2rem;
        }

        .quote-content blockquote {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3vw, 2.8rem);
            font-style: italic;
            color: var(--pearl);
            line-height: 1.5;
        }

        /* ═══════════════════════════════════════
           SERVICES SECTION - 3D CARDS
        ═══════════════════════════════════════ */
        .services {
            background: var(--charcoal);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            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='%23f0c05a' 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");
            pointer-events: none;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            perspective: 1000px;
        }

        .service-card {
            padding: 3rem;
            background: var(--graphite);
            border: 1px solid var(--slate);
            position: relative;
            overflow: hidden;
            transition: all 0.5s var(--ease-out-expo);
            transform-style: preserve-3d;
            cursor: none;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-glow));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s var(--ease-out-expo);
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(240, 192, 90, 0.08) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .service-card:hover {
            background: var(--slate);
            transform: translateY(-15px) rotateX(5deg) rotateY(-2deg);
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(240, 192, 90, 0.1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gold-pale);
            border-radius: 50%;
            transition: all 0.4s var(--ease-out-expo);
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            background: rgba(240, 192, 90, 0.2);
            box-shadow: 0 0 40px rgba(240, 192, 90, 0.3);
        }

        .service-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--gold-light);
            stroke-width: 1.5;
            fill: none;
        }

        .service-card h3 {
            font-family: var(--font-display);
            font-size: 1.9rem;
            font-weight: 500;
            color: var(--pearl);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--mist);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .service-list {
            list-style: none;
        }

        .service-list li {
            padding: 0.6rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--silver);
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .service-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-list li {
            transform: translateX(5px);
        }

        .service-card:hover .service-list li::before {
            box-shadow: 0 0 10px var(--gold);
        }

        /* ═══════════════════════════════════════
           VALUES SECTION - PREMIUM BENTO GRID
        ═══════════════════════════════════════ */
        .values {
            background: linear-gradient(180deg, var(--charcoal) 0%, var(--obsidian) 100%);
            position: relative;
            overflow: hidden;
        }

        .values::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(240, 192, 90, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(2, 280px);
            gap: 1.5rem;
        }

        .value-card {
            background: var(--graphite);
            border: 1px solid var(--slate);
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s var(--ease-out-expo);
            cursor: none;
            display: flex;
            flex-direction: column;
            min-height: 280px;
        }

        /* Bento Grid Sizing */
        .value-card:nth-child(1) {
            grid-column: span 5;
        }

        /* Trust - wide */
        .value-card:nth-child(2) {
            grid-column: span 4;
        }

        /* Collaboration */
        .value-card:nth-child(3) {
            grid-column: span 3;
            grid-row: span 2;
        }

        /* Innovation - tall */
        .value-card:nth-child(4) {
            grid-column: span 4;
        }

        /* Excellence */
        .value-card:nth-child(5) {
            grid-column: span 5;
        }

        /* Empathy - wide */

        /* Animated border gradient */
        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 1px solid transparent;
            background: linear-gradient(var(--graphite), var(--graphite)) padding-box,
                linear-gradient(135deg, var(--gold) 0%, transparent 50%, var(--gold) 100%) border-box;
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            z-index: 1;
        }

        /* Rotating glow - positioned behind content */
        .value-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, var(--gold), transparent 30%);
            opacity: 0;
            transition: opacity 0.5s ease;
            animation: borderRotate 4s linear infinite paused;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes borderRotate {
            to {
                transform: rotate(360deg);
            }
        }

        .value-card:hover {
            background: var(--charcoal);
            transform: translateY(-8px);
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(240, 192, 90, 0.15);
            border-color: var(--gold);
        }

        .value-card:hover::before {
            opacity: 1;
        }

        .value-card:hover::after {
            opacity: 0.15;
            animation-play-state: running;
        }

        /* Card number */
        .value-number {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-family: var(--font-display);
            font-size: 4rem;
            font-weight: 600;
            color: var(--gold);
            opacity: 0.1;
            line-height: 1;
            transition: all 0.4s ease;
            z-index: 2;
        }

        .value-card:hover .value-number {
            opacity: 0.3;
            transform: scale(1.1);
        }

        /* Card header - icon and title side by side */
        .value-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.25rem;
            position: relative;
            z-index: 3;
        }

        /* Icon container with animated ring */
        .value-icon-wrap {
            width: 70px;
            height: 70px;
            position: relative;
            flex-shrink: 0;
            z-index: 3;
        }

        .value-icon-ring {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .value-icon-ring circle {
            fill: none;
            stroke: var(--slate);
            stroke-width: 1;
            transition: all 0.5s ease;
        }

        .value-icon-ring .ring-progress {
            stroke: var(--gold);
            stroke-dasharray: 283;
            stroke-dashoffset: 283;
            transition: stroke-dashoffset 0.8s var(--ease-out-expo);
            transform: rotate(-90deg);
            transform-origin: center;
        }

        .value-card:hover .ring-progress {
            stroke-dashoffset: 0;
        }

        .value-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 32px;
            height: 32px;
            transition: all 0.4s var(--ease-out-expo);
        }

        .value-icon svg {
            width: 100%;
            height: 100%;
            stroke: var(--gold-light);
            stroke-width: 1.5;
            fill: none;
            transition: all 0.4s ease;
        }

        .value-card:hover .value-icon {
            transform: translate(-50%, -50%) scale(1.15);
        }

        .value-card:hover .value-icon svg {
            stroke: var(--gold-glow);
            filter: drop-shadow(0 0 10px rgba(240, 192, 90, 0.5));
        }

        /* Title in header */
        .value-header h3 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 500;
            color: var(--pearl);
            margin: 0;
            transition: all 0.3s ease;
        }

        .value-card:hover .value-header h3 {
            color: var(--gold-light);
            text-shadow: 0 0 30px rgba(240, 192, 90, 0.3);
        }

        /* Description text */
        .value-card>p {
            font-size: 1.15rem;
            color: var(--silver);
            line-height: 1.7;
            position: relative;
            z-index: 3;
            transition: all 0.3s ease;
            margin: 0;
        }

        .value-card:hover>p {
            color: var(--pearl);
        }

        /* Special styling for tall card (Innovation) */
        .value-card:nth-child(3) {
            padding: 3rem;
        }

        .value-card:nth-child(3) .value-icon-wrap {
            width: 90px;
            height: 90px;
        }

        .value-card:nth-child(3) .value-icon {
            width: 45px;
            height: 45px;
        }

        .value-card:nth-child(3) .value-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }

        .value-card:nth-child(3) .value-header h3 {
            font-size: 2.5rem;
        }

        .value-card:nth-child(3)>p {
            font-size: 1.25rem;
        }

        /* Decorative corner */
        .value-corner {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 30px;
            height: 30px;
            border-right: 1px solid var(--ash);
            border-bottom: 1px solid var(--ash);
            transition: all 0.4s ease;
            z-index: 2;
        }

        .value-card:hover .value-corner {
            border-color: var(--gold);
            width: 40px;
            height: 40px;
        }

        /* ═══════════════════════════════════════
           MODAL POPUP
        ═══════════════════════════════════════ */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 5, 5, 0.95);
            backdrop-filter: blur(10px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s var(--ease-out-expo);
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-container {
            width: 90%;
            max-width: 550px;
            background: var(--graphite);
            border: 1px solid var(--slate);
            position: relative;
            transform: translateY(50px) scale(0.95);
            transition: all 0.5s var(--ease-out-expo);
            max-height: 90vh;
            overflow-y: auto;
        }

        .modal-overlay.active .modal-container {
            transform: translateY(0) scale(1);
        }

        .modal-header {
            padding: 2.5rem 2.5rem 0;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 45px;
            height: 45px;
            background: var(--slate);
            border: 1px solid var(--ash);
            color: var(--pearl);
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--void);
            transform: rotate(90deg);
        }

        .modal-badge {
            display: inline-block;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--gold);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .modal-title {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--pearl);
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }

        .modal-title em {
            color: var(--gold-light);
            font-style: italic;
        }

        .modal-subtitle {
            color: var(--mist);
            font-size: 1.1rem;
        }

        .modal-body {
            padding: 2rem 2.5rem 2.5rem;
        }

        .modal-form {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .modal-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
        }

        .modal-form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .modal-form-group label {
            font-size: 0.9rem;
            color: var(--silver);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .modal-form-group input,
        .modal-form-group textarea,
        .modal-form-group select {
            padding: 1rem 1.25rem;
            background: var(--charcoal);
            border: 1px solid var(--slate);
            color: var(--pearl);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .modal-form-group input:focus,
        .modal-form-group textarea:focus,
        .modal-form-group select:focus {
            outline: none;
            border-color: var(--gold);
            background: var(--obsidian);
            box-shadow: 0 0 20px rgba(240, 192, 90, 0.1);
        }

        .modal-form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .modal-form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1rem;
            padding-right: 3rem;
        }

        .modal-form-group select option {
            background: var(--charcoal);
            color: var(--pearl);
        }

        .modal-submit {
            margin-top: 0.5rem;
            padding: 1.25rem 2rem;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
            border: none;
            color: var(--void);
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
            overflow: hidden;
        }

        .modal-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .modal-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(240, 192, 90, 0.4);
        }

        .modal-submit:hover::before {
            left: 100%;
        }

        .modal-footer {
            padding: 0 2.5rem 2rem;
            text-align: center;
        }

        .modal-alt {
            color: var(--mist);
            font-size: 0.95rem;
        }

        .modal-alt a {
            color: var(--gold-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .modal-alt a:hover {
            color: var(--gold-glow);
        }

        /* Modal decorative elements */
        .modal-decor {
            position: absolute;
            width: 150px;
            height: 150px;
            border: 1px solid rgba(240, 192, 90, 0.1);
            border-radius: 50%;
            pointer-events: none;
        }

        .modal-decor-1 {
            top: -50px;
            right: -50px;
        }

        .modal-decor-2 {
            bottom: -30px;
            left: -30px;
            width: 100px;
            height: 100px;
        }

        /* ═══════════════════════════════════════
           FLOATING WHATSAPP BUTTON
        ═══════════════════════════════════════ */
        .whatsapp-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 9000;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s var(--ease-out-expo);
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
            text-decoration: none;
        }

        .whatsapp-btn::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: #25D366;
            animation: whatsappPulse 2s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes whatsappPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.5;
            }

            50% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        .whatsapp-btn:hover {
            transform: scale(1.15);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-btn svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

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

            .modal-container {
                width: 95%;
            }

            .modal-header,
            .modal-body,
            .modal-footer {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }

            .modal-title {
                font-size: 2rem;
            }

            .whatsapp-btn {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 55px;
                height: 55px;
            }
        }

        /* ═══════════════════════════════════════
           CLIENTS SECTION
        ═══════════════════════════════════════ */
        .clients {
            background: var(--obsidian);
        }

        .client-feature {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            align-items: stretch;
            border: 1px solid var(--slate);
            overflow: hidden;
        }

        .client-visual {
            background: linear-gradient(135deg, var(--graphite) 0%, var(--slate) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem;
            position: relative;
            overflow: hidden;
        }

        .client-visual::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(240, 192, 90, 0.2);
            border-radius: 50%;
            animation: clientPulse 4s ease-in-out infinite;
        }

        .client-visual::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border: 1px solid rgba(240, 192, 90, 0.3);
            border-radius: 50%;
            animation: clientPulse 4s ease-in-out infinite 1s;
        }

        @keyframes clientPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.3;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.6;
            }
        }

        .client-logo-display {
            font-family: var(--font-display);
            font-size: 4rem;
            font-style: italic;
            color: var(--gold-light);
            position: relative;
            z-index: 1;
            text-shadow: 0 0 60px rgba(240, 192, 90, 0.3);
        }

        .client-feature-content {
            padding: 4rem;
            background: var(--graphite);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .client-type {
            font-size: 0.95rem;
            color: var(--gold);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .client-feature-content h3 {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 400;
            color: var(--pearl);
            margin-bottom: 1.5rem;
        }

        .client-feature-content h3 em {
            color: var(--gold-light);
        }

        .client-feature-content>p {
            color: var(--silver);
            font-size: 1.2rem;
            line-height: 1.9;
            margin-bottom: 2rem;
        }

        .client-link {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--gold-light);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .client-link svg {
            width: 20px;
            height: 20px;
            stroke: var(--gold-light);
            fill: none;
            transition: transform 0.3s ease;
        }

        .client-link:hover {
            color: var(--gold-glow);
        }

        .client-link:hover svg {
            transform: translate(4px, -4px);
        }

        /* Client Testimonials Grid */
        .client-testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .client-testimonial-card {
            background: var(--graphite);
            border: 1px solid var(--slate);
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .client-testimonial-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
        }

        .client-testimonial-card .client-logo {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .client-testimonial-card .client-logo img {
            max-height: 70px;
            max-width: 180px;
            object-fit: contain;
        }

        .client-testimonial-card .client-logo span {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--gold-light);
            font-style: italic;
        }

        .client-testimonial-card .client-logo .ascendance-logo {
            font-family: var(--font-body);
            font-size: 1.4rem;
            font-weight: 700;
            font-style: normal;
            color: var(--pearl);
            text-align: center;
            letter-spacing: 0.15em;
            line-height: 1.2;
        }

        .client-testimonial-card .client-logo .ascendance-logo small {
            font-size: 0.7rem;
            font-weight: 400;
            letter-spacing: 0.3em;
            color: #4CAF50;
        }

        .client-testimonial-card .client-logo .kim-logo {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            font-style: normal;
            color: var(--gold);
            text-align: center;
            letter-spacing: 0.1em;
            display: flex;
            flex-direction: column;
            align-items: center;
            line-height: 1;
        }

        .client-testimonial-card .client-logo .kim-logo small {
            font-size: 0.55rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            color: var(--silver);
            margin-top: 0.5rem;
        }

        .client-testimonial-card .client-logo .imbuto-logo {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 400;
            font-style: italic;
            color: #E8B84A;
            text-align: center;
            letter-spacing: 0.08em;
            display: flex;
            flex-direction: column;
            align-items: center;
            line-height: 1;
        }

        .client-testimonial-card .client-logo .imbuto-logo small {
            font-size: 0.65rem;
            font-weight: 500;
            font-style: normal;
            letter-spacing: 0.2em;
            color: var(--silver);
            margin-top: 0.4rem;
        }

        .client-testimonial-card .quote-icon {
            color: var(--gold);
            font-size: 2rem;
            line-height: 1;
            margin-bottom: 1rem;
            opacity: 0.6;
        }

        .client-testimonial-card .testimonial-text {
            font-style: italic;
            color: var(--silver);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .client-testimonial-card .client-name {
            font-family: var(--font-display);
            font-size: 1.2rem;
            color: var(--pearl);
            font-weight: 500;
        }

        .client-testimonial-card .client-role {
            font-size: 1rem;
            color: var(--mist);
        }

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

        /* ═══════════════════════════════════════
           CTA SECTION
        ═══════════════════════════════════════ */
        .cta-section {
            padding: 10rem 4rem;
            background: linear-gradient(135deg, var(--charcoal) 0%, var(--graphite) 50%, var(--charcoal) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(240, 192, 90, 0.08) 0%, transparent 70%);
            pointer-events: none;
            animation: ctaPulse 6s ease-in-out infinite;
        }

        @keyframes ctaPulse {

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

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

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            margin-bottom: 1.5rem;
        }

        .cta-title em {
            color: var(--gold-light);
            font-style: italic;
        }

        .cta-subtitle {
            font-size: 1.3rem;
            color: var(--silver);
            margin-bottom: 3rem;
        }

        /* ═══════════════════════════════════════
           CONTACT SECTION
        ═══════════════════════════════════════ */
        .contact {
            background: var(--obsidian);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 6rem;
        }

        .contact-info h3 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--pearl);
            margin-bottom: 1.5rem;
        }

        .contact-info>p {
            color: var(--silver);
            margin-bottom: 3rem;
            font-size: 1.2rem;
            line-height: 1.9;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(10px);
        }

        .contact-item svg {
            width: 26px;
            height: 26px;
            stroke: var(--gold);
            fill: none;
        }

        .contact-item span,
        .contact-item a {
            color: var(--pearl);
            font-size: 1.15rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--gold-light);
        }

        /* Contact CTA Card */
        .contact-cta-card {
            background: var(--graphite);
            border: 1px solid var(--slate);
            padding: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s var(--ease-out-expo);
        }

        .contact-cta-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
        }

        .contact-cta-content {
            text-align: center;
            max-width: 350px;
        }

        .contact-cta-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            background: var(--gold-pale);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-cta-icon svg {
            width: 36px;
            height: 36px;
            stroke: var(--gold-light);
            stroke-width: 1.5;
            fill: none;
        }

        .contact-cta-content h3 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 500;
            color: var(--pearl);
            margin-bottom: 1rem;
        }

        .contact-cta-content>p {
            color: var(--mist);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .contact-cta-content .btn-primary {
            width: 100%;
            text-align: center;
            display: block;
        }

        .contact-cta-alt {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--slate);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .contact-cta-alt span {
            color: var(--mist);
            font-size: 0.95rem;
        }

        .whatsapp-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #25D366;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .whatsapp-link svg {
            width: 20px;
            height: 20px;
            fill: #25D366;
        }

        .whatsapp-link:hover {
            color: #2eec76;
        }

        .whatsapp-link:hover svg {
            fill: #2eec76;
        }

        /* ═══════════════════════════════════════
           FOOTER
        ═══════════════════════════════════════ */
        footer {
            background: var(--void);
            padding: 4rem;
            border-top: 1px solid var(--slate);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-logo svg {
            width: 40px;
            height: 40px;
            fill: var(--gold);
        }

        .footer-logo span {
            font-family: var(--font-display);
            font-size: 1.5rem;
            color: var(--gold-light);
            letter-spacing: 0.1em;
        }

        .footer-tagline {
            color: var(--mist);
            font-size: 1.05rem;
            font-style: italic;
        }

        .footer-copyright {
            color: var(--ash);
            font-size: 0.95rem;
        }

        /* ═══════════════════════════════════════
           SCROLL ANIMATIONS
        ═══════════════════════════════════════ */
        .reveal {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s var(--ease-out-expo);
        }

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

        .reveal-left {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.8s var(--ease-out-expo);
        }

        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.8s var(--ease-out-expo);
        }

        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        .stagger-1 {
            transition-delay: 0.1s;
        }

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

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

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

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

        /* ═══════════════════════════════════════
           THE MANAGER BRIDGE PAGE
        ═══════════════════════════════════════ */
        .tmb-page {
            display: none;
            min-height: 100vh;
        }

        .tmb-page.active {
            display: block;
        }

        .main-content.hidden {
            display: none;
        }

        /* TMB Back Button */
        .tmb-back-btn {
            position: fixed;
            top: 100px;
            left: 2rem;
            z-index: 100;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            background: var(--graphite);
            border: 1px solid var(--slate);
            color: var(--pearl);
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .tmb-back-btn.visible {
            opacity: 1;
            visibility: visible;
        }

        .tmb-back-btn:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--void);
        }

        .tmb-back-btn svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }

        /* TMB Hero */
        .tmb-hero {
            background: linear-gradient(180deg, var(--void) 0%, var(--obsidian) 100%);
            padding: 10rem 4rem 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .tmb-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            height: 600px;
            background: radial-gradient(ellipse at center, rgba(240, 192, 90, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .tmb-hero .tmb-badge {
            display: inline-block;
            padding: 0.6rem 1.75rem;
            border: 1px solid var(--gold);
            color: var(--gold);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            margin-bottom: 2rem;
        }

        .tmb-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 4.5vw, 3.5rem);
            font-weight: 400;
            color: var(--pearl);
            margin-bottom: 1rem;
            letter-spacing: 0.08em;
        }

        .tmb-hero .tmb-subtitle {
            font-size: 1.2rem;
            color: var(--gold-light);
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .tmb-hero .tmb-tagline {
            font-size: 1.05rem;
            color: var(--silver);
            margin-bottom: 2.5rem;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        .tmb-hero .tmb-tagline span {
            color: var(--gold-light);
            font-weight: 500;
        }

        /* TMB Stats Section */
        .tmb-stats {
            background: var(--charcoal);
            padding: 5rem 4rem;
        }

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

        .tmb-stat-card {
            background: var(--graphite);
            border: 1px solid var(--slate);
            padding: 2rem;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
        }

        .tmb-stat-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--gold);
        }

        .tmb-stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
        }

        .tmb-stat-card .number {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--gold-light);
            margin-bottom: 0.5rem;
        }

        .tmb-stat-card p {
            color: var(--mist);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* TMB Framework Section */
        .tmb-framework {
            background: var(--obsidian);
            padding: 6rem 4rem;
        }

        .tmb-framework .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .tmb-framework-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
            color: var(--silver);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .tmb-directions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .tmb-direction-card {
            background: var(--graphite);
            border: 1px solid var(--slate);
            padding: 2rem;
            position: relative;
            transition: all 0.4s ease;
        }

        .tmb-direction-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
        }

        .tmb-direction-card.down::before {
            background: #4A9B7F;
        }

        .tmb-direction-card.up::before {
            background: #9B7FD4;
        }

        .tmb-direction-card.across::before {
            background: var(--gold);
        }

        .tmb-direction-card:hover {
            transform: translateY(-5px);
            border-color: var(--ash);
        }

        .tmb-direction-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 0.25rem;
            letter-spacing: 0.05em;
        }

        .tmb-direction-card.down h3 {
            color: #4A9B7F;
        }

        .tmb-direction-card.up h3 {
            color: #9B7FD4;
        }

        .tmb-direction-card.across h3 {
            color: var(--gold-light);
        }

        .tmb-direction-card .focus {
            color: var(--mist);
            font-size: 0.9rem;
            margin-bottom: 1.25rem;
            font-style: italic;
        }

        .tmb-direction-card ul {
            list-style: none;
        }

        .tmb-direction-card li {
            padding: 0.6rem 0;
            border-bottom: 1px solid var(--slate);
            color: var(--silver);
            font-size: 0.9rem;
        }

        .tmb-direction-card li:last-child {
            border-bottom: none;
        }

        /* TMB Curriculum Section */
        .tmb-curriculum {
            background: var(--charcoal);
            padding: 5rem 4rem;
        }

        .tmb-weeks-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .tmb-week-card {
            background: var(--graphite);
            border: 1px solid var(--slate);
            padding: 1.5rem;
            transition: all 0.4s ease;
        }

        .tmb-week-card:hover {
            transform: translateY(-3px);
            border-color: var(--gold);
        }

        .tmb-week-card .week-number {
            font-size: 0.75rem;
            color: var(--mist);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.4rem;
        }

        .tmb-week-card h4 {
            font-family: var(--font-display);
            font-size: 1.05rem;
            color: var(--pearl);
            margin-bottom: 0.75rem;
        }

        .tmb-direction-tag {
            display: inline-block;
            padding: 0.3rem 0.75rem;
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .tmb-direction-tag.down {
            background: #4A9B7F;
            color: white;
        }

        .tmb-direction-tag.up {
            background: #9B7FD4;
            color: white;
        }

        .tmb-direction-tag.across {
            background: var(--gold);
            color: var(--void);
        }

        .tmb-direction-tag.foundation {
            background: var(--slate);
            color: var(--pearl);
        }

        /* TMB Benefits Section */
        .tmb-benefits {
            background: var(--obsidian);
            padding: 6rem 4rem;
        }

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

        .tmb-benefit-card {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--graphite);
            border: 1px solid var(--slate);
            transition: all 0.3s ease;
        }

        .tmb-benefit-card:hover {
            border-color: var(--gold);
            transform: translateY(-3px);
        }

        .tmb-benefit-card .icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--gold);
        }

        .tmb-benefit-card .icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5;
        }

        .tmb-benefit-card h4 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            color: var(--pearl);
            margin-bottom: 0.5rem;
        }

        .tmb-benefit-card p {
            color: var(--mist);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* TMB Testimonials Section */
        .tmb-testimonials {
            background: var(--charcoal);
            padding: 5rem 4rem;
        }

        .tmb-testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .tmb-testimonial-card {
            background: var(--graphite);
            border: 1px solid var(--slate);
            border-left: 2px solid var(--gold);
            padding: 1.75rem;
        }

        .tmb-testimonial-card .quote {
            font-style: italic;
            color: var(--silver);
            line-height: 1.7;
            margin-bottom: 1.25rem;
            font-size: 0.9rem;
        }

        .tmb-testimonial-card .author {
            color: var(--gold-light);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .tmb-testimonial-card .role {
            color: var(--mist);
            font-size: 0.8rem;
        }

        /* TMB Pricing Section */
        .tmb-pricing {
            background: var(--obsidian);
            padding: 5rem 4rem;
        }

        .tmb-pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 950px;
            margin: 0 auto;
        }

        .tmb-pricing-card {
            background: var(--graphite);
            border: 1px solid var(--slate);
            padding: 2rem;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
        }

        .tmb-pricing-card.featured {
            border: 1px solid var(--gold);
            transform: scale(1.03);
        }

        .tmb-pricing-card.featured::before {
            content: 'RECOMMENDED';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--void);
            padding: 0.3rem 0.9rem;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        .tmb-pricing-card:hover {
            border-color: var(--gold);
        }

        .tmb-pricing-card h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            color: var(--pearl);
            margin-bottom: 1.25rem;
        }

        .tmb-pricing-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .tmb-pricing-card li {
            padding: 0.6rem 0;
            border-bottom: 1px solid var(--slate);
            color: var(--silver);
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .tmb-pricing-card li::before {
            content: '✓';
            color: #4A9B7F;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .tmb-pricing-card .btn-primary {
            display: block;
            width: 100%;
            padding: 1rem 1.5rem;
            text-align: center;
            font-size: 0.85rem;
            box-sizing: border-box;
        }

        /* TMB CTA Section */
        .tmb-cta-section {
            background: var(--charcoal);
            padding: 5rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .tmb-cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .tmb-cta-section h2 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 400;
            color: var(--pearl);
            margin-bottom: 0.75rem;
        }

        .tmb-cta-section h2 em {
            color: var(--gold-light);
            font-style: italic;
        }

        .tmb-cta-section p {
            font-size: 1.1rem;
            color: var(--silver);
            margin-bottom: 2.5rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .tmb-cta-section .btn-primary {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
            color: var(--void);
        }

        .tmb-cta-section .btn-primary:hover {
            box-shadow: 0 15px 40px rgba(240, 192, 90, 0.3);
        }

        /* ═══════════════════════════════════════
           RESPONSIVE
        ═══════════════════════════════════════ */
        @media (max-width: 1200px) {

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .values-grid {
                grid-template-columns: repeat(6, 1fr);
                grid-template-rows: repeat(3, auto);
            }

            .value-card:nth-child(1) {
                grid-column: span 3;
                grid-row: span 1;
            }

            .value-card:nth-child(2) {
                grid-column: span 3;
                grid-row: span 1;
            }

            .value-card:nth-child(3) {
                grid-column: span 3;
                grid-row: span 2;
            }

            .value-card:nth-child(4) {
                grid-column: span 3;
                grid-row: span 1;
            }

            .value-card:nth-child(5) {
                grid-column: span 3;
                grid-row: span 1;
            }

            .value-card {
                min-height: 200px;
            }

            .value-header h3 {
                font-size: 1.85rem;
            }

            .value-card>p {
                font-size: 1.05rem;
            }
        }

        @media (max-width: 992px) {
            .section-pad {
                padding: 5rem 2rem;
            }

            .nav-container {
                padding: 0 2rem;
            }

            .about-grid,
            .contact-grid,
            .client-feature {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .purpose-section {
                grid-template-columns: 1fr;
                text-align: center;
                justify-items: center;
            }

            .values-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }

            .value-card:nth-child(1),
            .value-card:nth-child(2),
            .value-card:nth-child(3),
            .value-card:nth-child(4),
            .value-card:nth-child(5) {
                grid-column: span 1;
                grid-row: span 1;
            }

            .value-card:nth-child(5) {
                grid-column: span 2;
            }

            .value-card {
                min-height: 180px;
            }

            .value-card:nth-child(3) .value-icon-wrap {
                width: 70px;
                height: 70px;
            }

            .value-card:nth-child(3) .value-icon {
                width: 32px;
                height: 32px;
            }

            .value-card:nth-child(3) .value-header {
                flex-direction: row;
                gap: 1.25rem;
            }

            .value-card:nth-child(3) .value-header h3 {
                font-size: 1.85rem;
            }

            .value-header h3 {
                font-size: 1.75rem;
            }

            .value-card>p {
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            body {
                font-size: clamp(15px, 4vw, 16px);
            }

            .section-pad {
                padding: 4rem 1.5rem;
            }

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

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

            .value-card:nth-child(5) {
                grid-column: span 1;
            }

            .value-card {
                min-height: 160px;
            }

            .value-header h3 {
                font-size: 1.6rem;
            }

            .value-card>p {
                font-size: 0.95rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }

            .about-stats {
                flex-direction: column;
                gap: 2rem;
            }

            .shape {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .section-pad {
                padding: 4rem 1.5rem;
            }

            .value-card {
                min-height: 140px;
                padding: 1.75rem;
            }

            .value-icon-wrap {
                width: 55px;
                height: 55px;
            }

            .value-icon {
                width: 26px;
                height: 26px;
            }

            .value-header {
                gap: 1rem;
                margin-bottom: 1rem;
            }

            .value-header h3 {
                font-size: 1.4rem;
            }

            .value-card>p {
                font-size: 0.9rem;
            }

            .value-number {
                font-size: 2.5rem;
                top: 1rem;
                right: 1rem;
            }
        }

        /* TMB Responsive */
        @media (max-width: 1200px) {

            .tmb-directions-grid,
            .tmb-benefits-grid,
            .tmb-testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .tmb-weeks-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .tmb-pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .tmb-pricing-card.featured {
                transform: scale(1);
            }
        }

        @media (max-width: 992px) {
            .tmb-hero {
                padding: 8rem 2rem 5rem;
            }

            .tmb-hero h1 {
                font-size: 2.2rem;
            }

            .tmb-hero .tmb-subtitle {
                font-size: 1.1rem;
            }

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

            .tmb-directions-grid,
            .tmb-benefits-grid,
            .tmb-testimonial-grid {
                grid-template-columns: 1fr;
            }

            .tmb-framework,
            .tmb-curriculum,
            .tmb-benefits,
            .tmb-testimonials,
            .tmb-pricing,
            .tmb-stats {
                padding: 4rem 2rem;
            }

            .tmb-back-btn {
                top: 90px;
                left: 1rem;
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
            }
        }

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

            .tmb-hero h1 {
                font-size: 1.9rem;
            }

            .tmb-hero .tmb-subtitle {
                font-size: 1.1rem;
            }

            .tmb-cta-section h2 {
                font-size: 1.5rem;
            }

            .tmb-pricing-card.featured {
                transform: scale(1);
            }
        }

        @media (max-width: 480px) {
            .tmb-hero {
                padding: 7rem 1.5rem 4rem;
            }

            .tmb-hero h1 {
                font-size: 1.6rem;
                letter-spacing: 0;
            }

            .tmb-back-btn {
                position: relative;
                top: auto;
                left: auto;
                margin: 1rem;
            }
        }

        /* ═══════════════════════════════════════
   IOS & MOBILE OPTIMIZATION
═══════════════════════════════════════ */

        /* Hide custom cursor on iOS and touch devices */
        @media (hover: none) and (pointer: coarse) {

            .cursor,
            .cursor-dot,
            .mouse-glow {
                display: none !important;
                opacity: 0 !important;
            }

            /* Reset body cursor to default on touch devices */
            body,
            a,
            button,
            input,
            textarea,
            select {
                cursor: auto !important;
            }
        }

        /* Fix iOS Safari viewport height issues */
        /* Fix iOS Safari viewport height issues */
        @supports (-webkit-touch-callout: none) {
            .hero {
                min-height: 100vh;
                min-height: 100svh;
            }

            body {
                min-height: 100vh;
                min-height: 100svh;
            }
        }

        /* Fix navigation overlap on mobile */
        @media (max-width: 992px) {
            .nav-container {
                position: relative;
                z-index: 1001;
            }

            .nav-cta {
                position: relative;
                z-index: 10;
            }

            /* Add more padding to hero - increased from default */
            .hero {
                padding-top: 8rem !important;
            }

            .hero-tagline {
                margin-top: 2rem;
            }
        }

        /* Adjust padding for smaller screens to avoid "half screen" gap */
        @media (max-width: 768px) {
            .hero {
                padding-top: 6rem !important;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding-top: 5rem !important;
            }
        }

        /* Fix WhatsApp button positioning on mobile */
        @media (max-width: 768px) {
            .whatsapp-btn {
                bottom: 5rem !important;
                right: 1rem;
                width: 50px;
                height: 50px;
                z-index: 8999;
            }

            .whatsapp-btn svg {
                width: 26px;
                height: 26px;
            }
        }

        /* Fix client logo backgrounds */
        .client-testimonial-card .client-logo img {
            background: transparent !important;
            mix-blend-mode: screen;
        }

        /* Prevent iOS zoom on input focus */
        input,
        select,
        textarea {
            font-size: 16px !important;
        }

        /* Fix iOS button appearance */
        button,
        .btn-primary,
        .btn-secondary,
        .nav-cta {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        /* Improve tap targets for iOS (minimum 44px) */
        @media (max-width: 768px) {
            .nav-links a {
                padding: 0.75rem 0.5rem;
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .btn-primary,
            .btn-secondary {
                min-height: 44px;
            }
        }

        /* Fix iOS rubber-band scroll issues */
        html,
        body {
            overscroll-behavior-y: none;
        }

        /* Improve iOS touch scrolling */
        .modal-container,
        .nav-links {
            -webkit-overflow-scrolling: touch;
        }

        /* ═══════════════════════════════════════
   ENROLLMENT MODAL
═══════════════════════════════════════ */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(15px);
            z-index: 100000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s var(--ease-out-expo);
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .modal-content {
            background: rgba(17, 17, 17, 0.8);
            border: 1px solid var(--slate);
            border-radius: 12px;
            padding: 2.5rem;
            max-width: 600px;
            width: 90%;
            transform: translateY(30px);
            transition: transform 0.4s var(--ease-out-expo);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }

        .modal-title {
            font-family: var(--font-display);
            color: var(--gold-light);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid var(--slate);
            padding-bottom: 0.5rem;
        }

        .modal-body {
            color: var(--silver);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .modal-body ul {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
        }

        .modal-body li {
            margin-bottom: 0.8rem;
        }

        .modal-body strong {
            color: var(--pearl);
            font-weight: 500;
        }

        .modal-actions {
            display: flex;
            justify-content: flex-end;
            gap: 1.5rem;
            align-items: center;
        }

        .btn-secondary {
            background: transparent;
            border: none;
            color: var(--silver);
            font-size: 0.95rem;
            cursor: pointer;
            font-family: var(--font-body);
            transition: color 0.3s ease;
        }

        .btn-secondary:hover {
            color: var(--gold);
        }

        @media (max-width: 768px) {
            .modal-content {
                padding: 2rem 1.5rem;
            }

            .modal-actions {
                flex-direction: column-reverse;
                gap: 1rem;
            }

            .modal-actions button {
                width: 100%;
            }
        }

        /* ═══════════════════════════════════════
   SYLLABUS TIMELINE
═══════════════════════════════════════ */
        .tmb-syllabus {
            background: var(--charcoal);
            padding: 6rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 20px;
            width: 2px;
            background: var(--slate);
            z-index: 1;
        }

        .timeline-item {
            position: relative;
            padding-left: 60px;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s var(--ease-out-expo);
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-dot {
            position: absolute;
            left: 12px;
            top: 6px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--graphite);
            border: 3px solid var(--slate);
            z-index: 2;
            transition: all 0.4s ease;
        }

        .timeline-item.visible .timeline-dot {
            background: var(--gold);
            border-color: var(--gold-deep);
            box-shadow: 0 0 15px var(--gold-pale);
        }

        .timeline-content {
            background: var(--graphite);
            border: 1px solid var(--slate);
            padding: 1.5rem 2rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-content {
            border-color: var(--gold);
            transform: translateX(5px);
        }

        .timeline-content h3 {
            font-family: var(--font-display);
            color: var(--pearl);
            margin-bottom: 0.5rem;
            font-size: 1.25rem;
        }

        .timeline-content p {
            color: var(--silver);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .timeline-content strong {
            color: var(--gold-light);
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .tmb-syllabus {
                padding: 4rem 1.5rem;
            }

            .timeline::before {
                left: 10px;
            }

            .timeline-item {
                padding-left: 40px;
            }

            .timeline-dot {
                left: 2px;
            }

            .timeline-content {
                padding: 1.25rem;
            }
        }