        :root {
            --navy: #0e0e44;
            --navy-dark: #0a0a30;
            --violet: #8167ea;
            --violet-light: #a78bfa;
            --violet-bright: #b794f6;
            --lavender: #d2c3ef;
            --white: #ffffff;
            --off-white: #f8f7fc;
            --muted: #64748b;
            --light-muted: #94a3b8;
            --dark-text: #1a1a2e;
            --accent-cyan: #49ccf9;
            --accent-purple: #8700ff;
            --accent-pink: #ff6b9d;
            --accent-orange: #f9a852;
            --accent-green: #10b981;
            --border-light: rgba(129, 103, 234, 0.12);
        }

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

        body {
            font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: linear-gradient(180deg, #ffffff 0%, #f8f7fc 50%, #f3f0ff 100%);
            color: var(--dark-text);
            min-height: 100vh;
            line-height: 1.6;
        }

        .serif-italic {
            font-family: 'Instrument Serif', Georgia, serif;
            font-style: italic;
            font-weight: 400;
            background: linear-gradient(135deg, #7c5cfc 0%, #a855f7 33%, #ec4899 66%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gradient-text {
            background: linear-gradient(135deg, #7c5cfc 0%, #a855f7 33%, #ec4899 66%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ==================== NAVIGATION ==================== */
        .hero-wrapper {
            position: relative;
            overflow: hidden;
        }

        .background-gradient-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100vh;
            overflow: hidden;
            z-index: 0;
        }

        /* Main gradient blob - centered on graphics area */
        .background-gradient {
            position: absolute;
            top: 100px;
            left: 50%;
            right: auto;
            transform: none;
            width: 800px;
            height: 650px;
            background: 
                radial-gradient(ellipse 100% 100% at 50% 50%,
                    rgba(200, 170, 255, 0.5) 0%,
                    rgba(180, 140, 255, 0.35) 25%,
                    rgba(255, 200, 220, 0.28) 45%,
                    rgba(255, 200, 150, 0.22) 60%,
                    transparent 75%);
            filter: blur(60px);
            animation: gradientFloat 8s ease-in-out infinite;
        }

        /* Purple accent - centered on graphics */
        .background-gradient-secondary {
            position: absolute;
            top: 150px;
            left: 55%;
            right: auto;
            transform: none;
            width: 450px;
            height: 450px;
            background: radial-gradient(ellipse 100% 100% at 50% 50%,
                rgba(139, 92, 246, 0.4) 0%,
                rgba(168, 85, 247, 0.25) 40%,
                transparent 65%);
            filter: blur(55px);
            animation: gradientFloatRight 10s ease-in-out infinite;
        }

        /* Pink/violet accent - centered on graphics */
        .background-gradient-tertiary {
            position: absolute;
            top: 280px;
            left: 60%;
            right: auto;
            transform: none;
            width: 400px;
            height: 400px;
            background: radial-gradient(ellipse 100% 100% at 50% 50%,
                rgba(236, 72, 153, 0.35) 0%,
                rgba(219, 39, 119, 0.2) 40%,
                transparent 65%);
            filter: blur(55px);
            animation: gradientFloatRight 12s ease-in-out infinite reverse;
        }

        /* Light orange accent - centered on graphics */
        .background-gradient-orange {
            position: absolute;
            top: 380px;
            left: 52%;
            right: auto;
            transform: none;
            width: 300px;
            height: 300px;
            background: radial-gradient(ellipse 100% 100% at 50% 50%,
                rgba(249, 168, 82, 0.35) 0%,
                rgba(251, 191, 36, 0.2) 40%,
                transparent 65%);
            filter: blur(50px);
            animation: gradientFloatRight 14s ease-in-out infinite;
        }

        /* Cyan accent for benefits section */
        .background-gradient-cyan {
            position: absolute;
            top: 900px;
            left: 50%;
            transform: translateX(-60%);
            width: 500px;
            height: 400px;
            background: radial-gradient(ellipse 100% 100% at 50% 50%,
                rgba(73, 204, 249, 0.3) 0%,
                rgba(73, 204, 249, 0.15) 40%,
                transparent 65%);
            filter: blur(60px);
            animation: gradientFloat 15s ease-in-out infinite;
        }

        @keyframes gradientFloat {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.02); }
        }

        @keyframes gradientFloatRight {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        /* Vertical lines overlay */
        .background-lines {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: repeating-linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.35) 0px,
                rgba(255, 255, 255, 0.35) 1px,
                transparent 1px,
                transparent 48px
            );
            pointer-events: none;
            mask-image: radial-gradient(ellipse 55% 35% at 50% 20%, 
                black 0%, 
                black 40%,
                transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 55% 35% at 50% 20%, 
                black 0%, 
                black 40%,
                transparent 100%);
        }

        /* ==================== HERO SECTION ==================== */
        .hero {
            padding: 160px 48px 80px;
            position: relative;
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1440px;
            margin: 0 auto;
            z-index: 1;
        }

        .hero-content {
            text-align: left;
            position: relative;
            z-index: 10;
        }

        /* Hero Graphics - Right Side */
        .hero-graphics {
            position: relative;
            height: 650px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .graphics-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        /* Central Glow */
        .central-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(129, 103, 234, 0.3) 0%, rgba(168, 85, 247, 0.15) 40%, transparent 70%);
            border-radius: 50%;
            filter: blur(40px);
            animation: centralPulse 4s ease-in-out infinite;
        }

        @keyframes centralPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
        }

        /* Orbital Rings */
        .orbital-ring {
            position: absolute;
            top: 50%;
            left: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
        }

        .orbital-ring-1 {
            width: 200px;
            height: 200px;
            animation: rotateRing 20s linear infinite;
        }

        .orbital-ring-2 {
            width: 350px;
            height: 350px;
            border-style: dashed;
            border-color: rgba(255, 255, 255, 0.4);
            animation: rotateRing 30s linear infinite reverse;
        }

        .orbital-ring-3 {
            width: 500px;
            height: 500px;
            border-color: rgba(255, 255, 255, 0.3);
            animation: rotateRing 40s linear infinite;
        }

        @keyframes rotateRing {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Floating Expert Card - Main */
        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.08),
                0 8px 24px rgba(129, 103, 234, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 1);
            z-index: 10;
        }

        .expert-card {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 280px;
            animation: floatMain 6s ease-in-out infinite;
        }

        @keyframes floatMain {
            0%, 100% { transform: translate(-50%, -50%) translateY(0); }
            50% { transform: translate(-50%, -50%) translateY(-15px); }
        }

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

        .expert-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.9);
        }

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

        .expert-info h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 2px;
        }

        .expert-info p {
            font-size: 13px;
            color: var(--muted);
        }

        .expert-card-stats {
            display: flex;
            gap: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(129, 103, 234, 0.1);
        }

        .expert-stat {
            flex: 1;
            text-align: center;
        }

        .expert-stat-value {
            font-size: 18px;
            font-weight: 700;
            color: var(--violet);
        }

        .expert-stat-label {
            font-size: 11px;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Payment Notification Card */
        .payment-card {
            top: 15%;
            right: 5%;
            width: 220px;
            padding: 16px 20px;
            animation: floatPayment 5s ease-in-out infinite;
            animation-delay: -1s;
        }

        @keyframes floatPayment {
            0%, 100% { transform: translateY(0) rotate(3deg); }
            50% { transform: translateY(-20px) rotate(3deg); }
        }

        .payment-card-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .payment-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }

        .payment-icon svg {
            width: 22px;
            height: 22px;
            stroke: white;
        }

        .payment-details h5 {
            font-size: 14px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 2px;
        }

        .payment-amount {
            font-size: 20px;
            font-weight: 800;
            color: #10b981;
        }

        /* Booking Card */
        .booking-card {
            bottom: 20%;
            left: 0;
            width: 200px;
            padding: 16px 18px;
            animation: floatBooking 7s ease-in-out infinite;
            animation-delay: -2s;
        }

        @keyframes floatBooking {
            0%, 100% { transform: translateY(0) rotate(-2deg); }
            50% { transform: translateY(-18px) rotate(-2deg); }
        }

        .booking-card-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .booking-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
        }

        .booking-icon svg {
            width: 20px;
            height: 20px;
            stroke: white;
        }

        .booking-details h5 {
            font-size: 13px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 2px;
        }

        .booking-details p {
            font-size: 12px;
            color: var(--muted);
        }

        /* Rating Card */
        .rating-card {
            top: 25%;
            left: 5%;
            padding: 14px 18px;
            animation: floatRating 6s ease-in-out infinite;
            animation-delay: -3s;
        }

        @keyframes floatRating {
            0%, 100% { transform: translateY(0) rotate(-3deg); }
            50% { transform: translateY(-22px) rotate(-3deg); }
        }

        .rating-content {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .rating-stars {
            display: flex;
            gap: 2px;
        }

        .rating-stars svg {
            width: 16px;
            height: 16px;
            fill: #f59e0b;
            stroke: #f59e0b;
        }

        .rating-value {
            font-size: 15px;
            font-weight: 700;
            color: var(--navy);
        }

        .rating-count {
            font-size: 12px;
            color: var(--muted);
        }

        /* Message Bubble */
        .message-bubble {
            bottom: 30%;
            right: 0;
            padding: 14px 18px;
            max-width: 180px;
            animation: floatMessage 5.5s ease-in-out infinite;
            animation-delay: -0.5s;
        }

        @keyframes floatMessage {
            0%, 100% { transform: translateY(0) rotate(2deg); }
            50% { transform: translateY(-16px) rotate(2deg); }
        }

        .message-content {
            font-size: 13px;
            color: var(--navy);
            line-height: 1.5;
        }

        .message-content strong {
            color: var(--violet);
        }

        /* Floating Icons */
        .floating-icon {
            position: absolute;
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.95);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 8px 24px rgba(0, 0, 0, 0.06),
                inset 0 1px 1px rgba(255, 255, 255, 1);
        }

        .floating-icon svg {
            width: 24px;
            height: 24px;
        }

        .icon-dollar {
            top: 8%;
            left: 25%;
            animation: floatIcon1 4s ease-in-out infinite;
        }

        .icon-dollar svg {
            stroke: #10b981;
        }

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

        .icon-calendar {
            bottom: 12%;
            right: 25%;
            animation: floatIcon2 4.5s ease-in-out infinite;
            animation-delay: -1s;
        }

        .icon-calendar svg {
            stroke: var(--violet);
        }

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

        .icon-video {
            top: 40%;
            right: 8%;
            animation: floatIcon3 5s ease-in-out infinite;
            animation-delay: -2s;
        }

        .icon-video svg {
            stroke: var(--accent-pink);
        }

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

        .icon-shield {
            bottom: 40%;
            left: 8%;
            animation: floatIcon4 4.8s ease-in-out infinite;
            animation-delay: -0.5s;
        }

        .icon-shield svg {
            stroke: var(--accent-cyan);
        }

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

        /* Floating Dots */
        .floating-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .dot {
            position: absolute;
            border-radius: 50%;
            opacity: 0.6;
        }

        .dot-1 {
            width: 8px;
            height: 8px;
            background: var(--violet);
            top: 10%;
            right: 30%;
            animation: dotFloat 3s ease-in-out infinite;
        }

        .dot-2 {
            width: 6px;
            height: 6px;
            background: var(--accent-pink);
            top: 35%;
            left: 15%;
            animation: dotFloat 3.5s ease-in-out infinite;
            animation-delay: -1s;
        }

        .dot-3 {
            width: 10px;
            height: 10px;
            background: var(--accent-cyan);
            bottom: 25%;
            right: 15%;
            animation: dotFloat 4s ease-in-out infinite;
            animation-delay: -2s;
        }

        .dot-4 {
            width: 5px;
            height: 5px;
            background: var(--accent-orange);
            bottom: 15%;
            left: 30%;
            animation: dotFloat 3.2s ease-in-out infinite;
            animation-delay: -0.5s;
        }

        .dot-5 {
            width: 7px;
            height: 7px;
            background: #10b981;
            top: 55%;
            right: 5%;
            animation: dotFloat 3.8s ease-in-out infinite;
            animation-delay: -1.5s;
        }

        @keyframes dotFloat {
            0%, 100% { transform: translateY(0); opacity: 0.4; }
            50% { transform: translateY(-20px); opacity: 0.8; }
        }

        /* Connection Lines */
        .connection-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .connection-lines svg {
            width: 100%;
            height: 100%;
        }

        .connection-line {
            stroke: url(#lineGradient);
            stroke-width: 1.5;
            fill: none;
            stroke-dasharray: 8 6;
            opacity: 0.4;
            animation: dashMove 20s linear infinite;
        }

        @keyframes dashMove {
            to { stroke-dashoffset: -100; }
        }

        /* Profile Photo Cards */
        .profile-card {
            position: absolute;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 2px solid rgba(255, 255, 255, 0.95);
            box-shadow:
                0 8px 24px rgba(0, 0, 0, 0.08),
                0 4px 12px rgba(129, 103, 234, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 1);
            padding: 0;
        }

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

        .profile-1 {
            top: 5%;
            right: 40%;
            animation: floatProfile1 5s ease-in-out infinite;
        }

        @keyframes floatProfile1 {
            0%, 100% { transform: translateY(0) rotate(-5deg); }
            50% { transform: translateY(-18px) rotate(-5deg); }
        }

        .profile-2 {
            bottom: 8%;
            left: 20%;
            animation: floatProfile2 6s ease-in-out infinite;
            animation-delay: -2s;
        }

        @keyframes floatProfile2 {
            0%, 100% { transform: translateY(0) rotate(4deg); }
            50% { transform: translateY(-14px) rotate(4deg); }
        }

        .profile-3 {
            top: 60%;
            right: 3%;
            animation: floatProfile3 5.5s ease-in-out infinite;
            animation-delay: -1s;
        }

        @keyframes floatProfile3 {
            0%, 100% { transform: translateY(0) rotate(-3deg); }
            50% { transform: translateY(-16px) rotate(-3deg); }
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 28px;
            color: var(--violet);
            box-shadow: 
                0 4px 24px rgba(0, 0, 0, 0.04),
                inset 0 1px 1px rgba(255, 255, 255, 0.9);
        }

        .badge-icon {
            font-size: 16px;
        }

        .hero h1 {
            font-size: 60px;
            font-weight: 800;
            letter-spacing: -3px;
            line-height: 1.1;
            margin-bottom: 24px;
            color: var(--navy);
        }

        .hero-subtitle {
            font-size: 19px;
            color: var(--navy);
            opacity: 0.8;
            max-width: 520px;
            margin: 0 0 40px 0;
            line-height: 1.7;
        }

        /* Stats Bar - Glass Style */
        .hero-stats {
            display: inline-flex;
            gap: 32px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 20px 32px;
            margin-bottom: 40px;
            box-shadow: 
                0 4px 24px rgba(0, 0, 0, 0.04),
                0 1px 2px rgba(0, 0, 0, 0.02),
                inset 0 1px 1px rgba(255, 255, 255, 0.9);
        }

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

        .hero-stat-value {
            font-size: 36px;
            font-weight: 800;
            color: var(--navy);
        }

        .hero-stat-label {
            font-size: 13px;
            color: var(--muted);
            margin-top: 2px;
            font-weight: 500;
        }

        .hero-ctas {
            display: flex;
            justify-content: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
            color: white;
            padding: 18px 36px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4), 0 0 40px rgba(139, 92, 246, 0.2);
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.3);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: var(--navy);
            padding: 18px 36px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.05),
                inset 0 1px 1px rgba(255, 255, 255, 0.9);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
            box-shadow: 
                0 12px 40px rgba(0, 0, 0, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 1);
        }

        .hero-note {
            font-size: 14px;
            color: var(--muted);
            margin-top: 24px;
            padding-bottom: 20px;
        }

        .hero-note span {
            margin: 0 12px;
            opacity: 0.4;
        }

        /* ==================== BENEFITS SECTION ==================== */
        .section {
            padding: 120px 48px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--violet);
            padding: 8px 18px;
            background: rgba(129, 103, 234, 0.1);
            border-radius: 100px;
            border: 1px solid rgba(129, 103, 234, 0.2);
            margin-bottom: 24px;
        }

        .section-label svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }

        .section-label.label-light {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            color: var(--lavender);
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            letter-spacing: -2px;
            color: var(--navy);
            margin-bottom: 16px;
            line-height: 1.15;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--muted);
            max-width: 600px;
            line-height: 1.7;
            text-align: center;
            margin: 0 auto;
        }

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

        .benefits-header .section-subtitle {
            margin: 0 auto;
        }

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

        .benefit-card {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.7);
            border-radius: 24px;
            padding: 36px;
            transition: all 0.4s ease;
            box-shadow: 
                0 4px 24px rgba(0, 0, 0, 0.03),
                0 1px 2px rgba(0, 0, 0, 0.02),
                inset 0 1px 1px rgba(255, 255, 255, 0.8);
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.7);
            box-shadow: 
                0 20px 60px rgba(129, 103, 234, 0.12),
                0 8px 24px rgba(0, 0, 0, 0.04),
                inset 0 1px 1px rgba(255, 255, 255, 1);
            border-color: rgba(255, 255, 255, 0.9);
        }

        .benefit-icon {
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 24px;
            box-shadow: 
                0 4px 16px rgba(0, 0, 0, 0.04),
                inset 0 1px 1px rgba(255, 255, 255, 1);
        }

        .benefit-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .benefit-highlight {
            display: inline-block;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 16px;
            padding: 4px 0;
        }

        .benefit-highlight.green {
            color: #10b981;
        }

        .benefit-highlight.violet {
            color: var(--violet);
        }

        .benefit-highlight.cyan {
            color: var(--accent-cyan);
        }

        .benefit-description {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.7;
        }

        /* ==================== WHAT IS AN EXPERT SECTION ==================== */
        .expert-explainer {
            padding: 120px 48px;
            background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
            position: relative;
        }

        .expert-explainer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .expert-intro-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 24px;
            padding: 48px;
            margin-bottom: 48px;
            box-shadow: 
                0 8px 40px rgba(0, 0, 0, 0.04),
                inset 0 1px 1px rgba(255, 255, 255, 0.9);
        }

        .expert-intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .expert-intro-text h3 {
            font-size: 28px;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -1px;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .expert-intro-text p {
            font-size: 16px;
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .invite-channels {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        .invite-channel {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(139, 92, 246, 0.08);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--violet);
        }

        .invite-channel svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
        }

        .expert-intro-visual {
            position: relative;
        }

        .company-program-card {
            background: white;
            border-radius: 20px;
            padding: 32px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.08),
                0 8px 24px rgba(129, 103, 234, 0.06);
            border: 1px solid rgba(200, 180, 255, 0.15);
            position: relative;
        }

        .company-program-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .company-logo-placeholder {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 18px;
        }

        .company-program-name h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 2px;
        }

        .company-program-name span {
            font-size: 13px;
            color: var(--muted);
        }

        .program-badge {
            margin-left: auto;
            padding: 6px 12px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            color: #10b981;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .program-details {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .program-detail {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--muted);
        }

        .program-detail svg {
            width: 18px;
            height: 18px;
            stroke: var(--violet);
            flex-shrink: 0;
        }

        .program-detail strong {
            color: var(--navy);
        }

        /* Proactive CTA Box */
        .proactive-cta {
            margin-top: 48px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.06) 0%, rgba(236, 72, 153, 0.04) 100%);
            border: 1px solid rgba(139, 92, 246, 0.15);
            border-radius: 20px;
            padding: 32px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
        }

        .proactive-cta-content {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .proactive-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .proactive-icon svg {
            width: 28px;
            height: 28px;
            stroke: white;
        }

        .proactive-text h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .proactive-text p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.5;
        }

        .proactive-cta .btn-primary-alt {
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
            color: white;
            padding: 14px 28px;
            border-radius: 100px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
            white-space: nowrap;
        }

        .proactive-cta .btn-primary-alt:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
        }

        /* ==================== HOW IT WORKS ==================== */
        .how-it-works-wrapper {
            padding: 0 48px;
        }

        .how-it-works {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.95) 0%,
                rgba(249, 240, 255, 0.9) 25%,
                rgba(255, 235, 245, 0.9) 50%,
                rgba(255, 245, 235, 0.9) 75%,
                rgba(255, 255, 255, 0.95) 100%
            );
            border-radius: 32px;
            padding: 80px 64px;
            max-width: 1400px;
            margin: 0 auto;
            box-shadow: 
                0 20px 60px rgba(139, 92, 246, 0.08),
                0 8px 25px rgba(236, 72, 153, 0.05);
            position: relative;
            overflow: hidden;
        }

        .how-it-works::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
                        radial-gradient(ellipse at 70% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
                        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.04) 0%, transparent 60%);
            pointer-events: none;
        }

        .how-it-works-header {
            text-align: center;
            margin-bottom: 64px;
            position: relative;
            z-index: 2;
        }

        .how-it-works-header .section-subtitle {
            margin: 0 auto;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            position: relative;
            z-index: 2;
        }

        /* Clean Glassmorphism Flip Card */
        .step-card {
            position: relative;
            height: 300px;
            perspective: 1000px;
            cursor: pointer;
        }

        .step-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }

        .step-card:hover .step-card-inner {
            transform: rotateY(180deg);
        }

        .step-card-front,
        .step-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            border-radius: 24px;
            padding: 32px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            box-shadow: 
                0 10px 40px rgba(0, 0, 0, 0.04),
                0 2px 10px rgba(0, 0, 0, 0.02),
                inset 0 1px 1px rgba(255, 255, 255, 1);
            transition: all 0.4s ease;
        }

        .step-card-front {
            justify-content: flex-start;
            padding-top: 40px;
        }

        .step-card-back {
            transform: rotateY(180deg);
            justify-content: center;
        }

        .step-card:hover .step-card-front,
        .step-card:hover .step-card-back {
            box-shadow: 
                0 25px 60px rgba(0, 0, 0, 0.08),
                0 10px 25px rgba(0, 0, 0, 0.04),
                inset 0 1px 1px rgba(255, 255, 255, 1);
        }

        /* Icon Container - Rounded Rectangle with Gradient */
        .step-icon-container {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .step-icon-container svg {
            width: 28px;
            height: 28px;
            stroke-width: 1.8;
        }

        /* Icon container gradients per card */
        .step-card:nth-child(1) .step-icon-container {
            background: linear-gradient(135deg, #e0d4fc 0%, #c7b8f7 100%);
        }
        .step-card:nth-child(1) .step-icon-container svg { stroke: #6366f1; }

        .step-card:nth-child(2) .step-icon-container {
            background: linear-gradient(135deg, #f5d0e0 0%, #f0b8d0 100%);
        }
        .step-card:nth-child(2) .step-icon-container svg { stroke: #db2777; }

        .step-card:nth-child(3) .step-icon-container {
            background: linear-gradient(135deg, #fcd9d9 0%, #f8c4c4 100%);
        }
        .step-card:nth-child(3) .step-icon-container svg { stroke: #e11d48; }

        .step-card:nth-child(4) .step-icon-container {
            background: linear-gradient(135deg, #ffe4d0 0%, #ffd4b8 100%);
        }
        .step-card:nth-child(4) .step-icon-container svg { stroke: #ea580c; }

        .step-card:nth-child(5) .step-icon-container {
            background: linear-gradient(135deg, #d0f5e8 0%, #b8f0dc 100%);
        }
        .step-card:nth-child(5) .step-icon-container svg { stroke: #059669; }

        /* Hide step number on front */
        .step-number {
            display: none;
        }

        .step-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .step-time {
            display: none;
        }

        /* Front card description preview */
        .step-card-front .step-preview {
            font-size: 13px;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 16px;
            flex-grow: 1;
        }

        .step-read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: #db2777;
            text-decoration: none;
            margin-top: auto;
            transition: gap 0.3s ease;
        }

        .step-read-more svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            stroke-width: 2.5;
            transition: transform 0.3s ease;
        }

        .step-card:hover .step-read-more svg {
            transform: translateX(4px);
        }

        /* Card-specific read more colors */
        .step-card:nth-child(1) .step-read-more { color: #6366f1; }
        .step-card:nth-child(2) .step-read-more { color: #db2777; }
        .step-card:nth-child(3) .step-read-more { color: #e11d48; }
        .step-card:nth-child(4) .step-read-more { color: #ea580c; }
        .step-card:nth-child(5) .step-read-more { color: #059669; }

        /* Back card styles */
        .step-description {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.65;
            margin-bottom: 20px;
        }

        .step-back-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 14px;
        }

        .step-back-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 100px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .step-card:nth-child(1) .step-back-badge { color: #6366f1; background: rgba(99, 102, 241, 0.1); }
        .step-card:nth-child(2) .step-back-badge { color: #db2777; background: rgba(219, 39, 119, 0.1); }
        .step-card:nth-child(3) .step-back-badge { color: #e11d48; background: rgba(225, 29, 72, 0.1); }
        .step-card:nth-child(4) .step-back-badge { color: #ea580c; background: rgba(234, 88, 12, 0.1); }
        .step-card:nth-child(5) .step-back-badge { color: #059669; background: rgba(5, 150, 105, 0.1); }

        /* ==================== WHO SHOULD APPLY ==================== */
        .who-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 48px;
        }

        .who-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 28px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 2px solid transparent;
            border-radius: 20px;
            transition: all 0.3s ease;
            box-shadow: 
                0 4px 20px rgba(0, 0, 0, 0.03),
                inset 0 1px 1px rgba(255, 255, 255, 0.8);
            position: relative;
        }

        .who-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 18px;
            padding: 2px;
            background: linear-gradient(135deg, rgba(200, 200, 200, 0.3) 0%, rgba(200, 200, 200, 0.1) 100%);
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .who-card:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.85);
            box-shadow: 
                0 16px 48px rgba(0, 0, 0, 0.08),
                inset 0 1px 1px rgba(255, 255, 255, 1);
        }

        /* Card 1 - Platform Champions - Blue Gradient */
        .who-card:nth-child(1)::before {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(37, 99, 235, 0.2) 100%);
        }
        .who-card:nth-child(1):hover::before {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(37, 99, 235, 0.7) 100%);
        }
        .who-card:nth-child(1) .who-icon {
            color: #3b82f6;
        }
        .who-card:nth-child(1) .who-icon svg {
            stroke: #3b82f6;
        }
        .who-card:nth-child(1):hover .who-icon {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%);
            box-shadow: 
                0 0 20px rgba(59, 130, 246, 0.4),
                0 4px 16px rgba(59, 130, 246, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 1);
        }

        /* Card 2 - Implementation Leaders - Purple Gradient */
        .who-card:nth-child(2)::before {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.4) 0%, rgba(124, 58, 237, 0.2) 100%);
        }
        .who-card:nth-child(2):hover::before {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(124, 58, 237, 0.7) 100%);
        }
        .who-card:nth-child(2) .who-icon {
            color: #8b5cf6;
        }
        .who-card:nth-child(2) .who-icon svg {
            stroke: #8b5cf6;
        }
        .who-card:nth-child(2):hover .who-icon {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
            box-shadow: 
                0 0 20px rgba(139, 92, 246, 0.4),
                0 4px 16px rgba(139, 92, 246, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 1);
        }

        /* Card 3 - Agency Partners - Teal Gradient */
        .who-card:nth-child(3)::before {
            background: linear-gradient(135deg, rgba(20, 184, 166, 0.4) 0%, rgba(13, 148, 136, 0.2) 100%);
        }
        .who-card:nth-child(3):hover::before {
            background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(13, 148, 136, 0.7) 100%);
        }
        .who-card:nth-child(3) .who-icon {
            color: #14b8a6;
        }
        .who-card:nth-child(3) .who-icon svg {
            stroke: #14b8a6;
        }
        .who-card:nth-child(3):hover .who-icon {
            background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(13, 148, 136, 0.1) 100%);
            box-shadow: 
                0 0 20px rgba(20, 184, 166, 0.4),
                0 4px 16px rgba(20, 184, 166, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 1);
        }

        /* Card 4 - Case Study Contributors - Orange Gradient */
        .who-card:nth-child(4)::before {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.4) 0%, rgba(234, 88, 12, 0.2) 100%);
        }
        .who-card:nth-child(4):hover::before {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.9) 0%, rgba(234, 88, 12, 0.7) 100%);
        }
        .who-card:nth-child(4) .who-icon {
            color: #f97316;
        }
        .who-card:nth-child(4) .who-icon svg {
            stroke: #f97316;
        }
        .who-card:nth-child(4):hover .who-icon {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(234, 88, 12, 0.1) 100%);
            box-shadow: 
                0 0 20px rgba(249, 115, 22, 0.4),
                0 4px 16px rgba(249, 115, 22, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 1);
        }

        /* Card 5 - Industry Thought Leaders - Pink Gradient */
        .who-card:nth-child(5)::before {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.4) 0%, rgba(219, 39, 119, 0.2) 100%);
        }
        .who-card:nth-child(5):hover::before {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.9) 0%, rgba(219, 39, 119, 0.7) 100%);
        }
        .who-card:nth-child(5) .who-icon {
            color: #ec4899;
        }
        .who-card:nth-child(5) .who-icon svg {
            stroke: #ec4899;
        }
        .who-card:nth-child(5):hover .who-icon {
            background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(219, 39, 119, 0.1) 100%);
            box-shadow: 
                0 0 20px rgba(236, 72, 153, 0.4),
                0 4px 16px rgba(236, 72, 153, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 1);
        }

        /* Card 6 - Everyday Practitioners - Indigo Gradient */
        .who-card:nth-child(6)::before {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(79, 70, 229, 0.2) 100%);
        }
        .who-card:nth-child(6):hover::before {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.9) 0%, rgba(79, 70, 229, 0.7) 100%);
        }
        .who-card:nth-child(6) .who-icon {
            color: #6366f1;
        }
        .who-card:nth-child(6) .who-icon svg {
            stroke: #6366f1;
        }
        .who-card:nth-child(6):hover .who-icon {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(79, 70, 229, 0.1) 100%);
            box-shadow: 
                0 0 20px rgba(99, 102, 241, 0.4),
                0 4px 16px rgba(99, 102, 241, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 1);
        }

        .who-icon {
            width: 52px;
            height: 52px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.9);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 
                0 4px 16px rgba(0, 0, 0, 0.04),
                inset 0 1px 1px rgba(255, 255, 255, 1);
            transition: all 0.3s ease;
        }

        .who-icon svg {
            width: 24px;
            height: 24px;
            stroke-width: 1.5;
            fill: none;
            transition: all 0.3s ease;
        }

        .who-content h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
        }

        .who-content p {
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
        }

        /* ==================== CALCULATOR SECTION ==================== */
        .calculator-section {
            background: 
                radial-gradient(ellipse 600px 400px at 15% 20%, rgba(124, 92, 252, 0.25) 0%, transparent 60%),
                radial-gradient(ellipse 500px 500px at 85% 15%, rgba(168, 85, 247, 0.2) 0%, transparent 55%),
                radial-gradient(ellipse 400px 300px at 75% 75%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 450px 350px at 25% 80%, rgba(99, 102, 241, 0.18) 0%, transparent 55%),
                radial-gradient(ellipse 300px 300px at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, #0d0a1a 0%, #1a1333 50%, #0f0c1f 100%);
            border-radius: 32px;
            padding: 80px 64px;
            margin: 120px 48px;
            position: relative;
            overflow: hidden;
        }

        /* Noise texture overlay */
        .calculator-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
            z-index: 1;
            border-radius: 32px;
        }

        /* Animated gradient orbs */
        .calc-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.4;
            animation: calcOrbFloat 20s ease-in-out infinite;
            z-index: 0;
        }

        .calc-orb-1 {
            width: 500px;
            height: 350px;
            background: rgba(124, 92, 252, 0.3);
            top: -120px;
            left: -80px;
            animation-delay: 0s;
        }

        .calc-orb-2 {
            width: 400px;
            height: 400px;
            background: rgba(168, 85, 247, 0.25);
            top: 20%;
            right: -100px;
            animation-delay: -5s;
        }

        .calc-orb-3 {
            width: 350px;
            height: 250px;
            background: rgba(236, 72, 153, 0.2);
            bottom: -50px;
            left: 25%;
            animation-delay: -10s;
        }

        .calc-orb-4 {
            width: 300px;
            height: 300px;
            background: rgba(99, 102, 241, 0.2);
            bottom: 30%;
            right: 30%;
            animation-delay: -15s;
        }

        @keyframes calcOrbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.05); }
            50% { transform: translate(-20px, 20px) scale(0.95); }
            75% { transform: translate(10px, 10px) scale(1.02); }
        }

        .calculator-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .calculator-left h2 {
            font-size: 42px;
            font-weight: 800;
            color: white;
            letter-spacing: -2px;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .calculator-left > p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .earning-examples {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .earning-example {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .earning-example:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(4px);
        }

        .earning-frequency {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            min-width: 100px;
        }

        .earning-amount {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .earning-note {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
            margin-left: auto;
        }

        .payout-disclaimer {
            margin-top: 20px;
            padding: 12px 16px;
            background: rgba(251, 191, 36, 0.08);
            border: 1px solid rgba(251, 191, 36, 0.15);
            border-radius: 10px;
            font-size: 12px;
            color: rgba(251, 191, 36, 0.9);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .payout-disclaimer svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .calculator-right {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 40px;
            position: relative;
        }

        .calculator-right::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 1px;
            background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.03) 50%, rgba(139,92,246,0.15) 100%);
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

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

        .calculator-header h3 {
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
        }

        .calculator-header p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        .calculator-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 16px;
        }

        .calculator-slider {
            width: 100%;
            height: 8px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.1);
            outline: none;
            -webkit-appearance: none;
            margin-bottom: 24px;
        }

        .calculator-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.6), 0 0 0 4px rgba(139, 92, 246, 0.2);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .calculator-slider::-webkit-slider-thumb:hover {
            transform: scale(1.15);
            box-shadow: 0 6px 24px rgba(139, 92, 246, 0.7), 0 0 0 6px rgba(139, 92, 246, 0.25);
        }

        .calculator-value {
            text-align: center;
            margin-bottom: 32px;
        }

        .calculator-value-number {
            font-size: 56px;
            font-weight: 800;
            color: white;
            line-height: 1;
        }

        .calculator-value-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 4px;
        }

        .calculator-result {
            text-align: center;
            padding: 24px;
            background: rgba(16, 185, 129, 0.08);
            border: 1px solid rgba(16, 185, 129, 0.15);
            border-radius: 16px;
        }

        .calculator-result-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 8px;
        }

        .calculator-result-value {
            font-size: 64px;
            font-weight: 800;
            background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .calculator-result-period {
            font-size: 13px;
            color: rgba(16, 185, 129, 0.8);
            margin-top: 8px;
        }

        .calculator-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .calc-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
        }

        .calc-feature svg {
            width: 16px;
            height: 16px;
            stroke: #10b981;
            flex-shrink: 0;
        }
        }

        /* ==================== TESTIMONIALS ==================== */
        /* ==================== TESTIMONIALS 3D CAROUSEL ==================== */
        .testimonials-section {
            position: relative;
            padding: 100px 0 120px;
            overflow: hidden;
            background: linear-gradient(180deg, #ffffff 0%, #faf9ff 100%);
        }

        /* Grid pattern background */
        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(rgba(200, 180, 255, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(200, 180, 255, 0.08) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }

        /* Header area with floating avatars */
        .testimonials-header {
            position: relative;
            text-align: center;
            padding: 0 60px;
            margin-bottom: 60px;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* Floating Avatar Bubbles Container */
        .floating-avatars {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-avatar {
            position: absolute;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.12),
                0 2px 8px rgba(0, 0, 0, 0.08);
            border: 3px solid white;
            opacity: 0;
            transform: translateY(30px) scale(0.8);
            will-change: transform, opacity;
        }

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

        /* Pop animation */
        .floating-avatar.visible {
            animation: avatarPopUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        @keyframes avatarPopUp {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.8);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Avatar 1 - Large, far left top */
        .floating-avatar:nth-child(1) {
            width: 72px;
            height: 72px;
            left: 5%;
            top: 20%;
            border-width: 4px;
        }
        .floating-avatar:nth-child(1).visible { animation-delay: 0.1s; }

        /* Avatar 2 - Medium, left middle */
        .floating-avatar:nth-child(2) {
            width: 56px;
            height: 56px;
            left: 12%;
            top: 55%;
        }
        .floating-avatar:nth-child(2).visible { animation-delay: 0.2s; }

        /* Avatar 3 - Medium-small, left upper */
        .floating-avatar:nth-child(3) {
            width: 48px;
            height: 48px;
            left: 20%;
            top: 25%;
        }
        .floating-avatar:nth-child(3).visible { animation-delay: 0.3s; }

        /* Avatar 4 - Small, inner left (hidden - was covering text) */
        .floating-avatar:nth-child(4) {
            display: none;
        }

        /* Avatar 5 - Hidden (was covering text) */
        .floating-avatar:nth-child(5) {
            display: none;
        }

        /* Avatar 6 - Hidden (was covering text) */
        .floating-avatar:nth-child(6) {
            display: none;
        }

        /* Avatar 7 - Medium-small, right upper */
        .floating-avatar:nth-child(7) {
            width: 48px;
            height: 48px;
            right: 20%;
            top: 25%;
        }
        .floating-avatar:nth-child(7).visible { animation-delay: 0.3s; }

        /* Avatar 8 - Medium, right middle */
        .floating-avatar:nth-child(8) {
            width: 56px;
            height: 56px;
            right: 12%;
            top: 55%;
        }
        .floating-avatar:nth-child(8).visible { animation-delay: 0.2s; }

        /* Avatar 9 - Large, far right top */
        .floating-avatar:nth-child(9) {
            width: 72px;
            height: 72px;
            right: 5%;
            top: 20%;
            border-width: 4px;
        }
        .floating-avatar:nth-child(9).visible { animation-delay: 0.1s; }

        /* Quote icon */
        .quote-icon {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 72px;
            color: var(--lavender);
            opacity: 0.4;
            font-family: Georgia, serif;
            line-height: 1;
            z-index: 0;
        }

        .testimonials-header .section-label {
            position: relative;
            z-index: 2;
        }

        .testimonials-header .section-title {
            position: relative;
            z-index: 2;
            padding: 0 60px;
        }

        .testimonials-header .section-subtitle {
            position: relative;
            z-index: 2;
            max-width: 500px;
            padding: 0 60px;
        }

        /* Arrow Carousel */
        .testimonial-carousel {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 0 80px;
        }

        .carousel-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 420px;
            perspective: 1000px;
        }

        .carousel-track {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            position: relative;
            width: 100%;
        }

        /* Testimonial Cards */
        .testimonial-card {
            position: absolute;
            width: 320px;
            background: white;
            border-radius: 20px;
            padding: 32px 28px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(200, 180, 255, 0.12);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            pointer-events: none;
        }

        .testimonial-card.active {
            position: relative;
            opacity: 1;
            transform: scale(1.08) translateY(-8px);
            z-index: 10;
            pointer-events: auto;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.12),
                0 8px 24px rgba(129, 103, 234, 0.08);
        }

        .testimonial-card.prev,
        .testimonial-card.next {
            opacity: 0.7;
            pointer-events: auto;
            position: absolute;
        }

        .testimonial-card.prev {
            transform: translateX(-340px) scale(0.92);
            z-index: 5;
        }

        .testimonial-card.next {
            transform: translateX(340px) scale(0.92);
            z-index: 5;
        }

        .testimonial-card.far-prev,
        .testimonial-card.far-next {
            opacity: 0.35;
            pointer-events: none;
            position: absolute;
        }

        .testimonial-card.far-prev {
            transform: translateX(-620px) scale(0.8);
            z-index: 2;
        }

        .testimonial-card.far-next {
            transform: translateX(620px) scale(0.8);
            z-index: 2;
        }

        /* Card internal styles */
        .testimonial-card .card-author {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 16px;
        }

        .testimonial-card .card-avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 14px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            border: 3px solid white;
        }

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

        .testimonial-card .card-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .testimonial-card .card-name::before {
            content: '— ';
            color: var(--muted);
        }

        .testimonial-card .card-role {
            font-size: 13px;
            color: #f97316;
            font-weight: 600;
        }

        .testimonial-card .card-subrole {
            font-size: 12px;
            color: var(--muted);
            margin-top: 3px;
        }

        .testimonial-card .card-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 3px;
            margin: 16px 0;
        }

        .testimonial-card .card-rating svg {
            width: 16px;
            height: 16px;
            fill: #f59e0b;
        }

        .testimonial-card .card-rating span {
            font-size: 14px;
            font-weight: 700;
            color: var(--navy);
            margin-left: 8px;
        }

        .testimonial-card .card-quote {
            font-size: 14px;
            line-height: 1.7;
            color: var(--navy);
            text-align: center;
        }

        /* Navigation Arrows */
        .carousel-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .carousel-arrow {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            outline: none;
        }

        .carousel-arrow.prev-arrow {
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        }

        .carousel-arrow.prev-arrow:hover {
            background: #f8f7fc;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        }

        .carousel-arrow.prev-arrow svg {
            stroke: var(--navy);
            width: 20px;
            height: 20px;
        }

        .carousel-arrow.next-arrow {
            background: var(--navy);
            box-shadow: 0 4px 16px rgba(14, 14, 68, 0.3);
        }

        .carousel-arrow.next-arrow:hover {
            background: #12125a;
            box-shadow: 0 6px 24px rgba(14, 14, 68, 0.4);
            transform: scale(1.05);
        }

        .carousel-arrow.next-arrow svg {
            stroke: white;
            width: 20px;
            height: 20px;
        }

        /* Dot Indicators */
        .carousel-dots {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 0 24px;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(129, 103, 234, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            outline: none;
            padding: 0;
        }

        .carousel-dot:hover {
            background: rgba(129, 103, 234, 0.4);
        }

        .carousel-dot.active {
            width: 32px;
            border-radius: 4px;
            background: var(--violet);
        }

        /* ==================== FAQ ==================== */
        .faq-container {
            max-width: 800px;
            margin: 48px auto 0;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.7);
            border-radius: 16px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 
                0 2px 12px rgba(0, 0, 0, 0.02),
                inset 0 1px 1px rgba(255, 255, 255, 0.8);
        }

        .faq-item:hover {
            background: rgba(255, 255, 255, 0.7);
        }

        .faq-question {
            width: 100%;
            padding: 24px 28px;
            background: transparent;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-family: inherit;
        }

        .faq-question h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--navy);
            text-align: left;
        }

        .faq-icon {
            width: 32px;
            height: 32px;
            background: rgba(129, 103, 234, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-icon svg {
            width: 16px;
            height: 16px;
            stroke: var(--violet);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            background: var(--violet);
        }

        .faq-item.active .faq-icon svg {
            stroke: white;
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer p {
            padding: 0 28px 24px;
            font-size: 15px;
            color: var(--muted);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* ==================== FINAL CTA ==================== */
        .final-cta {
            background: 
                radial-gradient(ellipse 600px 400px at 15% 20%, rgba(124, 92, 252, 0.25) 0%, transparent 60%),
                radial-gradient(ellipse 500px 500px at 85% 15%, rgba(168, 85, 247, 0.2) 0%, transparent 55%),
                radial-gradient(ellipse 400px 300px at 75% 75%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 450px 350px at 25% 80%, rgba(99, 102, 241, 0.18) 0%, transparent 55%),
                radial-gradient(ellipse 300px 300px at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, #0d0a1a 0%, #1a1333 50%, #0f0c1f 100%);
            border-radius: 32px;
            padding: 80px 64px;
            margin: 120px 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Noise texture overlay for CTA */
        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.03;
            pointer-events: none;
            z-index: 1;
            border-radius: 32px;
        }

        /* Animated gradient orbs for CTA */
        .cta-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.4;
            animation: ctaOrbFloat 20s ease-in-out infinite;
            z-index: 0;
        }

        .cta-orb-1 {
            width: 400px;
            height: 300px;
            background: rgba(124, 92, 252, 0.3);
            top: -80px;
            left: -60px;
            animation-delay: 0s;
        }

        .cta-orb-2 {
            width: 350px;
            height: 350px;
            background: rgba(168, 85, 247, 0.25);
            top: -50px;
            right: -80px;
            animation-delay: -5s;
        }

        .cta-orb-3 {
            width: 300px;
            height: 200px;
            background: rgba(236, 72, 153, 0.2);
            bottom: -40px;
            left: 30%;
            animation-delay: -10s;
        }

        .cta-orb-4 {
            width: 250px;
            height: 250px;
            background: rgba(99, 102, 241, 0.2);
            bottom: -60px;
            right: 20%;
            animation-delay: -15s;
        }

        @keyframes ctaOrbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.05); }
            50% { transform: translate(-20px, 20px) scale(0.95); }
            75% { transform: translate(10px, 10px) scale(1.02); }
        }

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

        .final-cta h2 {
            font-size: 48px;
            font-weight: 800;
            color: white;
            letter-spacing: -2px;
            margin-bottom: 16px;
        }

        .final-cta p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
        }

        .btn-white {
            background: white;
            color: var(--violet);
            padding: 20px 40px;
            border-radius: 100px;
            font-weight: 700;
            font-size: 17px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
        }

        .final-cta-note {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-top: 32px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }

/* ==================== RESPONSIVE DESIGN ==================== */
/* Extracted from original HTML - Session 13 */

/* Desktop Small (1200px) */
@media (max-width: 1200px) {
    .hero {
        gap: 40px;
    }

    .hero-graphics {
        height: 550px;
    }

    .expert-card {
        width: 240px;
    }

    .payment-card {
        right: 0;
    }

    .steps-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .step-card {
        height: 280px;
    }

    .how-it-works {
        padding: 60px 48px;
    }
}

/* Tablet (992px) */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 140px 24px 60px;
        text-align: center;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-graphics {
        height: 500px;
        order: -1;
        margin-bottom: 20px;
    }

    .expert-card {
        width: 260px;
    }

    .payment-card {
        top: 10%;
        right: 10%;
    }

    .booking-card {
        bottom: 15%;
        left: 5%;
    }

    .rating-card {
        top: 20%;
        left: 10%;
    }

    .message-bubble {
        bottom: 25%;
        right: 5%;
    }

    .orbital-ring-3 {
        width: 420px;
        height: 420px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .section {
        padding: 80px 24px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .how-it-works-wrapper {
        padding: 0 24px;
    }

    .how-it-works {
        padding: 60px 32px;
    }

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

    .expert-explainer {
        padding: 80px 24px;
    }

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

    .expert-intro-visual {
        order: -1;
    }

    .proactive-cta {
        flex-direction: column;
        text-align: center;
        padding: 28px;
    }

    .proactive-cta-content {
        flex-direction: column;
    }

    .calculator-section {
        padding: 60px 32px;
        margin: 0 24px;
    }

    .calculator-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .final-cta {
        padding: 60px 32px;
        margin: 60px 24px;
    }

    .final-cta h2 {
        font-size: 32px;
    }
}

/* Mobile Large (768px) */
@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 40px;
    }

    .hero h1 {
        font-size: 32px;
        letter-spacing: -1.5px;
    }

    .hero-graphics {
        height: 400px;
    }

    .expert-card {
        width: 220px;
        padding: 16px;
    }

    .expert-avatar {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .expert-info h4 {
        font-size: 14px;
    }

    .expert-info p {
        font-size: 11px;
    }

    .expert-stat-value {
        font-size: 15px;
    }

    .expert-stat-label {
        font-size: 9px;
    }

    .payment-card, .booking-card, .rating-card, .message-bubble {
        display: none;
    }

    .profile-card {
        display: none;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
    }

    .floating-icon svg {
        width: 20px;
        height: 20px;
    }

    .orbital-ring-2, .orbital-ring-3 {
        display: none;
    }

    .orbital-ring-1 {
        width: 280px;
        height: 280px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px 28px;
        border-radius: 16px;
    }

    .hero-stat-value {
        font-size: 28px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .step-card {
        height: 280px;
    }

    .step-card-front,
    .step-card-back {
        padding: 28px 20px;
    }

    .step-icon-container {
        width: 56px;
        height: 56px;
    }

    .step-preview {
        font-size: 12px;
    }

    .how-it-works {
        padding: 48px 32px;
    }

    .expert-intro-card {
        padding: 28px;
    }

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

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Testimonial Carousel - Mobile */
    .testimonial-carousel {
        padding: 20px 0 60px;
    }

    .carousel-container {
        min-height: 380px;
    }

    .testimonial-card {
        width: 280px;
        padding: 28px 24px;
    }

    .testimonial-card.prev {
        transform: translateX(-200px) scale(0.85);
        opacity: 0.5;
    }

    .testimonial-card.next {
        transform: translateX(200px) scale(0.85);
        opacity: 0.5;
    }

    .testimonial-card.far-prev,
    .testimonial-card.far-next {
        display: none;
    }

    .carousel-arrow {
        width: 48px;
        height: 48px;
    }

    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }

    .testimonials-header {
        min-height: 240px;
        padding: 0 20px;
    }

    .testimonials-header .section-title,
    .testimonials-header .section-subtitle {
        padding: 0 30px;
    }

    .floating-avatar:nth-child(1),
    .floating-avatar:nth-child(9) {
        width: 56px;
        height: 56px;
    }

    .floating-avatar:nth-child(2),
    .floating-avatar:nth-child(8) {
        width: 44px;
        height: 44px;
    }

    .floating-avatar:nth-child(3),
    .floating-avatar:nth-child(7) {
        width: 36px;
        height: 36px;
    }
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
    .testimonial-card.prev,
    .testimonial-card.next {
        display: none;
    }

    .testimonial-card {
        width: 90%;
        max-width: 300px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .step-card {
        height: 260px;
    }

    .step-icon-container {
        width: 52px;
        height: 52px;
    }

    .step-icon-container svg {
        width: 24px;
        height: 24px;
    }

    .step-title {
        font-size: 15px;
    }

    .step-preview {
        font-size: 12px;
    }

    .how-it-works {
        padding: 40px 24px;
    }
}
