:root {
            --orange-primary: #FF6A2B;
            --orange-dark: #F15A29;
            --orange-darker: #D8420F;
            --orange-gradient: linear-gradient(135deg, #F15A29 0%, #D84315 100%);
            --orange-hover: linear-gradient(135deg, #FF6B38 0%, #F15A29 100%);
            --orange-light: #FF8A50;
            --orange-lightest: #FFB27A;
            --orange-glow: rgba(241, 90, 41, 0.15);
            --warm-bg: #FFF6EE;
            --warm-bg-2: #FFF0EB;
            --warm-bg-3: #FAF6F2;
            --white: #FFFFFF;
            --black: #201A17;
            --text-primary: #201A17;
            --text-secondary: #666666;
            --text-muted: #B8ADA2;
            --border-light: #F0DFCE;
            --border-warm: #F8E3D8;
            --gray-50: #FAFAFA;
            --gray-100: #F5F5F5;
            --gray-200: #EEEEEE;
            --gray-300: #E0E0E0;
            --gray-400: #BDBDBD;
            --gray-500: #9E9E9E;
            --gray-600: #757575;
            --gray-700: #616161;
            --shadow-sm: 0 2px 8px rgba(32, 26, 23, 0.06);
            --shadow-md: 0 4px 20px rgba(32, 26, 23, 0.08);
            --shadow-lg: 0 10px 40px rgba(32, 26, 23, 0.12);
            --shadow-orange: 0 10px 25px -5px rgba(241, 90, 41, 0.4), 0 8px 10px -6px rgba(241, 90, 41, 0.2);
            --shadow-orange-lg: 0 20px 44px rgba(255, 106, 43, 0.5);
            --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        html {
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: #A79885 #FFF6EE;
        }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #FFF6EE; }
        ::-webkit-scrollbar-thumb { background: #A79885; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: #736657; }

        ::selection {
            background: #FF6A2B;
            color: white;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--white);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            color: var(--text-primary);
        }

        .font-mono {
            font-family: 'IBM Plex Mono', monospace;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
            transition: var(--transition);
        }

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

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
        }

        .logo img {
            height: 36px;
            width: auto;
        }

        .logo-text {
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            font-size: 22px;
            letter-spacing: -0.5px;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 14px;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange-primary);
            border-radius: 2px;
            transition: var(--transition);
        }

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

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

        .nav-cta {
            background: var(--orange-gradient) !important;
            color: white !important;
            padding: 12px 28px !important;
            border-radius: 9999px !important;
            font-weight: 600 !important;
            font-size: 15px !important;
            box-shadow: var(--shadow-orange);
            transition: var(--transition);
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: var(--shadow-orange-lg) !important;
            background: var(--orange-hover) !important;
        }

        .nav-btn-secondary {
            background: transparent !important;
            color: var(--text-primary) !important;
            padding: 12px 28px !important;
            border-radius: 9999px !important;
            font-weight: 600 !important;
            font-size: 15px !important;
            border: 2px solid var(--border-light) !important;
            transition: var(--transition);
        }

        .nav-btn-secondary::after {
            display: none !important;
        }

        .nav-btn-secondary:hover {
            border-color: var(--orange-primary) !important;
            color: var(--orange-primary) !important;
            transform: translateY(-2px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-primary);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 30px 0 80px;
            background: linear-gradient(135deg, #fff9f5 0%, #fff 50%, #fff9f5 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-logo {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .hero-logo img {
            height: 55px;
            width: auto;
            object-fit: contain;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero-content {
            animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        @keyframes fade-in-up {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--warm-bg);
            padding: 8px 18px;
            border-radius: 9999px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12.5px;
            font-weight: 500;
            color: var(--orange-dark);
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border: 1px solid var(--border-warm);
        }

        .hero-badge i {
            color: var(--orange-primary);
        }

        .hero-badge-event {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--orange-primary);
            padding: 8px 20px;
            border-radius: 9999px;
            font-family: 'Sora', sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: white;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .hero-slots-wrapper {
            margin-bottom: 32px;
            text-align: center;
        }

        .hero-slots-label {
            font-family: 'Sora', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 12px;
        }

        .hero h1 {
            font-size: clamp(30px, 4.6vw, 60px);
            line-height: 1.15;
            margin-bottom: 24px;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .hero h1 span {
            background: linear-gradient(135deg, #FF6A2B 0%, #FF8A50 50%, #FFB27A 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .highlight-text {
            background: linear-gradient(135deg, #FF6A2B 0%, #FF8A50 50%, #FFB27A 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .highlight-text::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(135deg, #FF6A2B 0%, #FF8A50 50%, #FFB27A 100%);
            border-radius: 2px;
        }

        .hero-subtitle {
            font-size: clamp(16px, 1.6vw, 18px);
            color: var(--text-secondary);
            margin-bottom: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
            text-align: center;
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 32px;
            justify-content: center;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            color: var(--text-primary);
            font-weight: 500;
        }

        .meta-item i {
            color: var(--orange-primary);
            font-size: 16px;
        }

        .hero-slots {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 32px;
            justify-content: center;
        }

        .hero-slot {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: linear-gradient(135deg, rgba(255, 106, 43, 0.1) 0%, rgba(255, 138, 80, 0.1) 100%);
            border: 1px solid rgba(255, 106, 43, 0.2);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            color: var(--orange-primary);
        }

        .hero-slot i {
            font-size: 14px;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 24px;
            justify-content: center;
        }

        .hero-urgency {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: linear-gradient(135deg, rgba(255, 106, 43, 0.1) 0%, rgba(241, 90, 41, 0.05) 100%);
            border: 1px solid rgba(255, 106, 43, 0.2);
            border-radius: 12px;
            font-size: 14px;
            color: var(--text-secondary);
            animation: pulse-glow 2s ease-in-out infinite;
            margin: 0 auto 20px;
        }

        .hero-urgency i {
            color: #FF6A2B;
            font-size: 18px;
        }

        .hero-urgency strong {
            color: var(--orange-primary);
            transition: all 0.3s ease;
            display: inline-block;
        }

        .meta-free {
            background: linear-gradient(135deg, #FF6A2B 0%, #FF4500 100%) !important;
            color: white !important;
            padding: 6px 14px !important;
            border-radius: 20px !important;
            font-weight: 700 !important;
            animation: pulse-free 2s ease-in-out infinite;
            box-shadow: 0 0 12px rgba(255, 106, 43, 0.4);
        }

        .meta-free i {
            color: white !important;
        }

        @keyframes pulse-free {
            0%, 100% {
                box-shadow: 0 0 12px rgba(255, 106, 43, 0.4);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 20px rgba(255, 106, 43, 0.7);
                transform: scale(1.03);
            }
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255, 106, 43, 0.2); }
            50% { box-shadow: 0 0 20px 5px rgba(255, 106, 43, 0.15); }
        }

        .btn-lg {
            padding: 18px 40px;
            font-size: 17px;
        }

        .hero-social-proof {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
        }

        .hero-avatars {
            display: flex;
        }

        .hero-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 11px;
            font-weight: 700;
            font-family: 'Sora', sans-serif;
            border: 3px solid white;
            margin-left: -10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .hero-avatar:first-child {
            margin-left: 0;
        }

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

        .hero-avatar-more {
            background: var(--orange-primary);
        }

        .hero-social-proof span {
            font-size: 14px;
            color: var(--text-muted);
        }

        .hero-social-proof strong {
            color: var(--text-primary);
        }

        /* Offer Timer Section */
        .offer-timer-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a1412 0%, #0d0b09 50%, #1a1412 100%);
            position: relative;
            overflow: hidden;
        }

        .offer-timer-bg {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 106, 43, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 106, 43, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .offer-timer-wrapper {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .offer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: linear-gradient(135deg, #FF6A2B 0%, #F15A29 100%);
            border-radius: 100px;
            margin-bottom: 16px;
            animation: badge-pulse 2s ease-in-out infinite;
        }

        @keyframes badge-pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255, 106, 43, 0.4); }
            50% { box-shadow: 0 0 20px 5px rgba(255, 106, 43, 0.2); }
        }

        .offer-badge i {
            color: #FFD700;
            font-size: 14px;
        }

        .offer-badge span {
            font-size: 12px;
            font-weight: 700;
            color: white;
            letter-spacing: 2px;
        }

        .offer-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: white;
            margin-bottom: 12px;
        }

        .offer-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
        }

        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 40px;
        }

        .countdown-box {
            position: relative;
        }

        .countdown-circle {
            width: 100px;
            height: 100px;
            position: relative;
        }

        .countdown-circle svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }

        .countdown-ring-bg {
            fill: none;
            stroke: rgba(255, 106, 43, 0.2);
            stroke-width: 6;
        }

        .countdown-ring {
            fill: none;
            stroke: #FF6A2B;
            stroke-width: 6;
            stroke-linecap: round;
            stroke-dasharray: 283;
            stroke-dashoffset: 0;
            transition: stroke-dashoffset 1s linear;
        }

        .countdown-value {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }

        .countdown-value .countdown-number {
            display: block;
            font-family: 'Sora', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: white;
            line-height: 1;
        }

        .countdown-value .countdown-label {
            display: block;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 4px;
        }

        .offer-cta {
            margin-bottom: 30px;
        }

        .offer-btn {
            font-size: 16px;
            padding: 18px 40px;
            animation: cta-glow 2s ease-in-out infinite;
        }

        @keyframes cta-glow {
            0%, 100% { box-shadow: 0 8px 32px rgba(255, 106, 43, 0.3); }
            50% { box-shadow: 0 12px 48px rgba(255, 106, 43, 0.5); }
        }

        .offer-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 16px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        .offer-guarantee i {
            color: #4CAF50;
        }

        .offer-seats {
            display: none;
            max-width: 400px;
            margin: 0 auto;
        }

        .seats-progress {
            height: 6px;
            background: rgba(255, 106, 43, 0.2);
            border-radius: 100px;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .seats-progress-bar {
            height: 100%;
            width: 85%;
            background: linear-gradient(90deg, #FF6A2B 0%, #FFD700 100%);
            border-radius: 100px;
            animation: progress-glow 2s ease-in-out infinite;
        }

        @keyframes progress-glow {
            0%, 100% { box-shadow: 0 0 10px rgba(255, 106, 43, 0.5); }
            50% { box-shadow: 0 0 20px rgba(255, 106, 43, 0.8); }
        }

        .seats-text {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

        .seats-text i {
            color: #FF6A2B;
            animation: fire-flicker 0.5s ease-in-out infinite alternate;
        }

        @keyframes fire-flicker {
            from { transform: scale(1); }
            to { transform: scale(1.2); }
        }

        .seats-text strong {
            color: #FF6A2B;
        }

        @media (max-width: 600px) {
            .countdown-container {
                gap: 12px;
            }
            .countdown-circle {
                width: 70px;
                height: 70px;
            }
            .countdown-value .countdown-number {
                font-size: 24px;
            }
        }
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(255, 106, 43, 0.1) 0%, rgba(255, 106, 43, 0.05) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .stat-icon i {
            font-size: 20px;
            color: var(--orange-primary);
        }

        .stat-number {
            font-family: 'Sora', sans-serif;
            font-size: 36px;
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1;
            display: inline;
        }

        .stat-suffix {
            font-family: 'Sora', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--orange-primary);
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        .stat-divider {
            width: 1px;
            height: 50px;
            background: var(--border-light);
        }

        @media (max-width: 768px) {
            .stats-grid {
                gap: 24px;
            }
            .stat-divider {
                display: none;
            }
            .stat-item {
                min-width: 120px;
            }
            .stat-number {
                font-size: 28px;
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 9999px;
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--orange-gradient);
            color: white;
            box-shadow: var(--shadow-orange);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: var(--shadow-orange-lg);
            background: var(--orange-hover);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.14);
            color: var(--text-primary);
            border: 1px solid var(--border-light);
            backdrop-filter: blur(12px);
        }

        .btn-secondary:hover {
            border-color: rgba(241, 90, 41, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.29);
        }

        .hero-visual {
            position: relative;
            animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
        }

        .hero-image-container {
            position: relative;
            border-radius: 32px;
            overflow: hidden;
            background: linear-gradient(135deg, #201A17 0%, #111111 100%);
            aspect-ratio: 4/3;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 30px 60px -15px rgba(32, 26, 23, 0.3);
        }

        .hero-placeholder {
            text-align: center;
            color: white;
            padding: 40px;
        }

        .hero-placeholder i {
            font-size: 5rem;
            margin-bottom: 24px;
            background: var(--orange-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-placeholder p {
            font-size: 1.1rem;
            opacity: 0.8;
            font-family: 'Sora', sans-serif;
            font-weight: 600;
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 16px 20px;
            border-radius: 20px;
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 6s ease-in-out infinite;
        }

        .floating-card:nth-child(2) {
            top: 20%;
            right: -20px;
            animation-delay: 0.5s;
        }

        .floating-card:nth-child(3) {
            bottom: 20%;
            left: -20px;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(1deg); }
        }

        .floating-card-icon {
            width: 48px;
            height: 48px;
            background: var(--orange-gradient);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .floating-card-text {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 14px;
            color: var(--text-primary);
        }

        .floating-card-sub {
            font-size: 12.5px;
            color: var(--text-muted);
        }

        /* Hero Visual Content */
        .hero-visual-content {
            width: 100%;
            height: 100%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hero-visual-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 32px;
        }

        .hero-visual-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 20px;
            padding: 24px;
            text-align: center;
            color: white;
            transition: var(--transition);
        }

        .hero-visual-card:hover {
            background: rgba(255, 106, 43, 0.2);
            border-color: var(--orange-primary);
            transform: translateY(-5px);
        }

        .hero-visual-icon {
            font-size: 2rem;
            margin-bottom: 12px;
            color: var(--orange-primary);
        }

        .hero-visual-card span {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 14px;
        }

        .hero-visual-center {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            color: white;
            cursor: pointer;
            transition: var(--transition);
        }

        .hero-visual-center:hover {
            transform: scale(1.05);
        }

        .hero-visual-center i {
            font-size: 4rem;
            color: var(--orange-primary);
            text-shadow: 0 0 30px rgba(255, 106, 43, 0.5);
        }

        .hero-visual-center span {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 14px;
            opacity: 0.8;
        }

        /* Gallery Styles */
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: white;
            z-index: 1;
        }

        .gallery-overlay i {
            font-size: 2.5rem;
            opacity: 0.9;
        }

        .gallery-overlay span {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 14px;
            text-align: center;
            padding: 0 16px;
        }

        .gallery-workshop {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        }

        .gallery-students {
            background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-darker) 100%);
        }

        .gallery-reel {
            background: linear-gradient(135deg, #201A17 0%, #3d3530 100%);
        }

        .gallery-certificate {
            background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
        }

        .gallery-video {
            background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
        }

        /* Trust Section */
        .trust-section {
            padding: 40px 0;
            background: var(--white);
            border-bottom: 1px solid var(--border-light);
        }

        .trust-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 32px;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 24px;
            background: var(--warm-bg);
            border-radius: 16px;
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .trust-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px -10px rgba(241, 90, 41, 0.2);
            border-color: var(--orange-primary);
        }

        .trust-badge-icon {
            width: 48px;
            height: 48px;
            background: var(--orange-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .trust-badge-text {
            display: flex;
            flex-direction: column;
        }

        .trust-badge-title {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 15px;
            color: var(--text-primary);
        }

        .trust-badge-sub {
            font-size: 13px;
            color: var(--text-muted);
        }

        .partner-logos {
            margin-top: 40px;
            padding-top: 32px;
            border-top: 1px solid var(--border-light);
            text-align: center;
        }

        .partner-label {
            font-size: 13px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .partner-logo-strip {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .partner-logo-item {
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0.5;
            transition: all 0.3s ease;
        }

        .partner-logo-item:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        .partner-logo-item i {
            font-size: 24px;
            color: var(--text-secondary);
        }

        .partner-logo-item span {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
        }
        }

        /* Tools Section */
        .tools-section {
            background: var(--white);
            border-bottom: 1px solid var(--border-light);
        }

        .tools-content {
            text-align: center;
            padding: 80px 0 0 0;
        }

        .tools-badge {
            display: inline-block;
            align-items: center;
            gap: 8px;
            background: var(--orange-glow);
            border: 1px solid var(--border-warm);
            color: var(--orange-primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }

        .tools-heading {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            margin-bottom: 48px;
            color: var(--text-primary);
        }

        .tools-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .tool-logo-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 24px 28px;
            background: white;
            border-radius: 20px;
            border: 1px solid var(--border-light);
            transition: var(--transition);
            min-width: 120px;
        }

        .tool-logo-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--orange-primary);
        }

        .tool-logo-img {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--warm-bg);
        }

        .tool-logo-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .tool-logo-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* Learn Section */
        .learn-section {
            padding: 100px 0;
            background: white;
        }

        .learn-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: start;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--warm-bg);
            border: 1px solid var(--border-light);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--orange-primary);
            margin-bottom: 20px;
        }

        .section-badge i {
            font-size: 14px;
        }

        .learn-content h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .learn-desc {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .learn-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-bottom: 40px;
        }

        .learn-item {
            display: flex;
            gap: 16px;
            align-items: start;
        }

        .learn-icon {
            width: 32px;
            height: 32px;
            background: var(--orange-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            font-size: 14px;
        }

        .learn-item h4 {
            font-family: 'Sora', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .learn-item p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .learn-visual {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .learn-card {
            padding: 24px;
            background: var(--warm-bg);
            border: 1px solid var(--border-light);
            border-radius: 16px;
            text-align: center;
            transition: var(--transition);
        }

        .learn-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
            border-color: var(--orange-primary);
        }

        .learn-card-img {
            width: 100%;
            height: 100px;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 16px;
        }

        .learn-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .learn-card-icon {
            width: 56px;
            height: 56px;
            background: var(--orange-gradient);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: white;
            font-size: 24px;
        }

        .learn-card h4 {
            font-family: 'Sora', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .learn-card p {
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* Agenda Section */
        .agenda-section {
            padding: 100px 0;
            background: var(--warm-bg);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .curriculum-badge {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
            border-radius: 100px;
            margin-bottom: 20px;
        }

        .curriculum-badge span {
            font-size: 12px;
            font-weight: 700;
            color: white;
            letter-spacing: 2px;
        }

        .section-header h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .agenda-timeline {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }

        .agenda-timeline::before {
            content: '';
            position: absolute;
            left: 80px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--border-light);
        }

        .agenda-item {
            display: flex;
            gap: 24px;
            margin-bottom: 32px;
            position: relative;
        }

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

        .agenda-time {
            flex: 0 0 70px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 13px;
            font-weight: 600;
            color: var(--orange-primary);
            text-align: right;
            padding-top: 4px;
        }

        .agenda-content {
            flex: 1;
            background: white;
            padding: 24px;
            border-radius: 16px;
            border: 1px solid var(--border-light);
            position: relative;
            transition: var(--transition);
        }

        .agenda-content:hover {
            transform: translateX(8px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
            border-color: var(--orange-primary);
        }

        .agenda-dot {
            position: absolute;
            left: -32px;
            top: 28px;
            width: 12px;
            height: 12px;
            background: var(--orange-primary);
            border-radius: 50%;
            border: 3px solid var(--warm-bg);
        }

        .agenda-content h4 {
            font-family: 'Sora', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .agenda-content p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Deliverables Section */
        .deliverables-section {
            padding: 100px 0;
            background: linear-gradient(180deg, white 0%, var(--warm-bg) 100%);
        }

        .deliverables-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }

        .deliverable-card {
            position: relative;
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 20px;
            transition: var(--transition);
            overflow: hidden;
        }

        .deliverable-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
            border-color: var(--orange-primary);
        }

        .deliverable-featured {
            border-color: rgba(255, 106, 43, 0.3);
        }

        .deliverable-img {
            height: 160px;
            overflow: hidden;
        }

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

        .deliverable-card:hover .deliverable-img img {
            transform: scale(1.1);
        }

        .deliverable-content {
            padding: 24px;
            position: relative;
        }

        .deliverable-num {
            position: absolute;
            top: -40px;
            right: 20px;
            font-family: 'Sora', sans-serif;
            font-size: 48px;
            font-weight: 800;
            color: var(--orange-primary);
            line-height: 1;
            opacity: 0.2;
        }

        .deliverable-card h4 {
            font-family: 'Sora', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .deliverable-card p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .deliverables-cta {
            text-align: center;
        }

        .deliverables-deadline {
            margin-top: 16px;
            font-size: 14px;
            color: var(--text-muted);
        }

        .deliverables-deadline i {
            color: var(--orange-primary);
            margin-right: 4px;
        }

        /* Quiz Section */
        .quiz-section {
            padding: 100px 0;
            background: var(--white);
        }

        .quiz-container {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .quiz-header {
            margin-bottom: 48px;
        }

        .quiz-header h2 {
            font-size: clamp(28px, 3.4vw, 42px);
            margin-bottom: 16px;
            font-weight: 800;
        }

        .quiz-header p {
            font-size: 18px;
            color: var(--text-secondary);
        }

        .quiz-progress {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 40px;
        }

        .quiz-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--border-light);
            transition: var(--transition);
        }

        .quiz-dot.active {
            background: var(--orange-primary);
            transform: scale(1.3);
            box-shadow: 0 0 12px rgba(255, 106, 43, 0.5);
        }

        .quiz-dot.completed {
            background: var(--orange-light);
        }

        .quiz-card {
            background: white;
            border-radius: 28px;
            padding: 48px 40px;
            box-shadow: 0 20px 45px -18px rgba(0, 0, 0, 0.25);
            border: 1px solid var(--border-light);
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .quiz-question {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 32px;
            color: var(--text-primary);
        }

        .quiz-options {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .quiz-option {
            padding: 20px 24px;
            border: 2px solid var(--border-light);
            border-radius: 18px;
            cursor: pointer;
            transition: var(--transition);
            text-align: left;
            font-size: 1.05rem;
            background: white;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
        }

        .quiz-option:hover {
            border-color: var(--orange-primary);
            background: var(--warm-bg);
            transform: translateX(4px);
        }

        .quiz-option.selected {
            border-color: var(--orange-primary);
            background: linear-gradient(135deg, rgba(255, 106, 43, 0.08) 0%, rgba(255, 138, 80, 0.08) 100%);
        }

        .quiz-result {
            display: none;
        }

        .quiz-result.show {
            display: block;
            animation: zoom-in-soft 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        @keyframes zoom-in-soft {
            from { opacity: 0; transform: scale(0.94); }
            to { opacity: 1; transform: scale(1); }
        }

        .quiz-result h3 {
            font-size: 1.8rem;
            margin-bottom: 16px;
            color: var(--orange-primary);
            font-weight: 800;
        }

        .quiz-result p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        /* Topics Section */
        .topics-section {
            padding: 100px 0;
            background: var(--warm-bg);
            border-top: 1px solid var(--border-light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: clamp(28px, 3.4vw, 42px);
            margin-bottom: 16px;
            font-weight: 800;
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .topic-card {
            background: white;
            padding: 32px;
            border-radius: 24px;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }

        .topic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--orange-gradient);
            transform: scaleX(0);
            transition: var(--transition);
            transform-origin: left;
        }

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

        .topic-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px -15px rgba(241, 90, 41, 0.28), 0 12px 24px -10px rgba(17, 17, 17, 0.12);
        }

        .topic-card-img {
            width: 100%;
            height: 140px;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .topic-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .topic-card:hover .topic-card-img img {
            transform: scale(1.1);
        }

        .topic-card-icon {
            width: 56px;
            height: 56px;
            background: var(--orange-gradient);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .topic-card:hover .topic-card-icon {
            transform: translateY(-4px) rotate(-6deg) scale(1.08);
        }

        .topic-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .topic-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.55;
        }

        .topic-card-expand {
            display: none;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--border-light);
        }

        .topic-card.expanded .topic-card-expand {
            display: block;
            animation: fade-in-up 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        .topic-card-expand p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Experience Timeline */
        .experience-section {
            padding: 100px 0;
            background: var(--white);
        }

        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, var(--orange-primary), var(--orange-lightest));
            border-radius: 999px;
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: calc(50% + 50px);
            position: relative;
            margin-bottom: 60px;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: calc(50% + 50px);
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 28px;
            height: 28px;
            background: var(--orange-gradient);
            border-radius: 50%;
            border: 5px solid white;
            box-shadow: 0 0 0 3px var(--orange-primary), var(--shadow-md);
            z-index: 1;
        }

        .timeline-content {
            background: white;
            padding: 32px;
            border-radius: 24px;
            box-shadow: var(--shadow-md);
            max-width: 400px;
            transition: var(--transition);
            border: 1px solid var(--border-light);
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .timeline-step {
            display: inline-block;
            background: var(--orange-gradient);
            color: white;
            padding: 6px 16px;
            border-radius: 9999px;
            font-family: 'IBM Plex Mono', monospace;
            font-size: 12.5px;
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .timeline-content h3 {
            font-size: 22px;
            margin-bottom: 12px;
            font-weight: 800;
        }

        .timeline-content p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.6;
        }

        /* Reel Competition */
        .reel-section {
            padding: 100px 0;
            background: var(--text-primary);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .reel-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
            background-size: 22px 22px;
        }

        .reel-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .reel-content h2 {
            font-size: clamp(28px, 3.4vw, 42px);
            margin-bottom: 24px;
            color: white;
            font-weight: 800;
        }

        .reel-content h2 span {
            color: var(--orange-primary);
        }

        .reel-content > p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .reel-flow {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }

        .reel-flow-step {
            background: rgba(255, 255, 255, 0.08);
            padding: 12px 20px;
            border-radius: 9999px;
            font-size: 14px;
            font-weight: 500;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: var(--transition);
        }

        .reel-flow-step:hover {
            background: rgba(255, 106, 43, 0.2);
            border-color: var(--orange-primary);
        }

        .reel-flow-step i {
            margin-right: 8px;
            color: var(--orange-primary);
        }

        .reel-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .reel-detail-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 24px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: var(--transition);
        }

        .reel-detail-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 106, 43, 0.3);
        }

        .reel-detail-card h4 {
            color: var(--orange-primary);
            margin-bottom: 8px;
            font-size: 16px;
            font-weight: 700;
        }

        .reel-detail-card p {
            font-size: 14.5px;
            opacity: 0.8;
            line-height: 1.55;
        }

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

        .phone-mockup {
            width: 320px;
            height: 640px;
            background: var(--gray-800);
            border-radius: 48px;
            padding: 20px;
            position: relative;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
            border: 8px solid #1a1a1a;
        }

        .phone-notch {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 140px;
            height: 32px;
            background: #111;
            border-radius: 0 0 20px 20px;
            z-index: 2;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: #000;
            border-radius: 28px;
            position: relative;
            overflow: hidden;
        }

        .phone-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .phone-video-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.3);
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .phone-video-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .phone-play-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            color: var(--orange-primary);
            font-size: 20px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .phone-play-btn:hover {
            transform: scale(1.1);
        }

        .phone-video-actions {
            position: absolute;
            right: 12px;
            bottom: 80px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
        }

        .phone-action {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            color: white;
            font-size: 11px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        }

        .phone-action i {
            font-size: 22px;
        }

        .phone-video-info {
            position: absolute;
            bottom: 20px;
            left: 12px;
            right: 60px;
            color: white;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        }

        .phone-username {
            display: block;
            font-weight: 700;
            font-size: 13px;
            margin-bottom: 4px;
        }

        .phone-caption {
            display: block;
            font-size: 12px;
            opacity: 0.9;
        }

        /* What You Get */
        .get-section {
            padding: 100px 0;
            background: var(--white);
        }

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

        .get-card {
            background: white;
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 32px;
            transition: var(--transition);
            cursor: pointer;
        }

        .get-card:hover {
            border-color: var(--orange-primary);
            transform: translateY(-10px);
            box-shadow: 0 30px 60px -15px rgba(241, 90, 41, 0.28), 0 12px 24px -10px rgba(17, 17, 17, 0.12);
        }

        .get-card-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .get-card-img {
            width: 100%;
            height: 150px;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 16px;
        }

        .get-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .get-card:hover .get-card-img img {
            transform: scale(1.1);
        }

        .get-card-icon {
            width: 48px;
            height: 48px;
            background: var(--orange-gradient);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .get-card h3 {
            font-size: 18px;
            font-weight: 700;
        }

        .get-card p {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.6;
        }

        .get-card-details {
            display: none;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--border-light);
        }

        .get-card.expanded .get-card-details {
            display: block;
            animation: fade-in-up 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        .get-card-details ul {
            list-style: none;
            padding: 0;
        }

        .get-card-details li {
            padding: 8px 0;
            color: var(--text-primary);
            font-size: 14.5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .get-card-details li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--orange-primary);
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* Creator Journey - Ultra Premium Design */
        .journey-section {
            padding: 100px 0;
            background: #0a0908;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .journey-bg-pattern {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 10% 20%, rgba(255, 106, 43, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 90% 80%, rgba(255, 106, 43, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(255, 106, 43, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .journey-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            z-index: 1;
        }

        .journey-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 24px;
            background: linear-gradient(135deg, rgba(255, 106, 43, 0.2) 0%, rgba(255, 106, 43, 0.05) 100%);
            border: 1px solid rgba(255, 106, 43, 0.4);
            border-radius: 100px;
            margin-bottom: 28px;
            animation: badge-glow 3s ease-in-out infinite;
        }

        @keyframes badge-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 106, 43, 0.2); }
            50% { box-shadow: 0 0 40px rgba(255, 106, 43, 0.4); }
        }

        .journey-badge i {
            font-size: 16px;
            color: #FFD700;
        }

        .journey-badge span {
            font-size: 13px;
            font-weight: 700;
            color: var(--orange-primary);
            letter-spacing: 3px;
        }

        .journey-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
            background: linear-gradient(135deg, #ffffff 0%, #ff9a5c 50%, #FF6A2B 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .journey-subtitle {
            font-family: 'Sora', sans-serif;
            font-size: 22px;
            color: var(--orange-primary);
            font-style: italic;
            margin-bottom: 16px;
        }

        .journey-desc {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .journey-cards-wrapper {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            padding: 20px 10px 40px;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            max-width: 1300px;
            margin: 0 auto;
            scroll-behavior: smooth;
        }

        .journey-cards-wrapper::-webkit-scrollbar {
            display: none;
        }

        .journey-card {
            min-width: 320px;
            max-width: 320px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 0;
            position: relative;
            scroll-snap-align: start;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            overflow: hidden;
            flex-shrink: 0;
        }

        .journey-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 106, 43, 0.4);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 106, 43, 0.15);
        }

        .journey-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--orange-primary), #FFD700);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .journey-nav {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 10px;
            position: relative;
            z-index: 1;
        }

        .journey-nav-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .journey-nav-btn:hover {
            background: var(--orange-primary);
            border-color: var(--orange-primary);
        }

        .journey-nav-btn:hover i {
            color: white;
        }

        .journey-nav-btn i {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
        }

        .journey-card-img {
            width: 100%;
            height: 160px;
            overflow: hidden;
            position: relative;
        }

        .journey-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .journey-card:hover .journey-card-img img {
            transform: scale(1.1);
        }

        .journey-card-day {
            position: absolute;
            top: 16px;
            left: 16px;
            padding: 8px 16px;
            background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
            border-radius: 100px;
            font-family: 'Sora', sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: white;
            box-shadow: 0 4px 15px rgba(255, 106, 43, 0.4);
        }

        .journey-card-content {
            padding: 24px;
        }

        .journey-card-tag {
            display: inline-block;
            padding: 6px 14px;
            background: rgba(255, 106, 43, 0.15);
            border-radius: 8px;
            font-size: 11px;
            font-weight: 700;
            color: var(--orange-primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 14px;
        }

        .journey-card-content h4 {
            font-family: 'Sora', sans-serif;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: white;
        }

        .journey-card-content p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .journey-card-tasks {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-top: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .journey-task {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
        }

        .journey-task i {
            color: #4CAF50;
            font-size: 14px;
        }

        .journey-card-final {
            background: linear-gradient(145deg, rgba(255, 106, 43, 0.15) 0%, rgba(255, 106, 43, 0.05) 100%);
            border-color: rgba(255, 106, 43, 0.3);
        }

        .journey-card-final::before {
            opacity: 1;
        }

        .journey-card-final .journey-card-day {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        }

        .journey-scroll-hint {
            text-align: center;
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
            animation: scroll-hint 2s ease-in-out infinite;
        }

        @keyframes scroll-hint {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(10px); }
        }

        .journey-scroll-hint i {
            color: var(--orange-primary);
        }

        .journey-cta {
            text-align: center;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }

        .journey-cta .btn {
            font-size: 16px;
            padding: 18px 40px;
        }

        @media (max-width: 768px) {
            .journey-section {
                padding: 70px 0 90px;
            }
            .journey-cards-wrapper {
                gap: 16px;
                padding: 10px 10px 30px;
            }
            .journey-card {
                min-width: 260px;
                max-width: 260px;
            }
        }
            position: relative;
            z-index: 1;
        }

        @media (max-width: 968px) {
            .journey-item {
                grid-template-columns: auto 1fr;
                gap: 24px;
            }

            .journey-item-left {
                display: none !important;
            }

            .journey-item-right {
                order: 3 !important;
                justify-content: flex-start !important;
            }

            .journey-item .journey-node {
                order: 1 !important;
            }

            .journey-progress-line {
                left: 35px;
            }

            .journey-content-card {
                max-width: 100%;
            }

            .journey-visual {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .journey-section {
                padding: 80px 0;
            }

            .journey-node-inner {
                width: 60px;
                height: 60px;
            }

            .journey-day-num {
                font-size: 20px;
            }
        }

        /* Career Paths */
        .career-section {
            padding: 100px 0;
            background: var(--warm-bg);
        }

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

        .career-card-new {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px;
            background: white;
            border-radius: 16px;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .career-card-new:hover {
            border-color: var(--orange-primary);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(255, 106, 43, 0.12);
        }

        .career-card-icon {
            width: 56px;
            height: 56px;
            background: var(--orange-glow);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .career-card-icon i {
            font-size: 22px;
            color: var(--orange-primary);
        }

        .career-card-content {
            flex: 1;
        }

        .career-card-content h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .career-salary {
            font-size: 14px;
            font-weight: 600;
            color: var(--orange-primary);
            margin-bottom: 6px;
        }

        .career-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .career-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .career-skills span {
            padding: 4px 10px;
            background: var(--warm-bg);
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .career-arrow i {
            font-size: 14px;
            color: var(--orange-primary);
        }

        .career-cta {
            text-align: center;
        }

        .career-cta p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        /* Partners Slider */
        .partners-section {
            padding: 80px 0;
            background: var(--white);
            border-bottom: 1px solid var(--border-light);
            overflow: hidden;
        }

        .partners-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .partners-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--orange-glow);
            border: 1px solid var(--border-warm);
            color: var(--orange-primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .partners-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.2;
        }

        .partners-slider-wrapper {
            position: relative;
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .partners-slider {
            display: flex;
            gap: 48px;
            animation: scroll-logos 25s linear infinite;
            width: max-content;
        }

        .partners-slider:hover {
            animation-play-state: paused;
        }

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

        .partner-logo {
            flex-shrink: 0;
            height: 80px;
            width: auto;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.6);
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }

        /* Portfolio */
        .portfolio-section {
            padding: 100px 0;
            background: var(--warm-bg);
            border-top: 1px solid var(--border-light);
        }

        .portfolio-flow {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 60px;
        }

        .portfolio-step {
            background: white;
            padding: 24px 28px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            min-width: 130px;
            transition: var(--transition);
        }

        .portfolio-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .portfolio-step i {
            font-size: 2rem;
            color: var(--orange-primary);
            margin-bottom: 12px;
        }

        .portfolio-step h4 {
            font-size: 14px;
            font-weight: 700;
        }

        .portfolio-arrow {
            font-size: 1.2rem;
            color: var(--orange-primary);
        }

        .portfolio-mockups {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
        }

        .mockup-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border: 1px solid var(--border-light);
        }

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

        .mockup-image {
            height: 160px;
            background: linear-gradient(135deg, #201A17 0%, #111111 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            overflow: hidden;
        }

        .mockup-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .mockup-card:hover .mockup-image img {
            transform: scale(1.1);
        }

        .mockup-image i {
            font-size: 3rem;
            opacity: 0.4;
        }

        .mockup-label {
            padding: 16px;
            text-align: center;
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 15px;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: white;
            overflow: hidden;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .testimonials-heading {
            font-family: 'Sora', sans-serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .testimonials-subheading {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto;
        }

        /* Slider Container */
        .testimonials-slider {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            gap: 24px;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: calc(33.333% - 16px);
            flex: 0 0 calc(33.333% - 16px);
            background: white;
            border: 1px solid #EBEBEB;
            border-radius: 20px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            border-color: rgba(255, 106, 43, 0.3);
            box-shadow: 0 20px 40px -12px rgba(255, 106, 43, 0.12);
        }

        .testimonial-stars {
            color: var(--orange-primary);
            margin-bottom: 16px;
            font-size: 14px;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 24px;
            font-style: italic;
            color: var(--text-secondary);
            min-height: 80px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
            padding-top: 20px;
            border-top: 1px solid #F0F0F0;
            justify-content: center;
        }

        .testimonial-avatar-img {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--orange-primary);
            flex-shrink: 0;
        }

        .testimonial-name {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 15px;
            color: var(--text-primary);
        }

        .testimonial-college {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Navigation */
        .testimonials-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin-top: 48px;
        }

        .testimonials-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid #EBEBEB;
            background: white;
            color: var(--text-primary);
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonials-btn:hover {
            border-color: var(--orange-primary);
            background: var(--orange-primary);
            color: white;
            transform: scale(1.05);
        }

        .testimonials-dots {
            display: flex;
            gap: 8px;
        }

        .testimonials-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: none;
            background: #DDD;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonials-dot.active {
            background: var(--orange-primary);
            width: 28px;
            border-radius: 5px;
        }
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonials-dot.active {
            background: var(--orange-primary);
            width: 32px;
            border-radius: 10px;
        }

        .testimonials-dot:hover {
            background: var(--orange-primary);
        }

        /* Gallery */
        .gallery-section {
            padding: 100px 0;
            background: white;
            overflow: hidden;
        }

        .gallery-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .gallery-heading {
            font-family: 'Sora', sans-serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .gallery-subheading {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 500px;
            margin: 0 auto;
        }

        .gallery-slider-wrap {
            position: relative;
            overflow: hidden;
            padding: 0 32px;
        }

        .gallery-slider-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s ease;
        }

        .gallery-slide {
            min-width: calc(33.333% - 14px);
            flex: 0 0 calc(33.333% - 14px);
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 16/10;
            cursor: pointer;
        }

        .gallery-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-slide:hover img {
            transform: scale(1.08);
        }

        .gallery-slide-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 16px 16px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            font-size: 14px;
            font-weight: 600;
        }

        .gallery-nav {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-top: 32px;
        }

        .gallery-nav-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid var(--border-light);
            background: white;
            color: var(--text-primary);
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-nav-btn:hover {
            border-color: var(--orange-primary);
            background: var(--orange-primary);
            color: white;
        }

        /* Mentors */
        .mentors-section {
            padding: 100px 0;
            background: var(--white);
        }

        .mentors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 900px;
            margin: 0 auto;
        }

        .mentor-card {
            text-align: center;
            transition: var(--transition);
        }

        .mentor-card:hover {
            transform: translateY(-8px);
        }

        .mentor-avatar {
            width: 150px;
            height: 150px;
            background: var(--orange-gradient);
            border-radius: 50%;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3.5rem;
            overflow: hidden;
            border: 4px solid rgba(255, 106, 43, 0.3);
            box-shadow: 0 8px 32px rgba(255, 106, 43, 0.2);
        }

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

        .mentor-card h3 {
            font-size: 20px;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .mentor-role {
            color: var(--orange-primary);
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 15px;
        }

        .mentor-expertise {
            font-size: 14.5px;
            color: var(--text-secondary);
        }

        /* Who Is This For */
        .who-section {
            padding: 100px 0;
            background: var(--white);
            position: relative;
        }

        .who-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .who-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--orange-glow);
            border: 1px solid var(--border-warm);
            color: var(--orange-primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 24px;
        }

        .who-heading {
            font-family: 'Sora', sans-serif;
            font-size: clamp(32px, 5vw, 48px);
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.15;
            margin-bottom: 48px;
        }

        .who-roles {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-bottom: 48px;
        }

        .who-role {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            border: 1px solid var(--border-light);
            padding: 14px 24px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .who-role:hover {
            border-color: var(--orange-primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 106, 43, 0.12);
        }

        .who-role i {
            color: var(--orange-primary);
            font-size: 18px;
        }

        .who-subtext {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .who-subtext strong {
            color: var(--text-primary);
            font-weight: 700;
        }

        .who-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: var(--orange-gradient);
            color: white;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-orange);
        }

        .who-cta:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-orange-lg);
        }

        /* Surprise Gift - Premium Design */
        .gift-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0a0908 0%, #1a1412 50%, #0d0b09 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .gift-bg-effects {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .gift-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
        }

        .gift-orb-1 {
            width: 400px;
            height: 400px;
            background: rgba(255, 106, 43, 0.15);
            top: -100px;
            right: -100px;
            animation: orb-float 8s ease-in-out infinite;
        }

        .gift-orb-2 {
            width: 300px;
            height: 300px;
            background: rgba(255, 106, 43, 0.1);
            bottom: -50px;
            left: -50px;
            animation: orb-float 10s ease-in-out infinite reverse;
        }

        .gift-orb-3 {
            width: 200px;
            height: 200px;
            background: rgba(255, 106, 43, 0.08);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: orb-float 12s ease-in-out infinite;
        }

        @keyframes orb-float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -30px); }
        }

        .gift-particles {
            position: absolute;
            inset: 0;
        }

        .gift-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--orange-primary);
            border-radius: 50%;
            opacity: 0;
            animation: particle-float 4s ease-in-out infinite;
        }

        @keyframes particle-float {
            0% { opacity: 0; transform: translateY(100vh) scale(0); }
            20% { opacity: 1; }
            80% { opacity: 1; }
            100% { opacity: 0; transform: translateY(-100px) scale(1); }
        }

        .gift-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gift-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255, 106, 43, 0.1);
            border: 1px solid rgba(255, 106, 43, 0.3);
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            color: var(--orange-primary);
            letter-spacing: 2px;
            margin-bottom: 24px;
        }

        .gift-badge i {
            font-size: 14px;
        }

        .gift-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -1px;
            color: white;
        }

        .gift-highlight {
            background: linear-gradient(135deg, var(--orange-primary) 0%, #ff9a5c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gift-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .gift-clues {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 40px;
        }

        .gift-clue {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .gift-clue-icon {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .gift-clue-icon i {
            font-size: 12px;
            color: white;
        }

        .gift-clue span {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .gift-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 36px;
            background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
            color: white;
            text-decoration: none;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(255, 106, 43, 0.3);
        }

        .gift-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(255, 106, 43, 0.4);
        }

        .gift-cta-btn i {
            transition: transform 0.3s ease;
        }

        .gift-cta-btn:hover i {
            transform: translateX(4px);
        }

        .gift-right {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .gift-box-scene {
            position: relative;
            width: 320px;
            height: 320px;
            cursor: pointer;
        }

        .gift-glow-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 280px;
            height: 280px;
            border: 2px solid rgba(255, 106, 43, 0.2);
            border-radius: 50%;
            animation: ring-pulse 3s ease-in-out infinite;
        }

        .gift-glow-ring-2 {
            width: 320px;
            height: 320px;
            border-color: rgba(255, 106, 43, 0.1);
            animation-delay: 1.5s;
        }

        @keyframes ring-pulse {
            0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
        }

        .gift-3d-box {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 180px;
            height: 180px;
            perspective: 500px;
        }

        .gift-box-body {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 140px;
            background: linear-gradient(145deg, #2a2420 0%, #1a1512 100%);
            border-radius: 16px;
            border: 1px solid rgba(255, 106, 43, 0.3);
            box-shadow: 
                0 30px 60px -15px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(255, 106, 43, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
            overflow: hidden;
            animation: box-float 4s ease-in-out infinite;
        }

        @keyframes box-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .gift-body-ribbon-v {
            position: absolute;
            width: 24px;
            height: 100%;
            background: linear-gradient(180deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 15px rgba(255, 106, 43, 0.4);
        }

        .gift-body-ribbon-h {
            position: absolute;
            width: 100%;
            height: 24px;
            background: linear-gradient(90deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
            top: 50%;
            transform: translateY(-50%);
            box-shadow: 0 0 15px rgba(255, 106, 43, 0.4);
        }

        .gift-box-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 106, 43, 0.5);
            z-index: 5;
        }

        .gift-box-content i {
            font-size: 20px;
            color: var(--orange-primary);
            animation: icon-glow 2s ease-in-out infinite;
        }

        @keyframes icon-glow {
            0%, 100% { text-shadow: 0 0 10px rgba(255, 106, 43, 0.5); }
            50% { text-shadow: 0 0 25px rgba(255, 106, 43, 0.9); }
        }

        .gift-box-lid {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 190px;
            height: 50px;
            background: linear-gradient(145deg, #3a3430 0%, #2a2420 100%);
            border-radius: 12px 12px 4px 4px;
            border: 1px solid rgba(255, 106, 43, 0.3);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            z-index: 10;
            transition: transform 0.4s ease;
        }

        .gift-box-scene:hover .gift-box-lid {
            transform: translateX(-50%) translateY(-8px) rotateX(-10deg);
        }

        .gift-lid-ribbon-v {
            position: absolute;
            width: 24px;
            height: 100%;
            background: linear-gradient(180deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
            left: 50%;
            transform: translateX(-50%);
        }

        .gift-lid-ribbon-h {
            position: absolute;
            width: 100%;
            height: 24px;
            background: linear-gradient(90deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
            top: 50%;
            transform: translateY(-50%);
        }

        .gift-bow {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
        }

        .gift-bow-loop {
            position: absolute;
            width: 30px;
            height: 24px;
            background: var(--orange-primary);
            border-radius: 50% 50% 0 0;
        }

        .gift-bow-left {
            left: -16px;
            transform: rotate(-30deg);
        }

        .gift-bow-right {
            right: -16px;
            transform: rotate(30deg);
        }

        .gift-bow-center {
            position: relative;
            width: 16px;
            height: 16px;
            background: var(--orange-dark);
            border-radius: 50%;
            z-index: 5;
        }

        .gift-floating-items {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .gift-float-item {
            position: absolute;
            width: 36px;
            height: 36px;
            background: rgba(255, 106, 43, 0.15);
            border: 1px solid rgba(255, 106, 43, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float-item 5s ease-in-out infinite;
        }

        .gift-float-item i {
            font-size: 14px;
            color: var(--orange-primary);
        }

        .gift-float-1 { top: 10%; left: 5%; animation-delay: 0s; }
        .gift-float-2 { top: 15%; right: 5%; animation-delay: 1s; }
        .gift-float-3 { bottom: 20%; left: 0%; animation-delay: 2s; }
        .gift-float-4 { bottom: 25%; right: 0%; animation-delay: 3s; }

        @keyframes float-item {
            0%, 100% { transform: translateY(0) rotate(0); }
            50% { transform: translateY(-15px) rotate(10deg); }
        }

        .gift-tap-hint {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 13px;
            white-space: nowrap;
        }

        .gift-tap-pulse {
            width: 8px;
            height: 8px;
            background: var(--orange-primary);
            border-radius: 50%;
            animation: tap-pulse 2s ease-in-out infinite;
        }

        @keyframes tap-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }

        .gift-tap-hint i {
            color: var(--orange-primary);
            animation: hand-bounce 1s ease-in-out infinite;
        }

        @keyframes hand-bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-4px); }
        }

        /* Gift Reveal Modal */
        .gift-reveal-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            padding: 20px;
        }

        .gift-reveal-modal.show {
            display: flex;
            animation: modal-fade 0.3s ease;
        }

        @keyframes modal-fade {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .gift-reveal-content {
            background: linear-gradient(145deg, #1a1512 0%, #0d0b09 100%);
            border: 1px solid rgba(255, 106, 43, 0.3);
            border-radius: 24px;
            padding: 48px;
            max-width: 440px;
            width: 100%;
            text-align: center;
            position: relative;
            animation: modal-slide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes modal-slide {
            from { opacity: 0; transform: translateY(30px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .gift-reveal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gift-reveal-close:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .gift-reveal-close i {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        .gift-reveal-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            animation: reveal-bounce 0.6s ease 0.2s both;
        }

        @keyframes reveal-bounce {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .gift-reveal-icon i {
            font-size: 32px;
            color: white;
        }

        .gift-reveal-content h3 {
            font-family: 'Sora', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: white;
            margin-bottom: 12px;
        }

        .gift-reveal-content p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 28px;
        }

        .gift-reveal-perks {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 32px;
            text-align: left;
        }

        .gift-perk {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(255, 106, 43, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(255, 106, 43, 0.2);
        }

        .gift-perk i {
            color: var(--orange-primary);
            font-size: 16px;
        }

        .gift-perk span {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
        }

        .gift-reveal-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-dark) 100%);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(255, 106, 43, 0.3);
        }

        .gift-reveal-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(255, 106, 43, 0.4);
        }

        .gift-reveal-cta i {
            transition: transform 0.3s ease;
        }

        .gift-reveal-cta:hover i {
            transform: translateX(4px);
        }

        @media (max-width: 968px) {
            .gift-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }

            .gift-clues {
                align-items: center;
            }

            .gift-right {
                order: -1;
            }

            .gift-box-scene {
                width: 280px;
                height: 280px;
            }
        }

        @media (max-width: 480px) {
            .gift-section {
                padding: 80px 0;
            }

            .gift-title {
                font-size: 32px;
            }

            .gift-box-scene {
                width: 240px;
                height: 240px;
            }

            .gift-3d-box {
                width: 140px;
                height: 140px;
            }

            .gift-box-body {
                height: 110px;
            }

            .gift-box-lid {
                width: 150px;
                height: 40px;
            }

            .gift-reveal-content {
                padding: 32px 24px;
            }
        }
            gap: 8px;
            padding: 16px 32px;
            background: var(--orange-gradient);
            color: white;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .gift-reveal-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(255, 106, 43, 0.4);
        }

        .gift-reveal-cta i {
            font-size: 13px;
        }

        /* Gift Hint */
        .gift-hint {
            margin-top: 32px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .gift-hint:hover {
            color: var(--orange-primary);
        }

        .gift-hint i {
            margin-right: 6px;
        }

        /* FAQ */
        .faq-section {
            padding: 100px 0;
            background: var(--white);
        }

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

        .faq-item {
            border: 1px solid var(--border-light);
            border-radius: 20px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item.active {
            border-color: var(--orange-primary);
            box-shadow: 0 6px 20px rgba(241, 90, 41, 0.12);
        }

        .faq-question {
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: white;
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 16px;
            color: var(--text-primary);
        }

        .faq-question i {
            color: var(--orange-primary);
            transition: var(--transition);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 15.5px;
        }

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

        /* Think Global Section */
        .think-global-section {
            padding: 100px 0;
            background: url('../hero5.jpg') center/cover no-repeat;
            color: var(--text-primary);
            text-align: left;
            position: relative;
            overflow: hidden;
        }

        .think-global-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .think-global-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            animation: float 8s ease-in-out infinite;
        }

        .think-global-orb-1 {
            width: 400px;
            height: 400px;
            background: var(--orange-glow);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .think-global-orb-2 {
            width: 300px;
            height: 300px;
            background: var(--orange-glow);
            bottom: -50px;
            left: -50px;
            animation-delay: 2s;
        }

        .think-global-orb-3 {
            width: 200px;
            height: 200px;
            background: var(--orange-glow);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-30px) scale(1.05); }
        }

        .think-global-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .think-global-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 32px;
        }

        .think-global-title {
            font-size: clamp(42px, 6vw, 64px);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 24px;
            font-family: var(--font-heading);
            color: white;
        }

        .think-global-highlight {
            background: linear-gradient(135deg, #FF6A2B, #ff9a5c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .think-global-subtitle {
            font-size: clamp(20px, 2.5vw, 28px);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 16px;
            font-weight: 400;
        }

        .think-global-desc {
            font-size: clamp(16px, 1.8vw, 20px);
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 40px;
            max-width: 600px;
            line-height: 1.6;
        }

        .think-global-cta {
            margin-top: 40px;
        }

        .think-global-question {
            font-size: 24px;
            margin-bottom: 24px;
            color: white;
        }

        .think-global-question strong {
            color: #FF6A2B;
        }

        /* Final CTA */
        .final-cta {
            padding: 100px 0;
            background: var(--orange-gradient);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 24px 24px;
            animation: scroll 20s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translate(0); }
            100% { transform: translate(-33.333%); }
        }

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

        .final-cta h2 {
            font-size: clamp(32px, 4vw, 52px);
            margin-bottom: 16px;
            color: white;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .final-cta h3 {
            font-size: clamp(20px, 2.4vw, 28px);
            margin-bottom: 24px;
            font-weight: 500;
            opacity: 0.95;
            color: white;
        }

        .final-cta p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .final-cta-checks {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .final-check {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            color: white;
        }

        .final-check i {
            color: #4ADE80;
        }

        .final-cta .btn {
            background: white;
            color: var(--orange-dark);
            font-size: 16px;
            padding: 20px 48px;
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
        }

        .final-cta .btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.3);
        }

        .final-trust {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 32px;
            margin-top: 48px;
        }

        .final-trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 500;
        }

        /* Registration Form */
        .registration-section {
            padding: 100px 0;
            background: var(--warm-bg);
            border-top: 1px solid var(--border-light);
        }

        .form-container {
            max-width: 880px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--border-light);
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h2 {
            font-size: 28px;
            margin-bottom: 8px;
            font-weight: 800;
        }

        .form-header p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        .countdown-bar {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-top: 24px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(255, 106, 43, 0.08) 0%, rgba(241, 90, 41, 0.04) 100%);
            border: 1px solid rgba(255, 106, 43, 0.2);
            border-radius: 16px;
        }

        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 60px;
        }

        .countdown-number {
            font-family: 'Sora', sans-serif;
            font-size: 32px;
            font-weight: 800;
            color: var(--orange-primary);
            line-height: 1;
        }

        .countdown-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            margin-top: 4px;
        }

        .countdown-separator {
            font-size: 28px;
            font-weight: 700;
            color: var(--orange-primary);
            margin-top: -16px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            font-size: 13px;
            color: var(--text-primary);
        }

        .label-optional {
            font-weight: 400;
            color: var(--text-muted);
            font-size: 12px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--border-light);
            border-radius: 10px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            transition: var(--transition);
            color: var(--text-primary);
            background: var(--gray-50);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #aaa;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--orange-primary);
            box-shadow: 0 0 0 3px rgba(241, 90, 41, 0.08);
            background: white;
        }

        .form-group select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' 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 16px center;
            background-size: 14px;
            padding-right: 40px;
            cursor: pointer;
        }

        .form-group select option {
            padding: 10px;
            font-size: 14px;
        }

        .form-group select option:disabled {
            color: #999;
        }

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

        .form-row {
            margin-bottom: 4px;
        }

        .form-row-2col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

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

        .interest-options {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .interest-checkbox {
            display: none;
        }

        .interest-label {
            padding: 12px 20px;
            border: 2px solid var(--border-light);
            border-radius: 9999px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
        }

        .interest-label:hover {
            border-color: var(--orange-primary);
            background: var(--warm-bg);
        }

        .interest-checkbox:checked + .interest-label {
            border-color: var(--orange-primary);
            background: linear-gradient(135deg, rgba(255, 106, 43, 0.1) 0%, rgba(255, 138, 80, 0.1) 100%);
            color: var(--orange-primary);
        }

        .form-disclaimer {
            margin-top: 12px;
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
            line-height: 1.5;
        }

        .form-submit {
            text-align: center;
            margin-top: 24px;
        }

        .btn-submit {
            width: 100%;
            justify-content: center;
            padding: 16px 32px;
            font-size: 15px;
            border-radius: 12px;
        }

        /* Registration Popup Modal */
        .register-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .register-modal.active {
            display: flex;
        }

        .register-modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
        }

        .register-modal-content {
            position: relative;
            background: white;
            border-radius: 20px;
            padding: 32px;
            max-width: 520px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
            animation: modalSlideIn 0.3s ease;
        }

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

        .register-modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            background: var(--warm-bg);
            color: var(--text-primary);
            font-size: 18px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .register-modal-close:hover {
            background: var(--orange-primary);
            color: white;
        }

        .register-modal-header {
            text-align: center;
            margin-bottom: 24px;
        }

        .register-modal-header h2 {
            font-family: 'Sora', sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .register-modal-header p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .register-modal-submit {
            width: 100%;
            padding: 14px;
            background: var(--orange-gradient);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 700;
            font-family: 'Sora', sans-serif;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .register-modal-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(255, 106, 43, 0.3);
        }

        .register-modal-disclaimer {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 12px;
            line-height: 1.5;
        }

        /* Video Gallery Section - Vertical Slider */
        .video-gallery-section {
            padding: 100px 0;
            background: var(--warm-bg);
        }

        .video-slider-wrap {
            position: relative;
            overflow: hidden;
            padding: 0 32px;
        }

        .video-slider-track {
            display: flex;
            gap: 24px;
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: grab;
        }

        .video-slider-track:active {
            cursor: grabbing;
        }

        .video-slider-card {
            flex: 0 0 calc(25% - 18px);
            min-width: 280px;
            border-radius: 20px;
            overflow: hidden;
            background: white;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .video-slider-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
        }

        .video-slider-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 9/16;
            background: #1a1a1a;
            overflow: hidden;
            max-height: 320px;
        }

        .video-slider-wrapper video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-slider-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: var(--transition);
        }

        .video-slider-wrapper:hover .video-slider-overlay {
            background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
        }

        .video-slider-wrapper.playing .video-slider-overlay {
            opacity: 0;
            pointer-events: none;
        }

        .video-slider-play {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.95);
            color: var(--orange-primary);
            font-size: 22px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .video-slider-play:hover {
            transform: scale(1.1);
            background: var(--orange-primary);
            color: white;
        }

        .video-slider-play i {
            margin-left: 4px;
        }

        .video-slider-wrapper.playing .video-slider-play {
            opacity: 0;
            pointer-events: none;
        }

        .video-slider-duration {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            font-family: 'IBM Plex Mono', monospace;
        }

        .video-slider-info {
            padding: 16px;
        }

        .video-slider-info h4 {
            font-family: 'Sora', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .video-slider-info p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .video-slider-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 32px;
        }

        .video-slider-prev,
        .video-slider-next {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid var(--border-light);
            background: white;
            color: var(--text-primary);
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-slider-prev:hover,
        .video-slider-next:hover {
            background: var(--orange-primary);
            color: white;
            border-color: var(--orange-primary);
        }

        .video-slider-dots {
            display: flex;
            gap: 8px;
        }

        .video-slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border-light);
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .video-slider-dot.active {
            background: var(--orange-primary);
            width: 28px;
            border-radius: 5px;
        }

        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 16px 24px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            z-index: 999;
            transform: translateY(100%);
            transition: var(--transition);
            border-top: 1px solid var(--border-light);
        }

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

        .sticky-cta-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .sticky-cta-text {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .sticky-cta-title {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 15px;
        }

        .sticky-cta-benefits {
            display: flex;
            gap: 16px;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .sticky-cta-benefits span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .sticky-cta-benefits i {
            color: var(--orange-primary);
            font-size: 12px;
        }

        /* Footer */
        .footer {
            background: var(--text-primary);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 40px;
        }

        .footer-logo-text {
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            font-size: 22px;
        }

        .footer-brand p {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 15px;
        }

        .footer-column h4 {
            margin-bottom: 24px;
            font-size: 16px;
            font-weight: 700;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
            font-size: 15px;
        }

        .footer-links a:hover {
            color: var(--orange-primary);
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--orange-primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-muted);
            font-size: 14px;
        }

        .footer-bottom a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-bottom a:hover {
            color: var(--orange-primary);
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .testimonial-card {
                min-width: calc(50% - 12px);
                flex: 0 0 calc(50% - 12px);
            }

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

            .who-grid .who-card:nth-child(4) {
                grid-column: auto;
            }

            .who-grid .who-card:nth-child(5) {
                grid-column: 1 / -1;
            }

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

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

            .timeline-item {
                padding-right: 0;
                padding-left: 60px;
            }

            .timeline-item:nth-child(even) {
                padding-left: 60px;
            }

            .timeline-dot {
                left: 20px;
            }

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

            .think-global-title {
                font-size: clamp(32px, 5vw, 48px);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }

            .form-container {
                padding: 32px 16px;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-badge {
                display: none;
            }

            .hero-badge-event {
                display: none;
            }

            .hero-social-proof {
                flex-direction: column;
            }

            .section-header h2,
            .reel-content h2,
            .gift-section h2,
            .final-cta h2 {
                font-size: 28px;
            }

            .video-slider-card {
                flex: 0 0 calc(50% - 12px);
                min-width: 240px;
            }

            .video-slider-wrapper {
                max-height: 260px;
            }

            .video-slider-play {
                width: 56px;
                height: 56px;
                font-size: 18px;
            }

            .gallery-slide {
                min-width: calc(50% - 10px);
                flex: 0 0 calc(50% - 10px);
            }

            .testimonials-slider {
                padding: 0 20px;
            }

            .testimonials-track {
                gap: 16px;
            }

            .testimonial-card {
                min-width: calc(100% - 16px);
                flex: 0 0 calc(100% - 16px);
            }

            .tools-section {
                padding: 60px 16px 40px;
            }

            .countdown-bar {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                gap: 6px;
                padding: 16px 12px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .countdown-item {
                min-width: auto;
                flex: 1 1 auto;
            }

            .countdown-number {
                font-size: clamp(20px, 5vw, 28px);
            }

            .countdown-separator {
                font-size: clamp(18px, 4vw, 24px);
                margin-top: -12px;
            }

            .countdown-label {
                font-size: 10px;
            }

            .testimonials-btn {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            .journey-cards-wrapper {
                gap: 12px;
            }

            .journey-card {
                min-width: 260px;
                max-width: 260px;
            }

            .journey-nav-btn {
                width: 42px;
                height: 42px;
            }

            .journey-timeline {
                flex-direction: column;
                gap: 32px;
            }

            .journey-timeline::before {
                display: none;
            }

            .journey-cards-wrapper {
                gap: 16px;
            }

            .journey-card {
                min-width: 280px;
                max-width: 280px;
            }

            .gallery-masonry {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }

            .gallery-item:nth-child(1) {
                grid-column: span 2;
                grid-row: span 1;
                min-height: 240px;
            }

            .gallery-item:nth-child(5) {
                grid-column: span 2;
            }

            .gallery-item {
                min-height: 180px;
            }

            .countdown-circle {
                width: 80px;
                height: 80px;
            }

            .countdown-timer {
                gap: 10px;
                padding: 16px 12px;
            }

            .countdown-value .countdown-number {
                font-size: 22px;
            }

            .reel-details {
                grid-template-columns: 1fr;
            }

            .gallery-section {
                padding: 40px 16px;
            }

            .final-cta .btn {
                padding: 20px 30px;
                font-size: 14px;
            }

            .btn-submit {
                padding: 16px 24px;
            }

            .sticky-cta {
                padding: 16px 12px;
            }

            .sticky-cta-inner {
                flex-direction: column;
            }

            .sticky-cta-text {
                text-align: center;
            }

            .sticky-cta-benefits {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

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

            .register-modal-content {
                padding: 24px 20px;
                border-radius: 20px;
                margin: 10px;
            }

            .form-row-2col {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .form-group select {
                padding: 12px 14px;
                font-size: 14px;
            }

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

            .who-grid .who-card:nth-child(5) {
                grid-column: auto;
            }

            .who-card-inner {
                padding: 20px;
            }

            .who-card-image {
                height: 180px;
            }

            .who-heading {
                font-size: 28px;
            }

            .gallery-masonry {
                grid-template-columns: 1fr;
            }

            .gallery-item:nth-child(1),
            .gallery-item:nth-child(5) {
                grid-column: auto;
            }

            .gallery-item {
                min-height: 200px;
            }

            .who-message-cta {
                width: 100%;
                justify-content: center;
            }

            .value-cards {
                gap: 16px;
            }

            .value-card {
                flex: 0 0 160px;
            }

            .quiz-card {
                padding: 32px 24px;
            }

            .form-container {
                padding: 32px 24px;
            }
        }

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(24px);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }