@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=JetBrains+Mono:wght@400;500;600&display=swap');

        /* Standardized CSS Variables */
        :root {
            /* Primary Colors */
            --primary-600: #047857;
            --primary-500: #059669;
            --primary-400: #10b981;
            --primary-100: #d1fae5;
            --primary-green: #059669;
            --primary-green-light: #10b981;

            /* Accent Colors */
            --accent-500: #d97706;
            --accent-400: #f59e0b;

            /* Neutral Colors */
            --neutral-900: #1c1917;
            --neutral-50: #fafaf9;

            /* Text Colors */
            --text-black: #0A0A0A;
            --text-gray: #6B7280;
            --text-light: #9CA3AF;

            /* Background Colors */
            --background-white: #FFFFFF;
            --background-gray: #FAFAFA;
            --background-light: #F9FAFB;

            /* Border Colors */
            --border-light: #E5E7EB;

            /* Shadows */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-xl: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

            /* Border Radius */
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 16px;

            /* Transitions */
            --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes countUp {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-black);
            margin: 0;
            padding: 0;
            background: var(--background-white);
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.02;
            pointer-events: none;
            z-index: 9999;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0 0 1rem 0;
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-black);
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
        }

        h2 {
            font-size: clamp(1.875rem, 4vw, 2.25rem);
            font-weight: 700;
        }

        h3 {
            font-size: 1.5rem;
            font-weight: 600;
        }

        p {
            margin: 0 0 1rem 0;
            color: var(--text-gray);
            font-size: 1.125rem;
            line-height: 1.7;
        }

        .hero-impact-section {
            background:
                radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(52, 211, 153, 0.15) 0%, transparent 40%),
                linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
            padding: 60px 20px;
            margin-top: 40px;
            margin-bottom: 40px;
            border-radius: 25px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(5, 150, 105, 0.3);
            position: relative;
            overflow: hidden;
        }

        .hero-impact-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        .hero-impact-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -20%;
            width: 150%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
            pointer-events: none;
        }

        .impact-header {
            position: relative;
            z-index: 2;
            margin-bottom: 40px;
        }

        .impact-title {
            color: white;
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .impact-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            margin-bottom: 0;
        }

        .impact-counters {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .impact-counter {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            animation: fadeInUp 0.6s ease forwards;
        }

        .impact-counter:nth-child(1) {
            animation-delay: 0.2s;
        }

        .impact-counter:nth-child(2) {
            animation-delay: 0.4s;
        }

        .impact-counter:nth-child(3) {
            animation-delay: 0.6s;
        }

        .impact-counter:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.25);
        }

        .counter-icon {
            font-size: 48px;
            margin-bottom: 15px;
            display: block;
            animation: pulseIcon 3s ease-in-out infinite;
        }

        .counter-number {
            font-size: 42px;
            font-weight: 800;
            color: white;
            margin-bottom: 8px;
            display: block;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .counter-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            font-weight: 600;
            line-height: 1.3;
        }

        .social-impact-section {
            background: var(--background-gray);
            padding: 80px 0;
            margin: 0;
        }

        .social-impact-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .social-impact-title {
            font-size: clamp(1.875rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--text-black);
            margin-bottom: 16px;
            letter-spacing: -0.025em;
        }

        .social-impact-subtitle {
            font-size: 1.125rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .impact-pillars {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .impact-pillar {
            background: var(--background-white);
            border-radius: var(--radius-xl);
            padding: 48px 32px;
            text-align: center;
            transition: var(--transition);
            border: 1px solid var(--border-light);
            position: relative;
        }

        .impact-pillar:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-green);
        }

        .pillar-icon {
            font-size: 3rem;
            margin-bottom: 24px;
            display: block;
            filter: grayscale(1);
            opacity: 0.8;
        }

        .pillar-title {
            font-size: 1.375rem;
            font-weight: 700;
            color: var(--text-black);
            margin-bottom: 16px;
            letter-spacing: -0.025em;
        }

        .pillar-impact {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 16px;
            display: block;
            color: var(--primary-green);
            letter-spacing: -0.025em;
        }

        .pillar-description {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .mission-statement-section {
            background: var(--text-black);
            padding: 80px 0;
            margin: 0;
            color: white;
        }

        .mission-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 0 24px;
        }

        .mission-header {
            margin-bottom: 48px;
        }

        .mission-title {
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 800;
            margin-bottom: 16px;
            color: white;
            letter-spacing: -0.025em;
        }

        .mission-subtitle {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .mission-message {
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mission-text {
            font-size: 1.125rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin: 0;
            font-weight: 400;
        }

        .mission-signature {
            text-align: right;
            margin-top: 32px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-green);
        }

        .impact-timeline-section {
            background: var(--background-white);
            padding: 80px 0;
            margin: 0;
        }

        .timeline-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .timeline-title {
            font-size: clamp(1.875rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--text-black);
            margin-bottom: 16px;
            letter-spacing: -0.025em;
        }

        .timeline-subtitle {
            font-size: 1.125rem;
            color: var(--text-gray);
        }

        .timeline-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .timeline-line {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--border-light);
            z-index: 1;
        }

        .timeline-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
            position: relative;
            z-index: 2;
        }

        .timeline-item {
            background: var(--background-white);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border: 1px solid var(--border-light);
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            background: var(--primary-green);
            border-radius: 50%;
            border: 3px solid var(--background-white);
        }

        .timeline-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-green);
        }

        .timeline-milestone {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--text-black);
            margin-bottom: 8px;
            letter-spacing: -0.025em;
        }

        .timeline-description {
            font-size: 0.875rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        .trust-badge {
            display: inline-block;
            background: var(--background-gray);
            color: var(--text-gray);
            padding: 8px 20px;
            border-radius: var(--radius-lg);
            font-size: 0.875rem;
            font-weight: 500;
            margin: 6px;
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }

        .trust-badge:hover {
            background: var(--background-light);
            border-color: var(--primary-green);
            color: var(--text-black);
        }

        .trust-badges-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin: 48px 0 0 0;
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
            z-index: 1000;
            padding: 12px 0;
            transition: var(--transition);
        }

        .navbar-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .navbar-logo {
            width: 36px;
            height: 36px;
            object-fit: contain;
        }

        .navbar-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-black);
            letter-spacing: -0.025em;
        }

        .navbar-menu {
            display: flex;
            gap: 12px;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .navbar-item {
            position: relative;
        }

        .navbar-link {
            text-decoration: none;
            color: var(--text-gray);
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition);
            padding: 8px 0;
            position: relative;
            white-space: nowrap;
        }

        .navbar-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .navbar-link:hover {
            color: var(--text-black);
        }

        .navbar-link:hover::after,
        .navbar-link.active::after {
            width: 100%;
        }

        .navbar-link.active {
            color: var(--text-black);
        }

        /* Nav button styles */
        .navbar-btn {
            color: white !important;
            padding: 7px 16px !important;
            border-radius: 25px;
            font-weight: 700 !important;
            font-size: 0.82rem !important;
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        }

        .navbar-btn::after {
            display: none !important;
        }

        .navbar-btn:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-lg);
            color: white !important;
        }

        .navbar-btn-login {
            background: linear-gradient(135deg, #059669 0%, #10b981 100%);
        }

        .navbar-btn-community {
            background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
        }

        .navbar-btn-consultation {
            background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
        }

        /* CTA group: visual separator before buttons on desktop */
        .navbar-cta-group:first-of-type {
            margin-left: 8px;
            padding-left: 16px;
            border-left: 1px solid var(--border-light);
        }

        /* Hide secondary links on desktop */
        .navbar-mobile-only {
            display: none;
        }

        .navbar-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .navbar-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text-black);
            border-radius: 2px;
            transition: var(--transition);
        }

        .navbar-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .navbar-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .course-container {
            max-width: 1280px;
            margin: 0 auto;
            margin-top: 80px;
            padding: 0 24px;
            background: var(--background-white);
            min-height: 100vh;
        }

        /* ── 1-on-1 Consultation Section ── */
        .consultation-section {
            position: relative;
            margin: 48px 0;
            padding: 56px 36px;
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 40%, #fff7ed 100%);
            border-radius: 24px;
            border: 1px solid rgba(217, 119, 6, 0.15);
            overflow: hidden;
        }

        .consultation-section::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        .consultation-section::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .consultation-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            max-width: 960px;
            margin: 0 auto;
        }

        .consultation-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(217, 119, 6, 0.1);
            border: 1px solid rgba(217, 119, 6, 0.25);
            color: #92400e;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .consultation-badge-dot {
            width: 7px;
            height: 7px;
            background: #d97706;
            border-radius: 50%;
            box-shadow: 0 0 6px rgba(217, 119, 6, 0.5);
            animation: pulse-amber 2s ease-in-out infinite;
        }

        @keyframes pulse-amber {
            0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(217, 119, 6, 0.5); }
            50% { opacity: 0.6; box-shadow: 0 0 12px rgba(217, 119, 6, 0.3); }
        }

        .consultation-heading {
            font-size: clamp(1.7rem, 4vw, 2.4rem);
            font-weight: 800;
            color: #1c1917;
            line-height: 1.15;
            letter-spacing: -0.03em;
            margin-bottom: 16px;
        }

        .consultation-heading em {
            font-style: italic;
            color: #b45309;
        }

        .consultation-desc {
            font-size: 1rem;
            color: #78716c;
            line-height: 1.7;
            margin-bottom: 28px;
        }

        .consultation-perks {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .consultation-perk {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.92rem;
            color: #44403c;
            font-weight: 500;
        }

        .consultation-perk-icon {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(217, 119, 6, 0.1);
            border-radius: 10px;
            color: #b45309;
        }

        .consultation-card {
            position: relative;
        }

        .consultation-card-glow {
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #f59e0b 100%);
            border-radius: 22px;
            opacity: 0.7;
            filter: blur(0px);
            z-index: 0;
        }

        .consultation-card-inner {
            position: relative;
            z-index: 1;
            background: linear-gradient(160deg, #1c1308 0%, #261a08 50%, #1a1005 100%);
            border-radius: 20px;
            padding: 36px 32px;
        }

        .consultation-card-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #fbbf24;
            margin-bottom: 8px;
        }

        .consultation-card-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #fffbeb;
            letter-spacing: -0.02em;
            margin-bottom: 24px;
        }

        .consultation-card-list {
            list-style: none;
            padding: 0;
            margin: 0 0 28px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .consultation-card-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.92rem;
            color: rgba(255, 251, 235, 0.7);
            font-weight: 500;
        }

        .consultation-card-list li::before {
            content: '';
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            background: rgba(251, 191, 36, 0.15);
            border: 1px solid rgba(251, 191, 36, 0.3);
            border-radius: 6px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fbbf24' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 12px;
        }

        .consultation-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 16px 28px;
            background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
            color: #fff;
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            text-decoration: none;
            border-radius: 14px;
            box-shadow: 0 4px 24px rgba(245, 158, 11, 0.35);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .consultation-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(245, 158, 11, 0.45);
        }

        .consultation-cta:active {
            transform: translateY(0);
        }

        .consultation-card-note {
            text-align: center;
            font-size: 0.78rem;
            color: rgba(251, 191, 36, 0.5);
            margin-top: 12px;
        }

        @media (max-width: 768px) {
            .consultation-section {
                padding: 40px 20px;
                margin: 32px 0;
            }
            .consultation-inner {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .consultation-heading {
                font-size: 1.6rem;
            }
            .consultation-heading br {
                display: none;
            }
            .consultation-card-inner {
                padding: 28px 22px;
            }
        }

        .testimonial-card {
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 80px;
            font-weight: 700;
            color: var(--primary-green);
            opacity: 0.15;
            font-family: Georgia, serif;
            line-height: 1;
        }

        @media (max-width: 1100px) {
            .navbar-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 24px;
                border-top: 1px solid var(--border-light);
                display: none;
                gap: 20px;
            }

            .navbar-menu.active {
                display: flex;
            }

            .navbar-toggle {
                display: flex;
            }

            /* Show all items in mobile menu */
            .navbar-mobile-only {
                display: list-item;
            }

            /* Remove desktop separator in mobile */
            .navbar-cta-group:first-of-type {
                margin-left: 0;
                padding-left: 0;
                border-left: none;
            }

            .impact-counters {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .impact-pillars {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .timeline-items {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .timeline-line {
                display: none;
            }

            .timeline-item::before {
                display: none;
            }

            .mission-message {
                padding: 32px 24px;
            }
        }

        /* ═══════════════════════════════════════════════════════════════
           ASSASSIN SESSION CARDS - Tactical Premium Design
           ═══════════════════════════════════════════════════════════════ */

        .sessions-section {
            background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
            padding: 80px 0 48px;
            margin: 0;
            position: relative;
            overflow: hidden;
        }

        .sessions-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(16, 185, 129, 0.03) 100px, rgba(16, 185, 129, 0.03) 101px),
                repeating-linear-gradient(0deg, transparent, transparent 100px, rgba(16, 185, 129, 0.03) 100px, rgba(16, 185, 129, 0.03) 101px);
            pointer-events: none;
        }

        .sessions-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 60px;
            background: linear-gradient(180deg, transparent, var(--primary-green), transparent);
        }

        .sessions-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .sessions-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(16, 185, 129, 0.12);
            border: 1px solid rgba(16, 185, 129, 0.35);
            padding: 10px 22px;
            border-radius: 100px;
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            color: #6ee7b7;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 24px;
        }

        .sessions-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--primary-green);
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        .slots-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(220, 38, 38, 0.15);
            border: 1px solid rgba(220, 38, 38, 0.5);
            color: #f87171;
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 4px 12px;
            border-radius: 100px;
            margin-top: 8px;
        }

        .slots-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #ef4444;
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        .new-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.5);
            color: #6ee7b7;
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            padding: 6px 14px;
            border-radius: 100px;
            margin-top: 8px;
        }

        .new-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        .sessions-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 400;
            color: #ffffff;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 16px;
            line-height: 1;
        }

        .sessions-subtitle {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.65);
            max-width: 500px;
            margin: 0 auto;
        }

        .sessions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        .assassin-card {
            position: relative;
            background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
            border-radius: 4px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: pointer;
        }

        .assassin-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .assassin-card:hover::before {
            opacity: 1;
        }

        .assassin-card:hover {
            transform: translateY(-8px);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.5),
                0 0 60px rgba(16, 185, 129, 0.1);
        }

        .card-corner {
            position: absolute;
            width: 20px;
            height: 20px;
            border-color: rgba(16, 185, 129, 0.4);
            border-style: solid;
            border-width: 0;
            transition: border-color 0.3s ease;
        }

        .card-corner.top-left {
            top: 12px;
            left: 12px;
            border-top-width: 2px;
            border-left-width: 2px;
        }

        .card-corner.top-right {
            top: 12px;
            right: 12px;
            border-top-width: 2px;
            border-right-width: 2px;
        }

        .card-corner.bottom-left {
            bottom: 12px;
            left: 12px;
            border-bottom-width: 2px;
            border-left-width: 2px;
        }

        .card-corner.bottom-right {
            bottom: 12px;
            right: 12px;
            border-bottom-width: 2px;
            border-right-width: 2px;
        }

        .assassin-card:hover .card-corner {
            border-color: var(--primary-green);
        }

        .card-header {
            padding: 32px 32px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .batch-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }

        .batch-tag.morning {
            color: #fbbf24;
        }

        .batch-tag.evening {
            color: #a78bfa;
        }

        .batch-tag::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: currentColor;
        }

        .card-time {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3.5rem;
            font-weight: 400;
            color: #ffffff;
            letter-spacing: 2px;
            line-height: 1;
            margin-bottom: 4px;
        }

        .card-timezone {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 0.85rem;
            color: var(--primary-green-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .card-body {
            padding: 24px 32px;
        }

        .card-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.4;
        }

        .card-details {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 28px;
        }

        .detail-row {
            display: flex;
            align-items: center;
            gap: 14px;
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .detail-icon {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(16, 185, 129, 0.06);
            border: 1px solid rgba(16, 185, 129, 0.15);
            border-radius: 6px;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .detail-text {
            color: rgba(255, 255, 255, 0.9);
        }

        .detail-text strong {
            color: #ffffff;
            font-weight: 700;
        }

        .card-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }

        .feature-chip {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 8px 14px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 4px;
            color: #6ee7b7;
        }

        .card-footer {
            padding: 0 32px 32px;
        }

        .register-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
            padding: 20px 24px;
            background: linear-gradient(135deg, var(--primary-green) 0%, #047857 100%);
            border: none;
            border-radius: 6px;
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ffffff;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .register-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .register-btn:hover::before {
            left: 100%;
        }

        .register-btn:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
        }

        .register-btn svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .register-btn:hover svg {
            transform: translateX(4px);
        }

        /* Booked Card Styles */
        .assassin-card.booked {
            opacity: 0.65;
            pointer-events: none;
            position: relative;
        }

        .assassin-card.booked:hover {
            transform: none;
            box-shadow: none;
        }

        .booked-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            pointer-events: none;
        }

        .booked-label {
            color: #dc2626;
            font-size: 1.8rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 4px;
            border: 4px solid #dc2626;
            padding: 10px 30px;
            transform: rotate(-12deg);
            background: rgba(0, 0, 0, 0.7);
            border-radius: 8px;
        }

        .register-btn.disabled {
            background: #4a4a4a;
            color: #888;
            pointer-events: none;
            cursor: default;
            box-shadow: none;
            text-align: center;
            display: block;
            padding: 16px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
        }

        .register-btn.disabled:hover {
            transform: none;
            box-shadow: none;
        }

        /* Community Card Styles */
        .assassin-card.community .card-corner {
            border-color: #8b5cf6;
        }

        .assassin-card.community:hover {
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
        }

        .batch-tag.community {
            color: #8b5cf6;
            border-color: rgba(139, 92, 246, 0.3);
            background: rgba(139, 92, 246, 0.1);
        }

        .community .feature-chip {
            background: rgba(139, 92, 246, 0.15);
            color: #a78bfa;
            border-color: rgba(139, 92, 246, 0.2);
        }

        /* ── Community Card: Premium Dark Redesign ── */
        .assassin-card.community {
            position: relative;
            background: linear-gradient(158deg, #0d0b18 0%, #160e2e 45%, #0a1020 100%);
            border: 1px solid rgba(139, 92, 246, 0.22);
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                0 0 0 1px rgba(139, 92, 246, 0.08),
                0 6px 32px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(109, 40, 217, 0.07),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
            transition: box-shadow 0.45s cubic-bezier(0.16,1,0.3,1),
                        transform 0.35s cubic-bezier(0.16,1,0.3,1);
        }

        .assassin-card.community::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 75% 45% at 50% -10%, rgba(124, 58, 237, 0.18) 0%, transparent 65%),
                radial-gradient(ellipse 55% 38% at 90% 110%, rgba(91, 33, 182, 0.12) 0%, transparent 55%);
            pointer-events: none;
            z-index: 0;
        }

        .assassin-card.community::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                repeating-linear-gradient(0deg, rgba(139,92,246,0.015) 0px, transparent 1px, transparent 32px),
                repeating-linear-gradient(90deg, rgba(139,92,246,0.015) 0px, transparent 1px, transparent 32px);
            pointer-events: none;
            z-index: 0;
        }

        .assassin-card.community:hover {
            box-shadow:
                0 0 0 1px rgba(139, 92, 246, 0.38),
                0 12px 48px rgba(0, 0, 0, 0.55),
                0 0 100px rgba(109, 40, 217, 0.16),
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
            transform: translateY(-5px);
        }

        .assassin-card.community > * {
            position: relative;
            z-index: 1;
        }

        .live-now-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #34d399;
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            padding: 5px 14px;
            border-radius: 100px;
        }

        .live-now-badge .live-dot {
            width: 7px;
            height: 7px;
            background: #10b981;
            border-radius: 50%;
            flex-shrink: 0;
            box-shadow: 0 0 8px rgba(16, 185, 129, 0.9);
            animation: livebeat 2.2s ease-in-out infinite;
        }

        @keyframes livebeat {
            0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(16,185,129,0.9); transform: scale(1); }
            50%       { opacity: 0.55; box-shadow: 0 0 3px rgba(16,185,129,0.4); transform: scale(0.8); }
        }

        .community-subscription-label {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(124, 58, 237, 0.1);
            border: 1px solid rgba(139, 92, 246, 0.22);
            border-radius: 10px;
            padding: 11px 18px;
            margin: 16px 0 4px;
        }

        .community-subscription-label .sub-text {
            font-size: 0.9rem;
            font-weight: 700;
            color: #c4b5fd;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .join-community-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 16px 28px;
            background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 55%, #8b5cf6 100%);
            color: #fff;
            font-size: 1rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            text-decoration: none;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(109, 40, 217, 0.45),
                        inset 0 1px 0 rgba(255,255,255,0.18);
            transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
        }

        .join-community-btn::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 50%;
            background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, transparent 100%);
            border-radius: 12px 12px 0 0;
            pointer-events: none;
        }

        .join-community-btn:hover {
            background: linear-gradient(135deg, #5b21b6 0%, #6d28d9 55%, #7c3aed 100%);
            box-shadow: 0 8px 36px rgba(109, 40, 217, 0.6),
                        inset 0 1px 0 rgba(255,255,255,0.2);
            transform: translateY(-2px);
            color: #fff;
        }

        .join-community-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 12px rgba(109, 40, 217, 0.35);
        }

        .join-community-btn svg {
            transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
        }

        .join-community-btn:hover svg {
            transform: translateX(3px);
        }

        .instant-access-note {
            text-align: center;
            font-size: 0.775rem;
            color: rgba(167, 139, 250, 0.6);
            margin-top: 10px;
            letter-spacing: 0.01em;
        }

        /* Mobile Responsive */
        @media (max-width: 480px) {
            .sessions-section {
                padding: 60px 0 32px;
            }

            .sessions-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 0 16px;
            }

            .sessions-title {
                letter-spacing: 2px;
            }

            .card-header {
                padding: 24px 24px 20px;
            }

            .card-time {
                font-size: 2.8rem;
            }

            .card-body {
                padding: 20px 24px;
            }

            .card-footer {
                padding: 0 24px 24px;
            }

            .card-features {
                gap: 8px;
            }

            .feature-chip {
                font-size: 0.75rem;
                padding: 7px 12px;
            }

            .detail-row {
                font-size: 0.9rem;
            }

            .card-title {
                font-size: 1.15rem;
            }

            .booked-label {
                font-size: 1.3rem;
                letter-spacing: 2px;
                padding: 8px 20px;
            }

            .community-price {
                font-size: 0.85rem;
                padding: 12px 16px;
            }

            .waitlist-btn {
                font-size: 0.95rem;
                padding: 14px;
            }

            .coming-soon-note {
                font-size: 0.8rem;
            }
        }

        /* FAQ Section */
        .faq-section {
            padding: 70px 20px;
            background: transparent;
            position: relative;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 44px;
        }

        .faq-title {
            font-size: 2rem;
            font-weight: 800;
            color: #f5f3ff;
            margin-bottom: 10px;
        }

        .faq-subtitle {
            font-size: 1rem;
            color: rgba(196, 181, 253, 0.65);
        }

        .faq-grid {
            max-width: 780px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background: rgba(109, 40, 217, 0.07);
            border: 1px solid rgba(139, 92, 246, 0.18);
            border-radius: 12px;
            overflow: hidden;
            transition: border-color 0.25s;
        }

        .faq-item.open {
            border-color: rgba(139, 92, 246, 0.5);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 22px;
            cursor: pointer;
            gap: 16px;
            user-select: none;
        }

        .faq-question-text {
            font-size: 1rem;
            font-weight: 600;
            color: #e9d5ff;
            line-height: 1.4;
        }

        .faq-icon {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: rgba(139, 92, 246, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.25s, transform 0.3s;
            color: #c4b5fd;
            font-size: 1.2rem;
            font-weight: 300;
            line-height: 1;
        }

        .faq-item.open .faq-icon {
            background: rgba(139, 92, 246, 0.45);
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.3s ease;
            padding: 0 22px;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 22px 20px;
        }

        .faq-answer p {
            color: rgba(245, 243, 255, 0.72);
            font-size: 0.95rem;
            line-height: 1.75;
            margin: 0;
            border-top: 1px solid rgba(139, 92, 246, 0.12);
            padding-top: 14px;
        }

        @media (max-width: 768px) {
            .faq-title {
                font-size: 1.5rem;
            }

            .faq-question {
                padding: 16px 18px;
            }

            .faq-question-text {
                font-size: 0.95rem;
            }

            .faq-item.open .faq-answer {
                padding: 0 18px 16px;
            }
        }

        /* ═══════════════════════════════════════════════════════════════
           HERO SECTION
           ═══════════════════════════════════════════════════════════════ */

        .hero-section {
            padding: 100px 24px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(ellipse 80% 50% at 50% -20%, rgba(5, 150, 105, 0.06) 0%, transparent 70%),
                var(--background-white);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 80px;
            background: linear-gradient(180deg, transparent, rgba(5, 150, 105, 0.3), transparent);
        }

        .hero-inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-eyebrow {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--primary-500);
            margin-bottom: 24px;
        }

        .hero-heading {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--text-black);
            letter-spacing: -0.03em;
            line-height: 1.12;
            margin-bottom: 24px;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--text-gray);
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-400) 100%);
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
        }

        .hero-cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
        }

        .hero-cta-primary svg {
            transition: transform 0.25s ease;
        }

        .hero-cta-primary:hover svg {
            transform: translateX(3px);
        }

        .hero-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: transparent;
            color: var(--text-black);
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 12px;
            border: 1.5px solid var(--border-light);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .hero-cta-secondary:hover {
            border-color: var(--primary-500);
            color: var(--primary-600);
            background: rgba(5, 150, 105, 0.04);
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 20px 40px;
            }
            .hero-heading br {
                display: none;
            }
        }

        /* ═══════════════════════════════════════════════════════════════
           AUTHORITY PROOF STRIP
           ═══════════════════════════════════════════════════════════════ */

        .authority-strip {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            padding: 28px 24px;
            background: var(--background-gray);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            flex-wrap: wrap;
        }

        .authority-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 0 32px;
        }

        .authority-number {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--text-black);
            letter-spacing: -0.02em;
        }

        .authority-label {
            font-size: 0.78rem;
            font-weight: 500;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .authority-divider {
            width: 1px;
            height: 36px;
            background: var(--border-light);
        }

        @media (max-width: 768px) {
            .authority-strip {
                gap: 20px;
                padding: 24px 16px;
            }
            .authority-item {
                padding: 0 12px;
            }
            .authority-divider {
                display: none;
            }
        }

        /* ═══════════════════════════════════════════════════════════════
           SERVICES / WHAT I DO SECTION
           ═══════════════════════════════════════════════════════════════ */

        .services-section {
            padding: 80px 0;
        }

        .services-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .services-title {
            font-size: clamp(1.875rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--text-black);
            margin-bottom: 12px;
            letter-spacing: -0.025em;
        }

        .services-subtitle {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .service-card {
            background: var(--background-white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-xl);
            padding: 36px 28px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
        }

        .service-card-accent {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
        }

        .service-card--enterprise .service-card-accent {
            background: linear-gradient(90deg, var(--primary-500), var(--primary-400));
        }

        .service-card--advisory .service-card-accent {
            background: linear-gradient(90deg, #d97706, #f59e0b);
        }

        .service-card--community .service-card-accent {
            background: linear-gradient(90deg, #7c3aed, #8b5cf6);
        }

        .service-card-icon {
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            margin-bottom: 20px;
        }

        .service-card--enterprise .service-card-icon {
            background: rgba(5, 150, 105, 0.08);
            color: var(--primary-500);
        }

        .service-card--advisory .service-card-icon {
            background: rgba(217, 119, 6, 0.08);
            color: #d97706;
        }

        .service-card--community .service-card-icon {
            background: rgba(124, 58, 237, 0.08);
            color: #7c3aed;
        }

        .service-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-black);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .service-card-desc {
            font-size: 0.95rem;
            color: var(--text-gray);
            line-height: 1.65;
            margin-bottom: 20px;
        }

        .service-card-list {
            list-style: none;
            padding: 0;
            margin: 0 0 24px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .service-card-list li {
            font-size: 0.88rem;
            color: var(--text-gray);
            font-weight: 500;
            padding-left: 20px;
            position: relative;
        }

        .service-card-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 7px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
        }

        .service-card--enterprise .service-card-list li::before {
            background: var(--primary-400);
        }

        .service-card--advisory .service-card-list li::before {
            background: #f59e0b;
        }

        .service-card--community .service-card-list li::before {
            background: #8b5cf6;
        }

        .service-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.25s ease;
        }

        .service-card--enterprise .service-card-link {
            color: var(--primary-500);
        }

        .service-card--advisory .service-card-link {
            color: #b45309;
        }

        .service-card--community .service-card-link {
            color: #7c3aed;
        }

        .service-card-link:hover {
            gap: 10px;
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .services-section {
                padding: 60px 0;
            }
        }

        /* ═══════════════════════════════════════════════════════════════
           EXPANDED ABOUT SECTION
           ═══════════════════════════════════════════════════════════════ */

        .about-section {
            padding: 80px 0;
            background: var(--background-gray);
        }

        .about-inner {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 56px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            align-items: start;
        }

        .about-heading {
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 800;
            color: var(--text-black);
            margin-bottom: 24px;
            letter-spacing: -0.025em;
        }

        .about-narrative p {
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.75;
            margin-bottom: 20px;
        }

        .about-narrative p:last-child {
            margin-bottom: 0;
        }

        .about-highlights {
            background: var(--background-white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-xl);
            padding: 36px 32px;
        }

        .about-highlights-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--text-black);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .about-highlights-list {
            list-style: none;
            padding: 0;
            margin: 0 0 28px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .about-highlights-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-black);
        }

        .about-highlight-marker {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--primary-400);
            flex-shrink: 0;
        }

        .about-social-links {
            display: flex;
            gap: 10px;
        }

        .about-social-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--text-black);
            color: white;
            border-radius: 10px;
            text-decoration: none;
            transition: var(--transition);
        }

        .about-social-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .about-social-btn--whatsapp {
            background: #25D366;
        }

        @media (max-width: 768px) {
            .about-inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .about-section {
                padding: 60px 0;
            }
        }

        /* ═══════════════════════════════════════════════════════════════
           FEATURED INSIGHTS SECTION
           ═══════════════════════════════════════════════════════════════ */

        .insights-section {
            padding: 80px 0;
        }

        .insights-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .insights-title {
            font-size: clamp(1.875rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--text-black);
            margin-bottom: 12px;
            letter-spacing: -0.025em;
        }

        .insights-subtitle {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .insights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .insight-card {
            background: var(--background-white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-xl);
            padding: 28px 24px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .insight-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .insight-card-accent {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
        }

        .insight-category {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--primary-500);
            margin-bottom: 12px;
        }

        .insight-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--text-black);
            line-height: 1.35;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .insight-excerpt {
            font-size: 0.9rem;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .insight-read-more {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary-500);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.25s ease;
        }

        .insight-card:hover .insight-read-more {
            gap: 10px;
        }

        .insights-footer {
            text-align: center;
            margin-top: 36px;
        }

        .insights-view-all {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-black);
            text-decoration: none;
            padding: 12px 24px;
            border: 1.5px solid var(--border-light);
            border-radius: 12px;
            transition: all 0.25s ease;
        }

        .insights-view-all:hover {
            border-color: var(--primary-500);
            color: var(--primary-500);
            gap: 10px;
        }

        @media (max-width: 768px) {
            .insights-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .insights-section {
                padding: 60px 0;
            }
        }

        /* ═══════════════════════════════════════════════════════════════
           FAQ SECTION — LIGHT THEME (standalone)
           ═══════════════════════════════════════════════════════════════ */

        .faq-section-light {
            padding: 80px 20px;
            background: var(--background-gray);
        }

        .faq-header-light {
            text-align: center;
            margin-bottom: 48px;
        }

        .faq-title-light {
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 800;
            color: var(--text-black);
            margin-bottom: 10px;
            letter-spacing: -0.025em;
        }

        .faq-subtitle-light {
            font-size: 1.05rem;
            color: var(--text-gray);
        }

        .faq-grid-light {
            max-width: 780px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item-light {
            background: var(--background-white);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            overflow: hidden;
            transition: border-color 0.25s;
        }

        .faq-item-light.open {
            border-color: var(--primary-400);
        }

        .faq-question-light {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 22px;
            cursor: pointer;
            gap: 16px;
            user-select: none;
        }

        .faq-question-text-light {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-black);
            line-height: 1.4;
        }

        .faq-icon-light {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(5, 150, 105, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.25s, transform 0.3s;
            color: var(--primary-500);
            font-size: 1.2rem;
            font-weight: 300;
            line-height: 1;
        }

        .faq-item-light.open .faq-icon-light {
            background: rgba(5, 150, 105, 0.15);
            transform: rotate(45deg);
        }

        .faq-answer-light {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.3s ease;
            padding: 0 22px;
        }

        .faq-item-light.open .faq-answer-light {
            max-height: 300px;
            padding: 0 22px 20px;
        }

        .faq-answer-light p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.75;
            margin: 0;
            border-top: 1px solid var(--border-light);
            padding-top: 14px;
        }

        @media (max-width: 768px) {
            .faq-title-light {
                font-size: 1.5rem;
            }
            .faq-question-light {
                padding: 16px 18px;
            }
            .faq-question-text-light {
                font-size: 0.95rem;
            }
            .faq-item-light.open .faq-answer-light {
                padding: 0 18px 16px;
            }
        }

        /* ═══════════════════════════════════════════════════════════════
           NAVBAR DROPDOWN (Work With Me)
           ═══════════════════════════════════════════════════════════════ */

        .navbar-dropdown {
            position: relative;
        }

        .navbar-btn-work {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-400) 100%) !important;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        .navbar-btn-work svg {
            transition: transform 0.25s ease;
        }

        .navbar-dropdown.open .navbar-btn-work svg {
            transform: rotate(180deg);
        }

        .navbar-dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: var(--background-white);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
            min-width: 220px;
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 100;
        }

        .navbar-dropdown.open .navbar-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .navbar-dropdown-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 8px;
            text-decoration: none;
            color: var(--text-black);
            font-size: 0.88rem;
            font-weight: 500;
            transition: background 0.15s;
        }

        .navbar-dropdown-item:hover {
            background: var(--background-gray);
        }

        .navbar-dropdown-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            flex-shrink: 0;
        }

        .navbar-dropdown-item:first-child .navbar-dropdown-icon {
            background: rgba(217, 119, 6, 0.08);
            color: #d97706;
        }

        .navbar-dropdown-item:last-child .navbar-dropdown-icon {
            background: rgba(124, 58, 237, 0.08);
            color: #7c3aed;
        }

        /* Mobile: flatten dropdown into nav */
        @media (max-width: 1100px) {
            .navbar-dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                padding: 0;
                min-width: auto;
                background: transparent;
            }
            .navbar-btn-work svg {
                display: none;
            }
            .navbar-dropdown.open .navbar-dropdown-menu {
                transform: none;
            }
        }
