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

        :root {
            --primary: #6C5CE7;
            --primary-dark: #5A4BD1;
            --secondary: #00CEC9;
            --accent: #FD79A8;
            --dark: #0A0A1A;
            --dark-2: #12122A;
            --dark-3: #1A1A3E;
            --text: #E0E0FF;
            --text-muted: #8888AA;
            --gradient-1: linear-gradient(135deg, #6C5CE7, #00CEC9);
            --gradient-2: linear-gradient(135deg, #FD79A8, #6C5CE7);
            --gradient-3: linear-gradient(135deg, #00CEC9, #6C5CE7, #FD79A8);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark);
            color: var(--text);
            overflow-x: hidden;
        }

        /* ===== ANIMATED BACKGROUND ===== */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: floatOrb 20s infinite ease-in-out;
        }

        .bg-orb:nth-child(1) {
            width: 600px;
            height: 600px;
            background: var(--primary);
            top: -200px;
            right: -200px;
            animation-delay: 0s;
        }

        .bg-orb:nth-child(2) {
            width: 400px;
            height: 400px;
            background: var(--secondary);
            bottom: -100px;
            left: -100px;
            animation-delay: -7s;
        }

        .bg-orb:nth-child(3) {
            width: 500px;
            height: 500px;
            background: var(--accent);
            top: 50%;
            left: 50%;
            animation-delay: -14s;
        }

        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(100px, -50px) scale(1.1); }
            50% { transform: translate(-50px, 100px) scale(0.9); }
            75% { transform: translate(50px, 50px) scale(1.05); }
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(10, 10, 26, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(108, 92, 231, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 12px 60px;
            background: rgba(10, 10, 26, 0.95);
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .nav-logo-icon {
            width: 44px;
            height: 44px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            font-weight: 800;
        }

        .nav-logo-text {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: white;
        }

        .nav-logo-text span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

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

        .nav-links a:hover {
            color: white;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s;
        }

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

        .nav-buttons {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .btn-ghost {
            padding: 10px 24px;
            border: 1px solid rgba(108, 92, 231, 0.3);
            border-radius: 10px;
            background: transparent;
            color: var(--text);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-ghost:hover {
            border-color: var(--primary);
            background: rgba(108, 92, 231, 0.1);
        }

        .btn-primary {
            padding: 10px 24px;
            border: none;
            border-radius: 10px;
            background: var(--gradient-1);
            color: white;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::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;
        }

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

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 60px 100px;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(108, 92, 231, 0.15);
            border: 1px solid rgba(108, 92, 231, 0.3);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease;
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: var(--secondary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

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

        .hero h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease 0.1s both;
        }

        .hero h1 .gradient-text {
            background: var(--gradient-3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        .hero-desc {
            font-size: 18px;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 40px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 20px;
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        .btn-hero {
            padding: 16px 36px;
            border: none;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-hero-primary {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 8px 40px rgba(108, 92, 231, 0.3);
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 50px rgba(108, 92, 231, 0.5);
        }

        .btn-hero-secondary {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text);
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 60px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

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

        .hero-stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 36px;
            font-weight: 700;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        /* Hero Visual */
        .hero-visual {
            position: relative;
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        .hero-mockup {
            position: relative;
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(108, 92, 231, 0.2);
        }

        .mockup-header {
            background: var(--dark-2);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .mockup-dots span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .mockup-dots span:nth-child(1) { background: #FF5F57; }
        .mockup-dots span:nth-child(2) { background: #FFBD2E; }
        .mockup-dots span:nth-child(3) { background: #28CA41; }

        .mockup-url {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 12px;
            color: var(--text-muted);
        }

        .mockup-body {
            background: var(--dark-3);
            padding: 30px;
            min-height: 380px;
            display: flex;
            gap: 20px;
        }

        .mockup-before-after {
            flex: 1;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background: linear-gradient(135deg, #2D2D5E, #1A1A3E);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .mockup-before-after .label {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .mockup-before-after.before .label {
            background: rgba(255, 87, 87, 0.2);
            color: #FF5757;
        }

        .mockup-before-after.after .label {
            background: rgba(0, 206, 201, 0.2);
            color: #00CEC9;
        }

        .mockup-house {
            width: 80%;
            height: 120px;
            position: relative;
        }

        .house-base {
            width: 100%;
            height: 80px;
            background: linear-gradient(135deg, #4A4A8A, #3A3A6A);
            border-radius: 4px;
            position: absolute;
            bottom: 0;
        }

        .house-roof {
            width: 0;
            height: 0;
            border-left: 60% solid transparent;
            border-right: 60% solid transparent;
            border-bottom: 50px solid #5A5A9A;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .house-window {
            width: 25px;
            height: 30px;
            background: rgba(255, 200, 50, 0.3);
            border-radius: 3px;
            position: absolute;
        }

        .after .house-base {
            background: linear-gradient(135deg, #6C5CE7, #5A4BD1);
        }

        .after .house-roof {
            border-bottom-color: #7C6CF7;
        }

        .after .house-window {
            background: rgba(255, 220, 80, 0.8);
            box-shadow: 0 0 15px rgba(255, 220, 80, 0.4);
        }

        .mockup-toolbar {
            width: 60px;
            background: var(--dark-2);
            border-radius: 12px;
            padding: 16px 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        .tool-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(108, 92, 231, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .tool-icon:hover, .tool-icon.active {
            background: var(--gradient-1);
            color: white;
        }

        .hero-float-card {
            position: absolute;
            background: rgba(18, 18, 42, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(108, 92, 231, 0.2);
            border-radius: 16px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 6s ease-in-out infinite;
        }

        .hero-float-card.card-1 {
            top: -20px;
            right: -30px;
            animation-delay: 0s;
        }

        .hero-float-card.card-2 {
            bottom: 30px;
            left: -40px;
            animation-delay: -3s;
        }

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

        .float-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .float-icon.green {
            background: rgba(0, 206, 201, 0.15);
            color: var(--secondary);
        }

        .float-icon.purple {
            background: rgba(108, 92, 231, 0.15);
            color: var(--primary);
        }

        .float-text-main {
            font-size: 14px;
            font-weight: 600;
            color: white;
        }

        .float-text-sub {
            font-size: 12px;
            color: var(--text-muted);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== FEATURES ===== */
        .section {
            position: relative;
            z-index: 1;
            padding: 120px 60px;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(108, 92, 231, 0.1);
            border: 1px solid rgba(108, 92, 231, 0.2);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .section-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 18px;
            color: var(--text-muted);
            line-height: 1.6;
        }

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

        .feature-card {
            background: rgba(18, 18, 42, 0.6);
            border: 1px solid rgba(108, 92, 231, 0.1);
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(108, 92, 231, 0.3);
            box-shadow: 0 20px 60px rgba(108, 92, 231, 0.15);
        }

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

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 24px;
        }

        .feature-icon.purple {
            background: rgba(108, 92, 231, 0.15);
            color: var(--primary);
        }

        .feature-icon.teal {
            background: rgba(0, 206, 201, 0.15);
            color: var(--secondary);
        }

        .feature-icon.pink {
            background: rgba(253, 121, 168, 0.15);
            color: var(--accent);
        }

        .feature-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ===== BEFORE AFTER ===== */
        .before-after-section {
            background: var(--dark-2);
        }

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

        .ba-demo {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(108, 92, 231, 0.2);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
        }

        .ba-slider-container {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
            cursor: col-resize;
        }

        .ba-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .ba-before {
            background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ba-after {
            background: linear-gradient(135deg, #0a0a3e, #1a1a6e);
            clip-path: inset(0 0 0 50%);
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ba-house-illustration {
            width: 300px;
            height: 250px;
            position: relative;
        }

        /* Before house - dull */
        .ba-before .ba-house-body {
            width: 220px;
            height: 140px;
            background: #3a3a5a;
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 4px;
        }

        .ba-before .ba-house-roof {
            width: 0;
            height: 0;
            border-left: 140px solid transparent;
            border-right: 140px solid transparent;
            border-bottom: 80px solid #4a4a6a;
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .ba-before .ba-house-door {
            width: 40px;
            height: 60px;
            background: #2a2a4a;
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 4px 4px 0 0;
        }

        .ba-before .ba-house-window-1,
        .ba-before .ba-house-window-2 {
            width: 35px;
            height: 35px;
            background: rgba(255, 200, 100, 0.15);
            border-radius: 4px;
            position: absolute;
            bottom: 70px;
        }
        .ba-before .ba-house-window-1 { left: calc(50% - 80px); }
        .ba-before .ba-house-window-2 { left: calc(50% + 45px); }

        /* After house - vibrant */
        .ba-after .ba-house-body {
            width: 220px;
            height: 140px;
            background: linear-gradient(135deg, #5a4bd1, #6C5CE7);
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 4px;
            box-shadow: 0 10px 40px rgba(108, 92, 231, 0.3);
        }

        .ba-after .ba-house-roof {
            width: 0;
            height: 0;
            border-left: 140px solid transparent;
            border-right: 140px solid transparent;
            border-bottom: 80px solid #7C6CF7;
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .ba-after .ba-house-door {
            width: 40px;
            height: 60px;
            background: #4a3bc1;
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 4px 4px 0 0;
            box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
        }

        .ba-after .ba-house-window-1,
        .ba-after .ba-house-window-2 {
            width: 35px;
            height: 35px;
            background: rgba(255, 220, 80, 0.9);
            border-radius: 4px;
            position: absolute;
            bottom: 70px;
            box-shadow: 0 0 20px rgba(255, 220, 80, 0.5);
        }
        .ba-after .ba-house-window-1 { left: calc(50% - 80px); }
        .ba-after .ba-house-window-2 { left: calc(50% + 45px); }

        .ba-slider-line {
            position: absolute;
            top: 0;
            left: 50%;
            width: 3px;
            height: 100%;
            background: white;
            z-index: 10;
            pointer-events: none;
        }

        .ba-slider-handle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            z-index: 11;
            cursor: col-resize;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .ba-slider-handle i {
            color: var(--dark);
            font-size: 18px;
        }

        .ba-label {
            position: absolute;
            top: 20px;
            padding: 8px 20px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 5;
        }

        .ba-label.before-label {
            left: 20px;
            background: rgba(255, 87, 87, 0.2);
            color: #FF5757;
            backdrop-filter: blur(10px);
        }

        .ba-label.after-label {
            right: 20px;
            background: rgba(0, 206, 201, 0.2);
            color: #00CEC9;
            backdrop-filter: blur(10px);
        }

        /* ===== HOW IT WORKS ===== */
        .steps-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .steps-line {
            position: absolute;
            top: 60px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            opacity: 0.3;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            position: relative;
        }

        .step-card {
            text-align: center;
            padding: 20px;
        }

        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(108, 92, 231, 0.1);
            border: 2px solid rgba(108, 92, 231, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            margin: 0 auto 24px;
            transition: all 0.3s;
        }

        .step-card:hover .step-number {
            background: var(--gradient-1);
            color: white;
            border-color: transparent;
            transform: scale(1.1);
        }

        .step-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .step-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ===== PRICING ===== */
        .pricing-section {
            background: var(--dark-2);
        }

        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 60px;
        }

        .pricing-toggle span {
            font-size: 15px;
            color: var(--text-muted);
            transition: color 0.3s;
        }

        .pricing-toggle span.active {
            color: white;
            font-weight: 600;
        }

        .toggle-switch {
            width: 56px;
            height: 30px;
            background: rgba(108, 92, 231, 0.3);
            border-radius: 15px;
            position: relative;
            cursor: pointer;
            transition: background 0.3s;
        }

        .toggle-switch.yearly {
            background: var(--primary);
        }

        .toggle-knob {
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: 3px;
            left: 3px;
            transition: transform 0.3s;
        }

        .toggle-switch.yearly .toggle-knob {
            transform: translateX(26px);
        }

        .save-badge {
            background: rgba(0, 206, 201, 0.15);
            color: var(--secondary);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .pricing-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: start;
        }

        .pricing-card {
            background: rgba(18, 18, 42, 0.6);
            border: 1px solid rgba(108, 92, 231, 0.1);
            border-radius: 24px;
            padding: 40px;
            transition: all 0.4s;
            position: relative;
        }

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

        .pricing-card.featured {
            background: rgba(108, 92, 231, 0.1);
            border-color: rgba(108, 92, 231, 0.4);
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .popular-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            padding: 6px 24px;
            background: var(--gradient-1);
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-plan-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .pricing-plan-desc {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .pricing-amount {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 8px;
        }

        .pricing-currency {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-muted);
        }

        .pricing-price {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 56px;
            font-weight: 800;
        }

        .pricing-period {
            font-size: 16px;
            color: var(--text-muted);
        }

        .pricing-yearly-note {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 32px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            font-size: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .pricing-features li i {
            font-size: 14px;
        }

        .pricing-features li i.fa-check {
            color: var(--secondary);
        }

        .pricing-features li i.fa-xmark {
            color: #555;
        }

        .pricing-features li.disabled {
            color: var(--text-muted);
            opacity: 0.5;
        }

        .btn-pricing {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-pricing.outline {
            background: transparent;
            border: 1px solid rgba(108, 92, 231, 0.3);
            color: var(--text);
        }

        .btn-pricing.outline:hover {
            border-color: var(--primary);
            background: rgba(108, 92, 231, 0.1);
        }

        .btn-pricing.filled {
            background: var(--gradient-1);
            color: white;
            box-shadow: 0 8px 30px rgba(108, 92, 231, 0.3);
        }

        .btn-pricing.filled:hover {
            box-shadow: 0 12px 40px rgba(108, 92, 231, 0.5);
            transform: translateY(-2px);
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: rgba(18, 18, 42, 0.6);
            border: 1px solid rgba(108, 92, 231, 0.1);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            border-color: rgba(108, 92, 231, 0.3);
            transform: translateY(-4px);
        }

        .testimonial-stars {
            color: #FFD700;
            font-size: 14px;
            margin-bottom: 16px;
            display: flex;
            gap: 4px;
        }

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

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 15px;
        }

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

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

        .faq-item {
            background: rgba(18, 18, 42, 0.6);
            border: 1px solid rgba(108, 92, 231, 0.1);
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item:hover {
            border-color: rgba(108, 92, 231, 0.3);
        }

        .faq-question {
            padding: 24px 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: color 0.3s;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question i {
            transition: transform 0.3s;
            color: var(--primary);
        }

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

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

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

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

        /* ===== CTA ===== */
        .cta-section {
            position: relative;
            z-index: 1;
            padding: 120px 60px;
        }

        .cta-box {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 206, 201, 0.1));
            border: 1px solid rgba(108, 92, 231, 0.2);
            border-radius: 32px;
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: var(--primary);
            opacity: 0.08;
            border-radius: 50%;
            filter: blur(80px);
        }

        .cta-box h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 44px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .cta-box p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

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

        /* ===== FOOTER ===== */
        .footer {
            position: relative;
            z-index: 1;
            background: var(--dark-2);
            border-top: 1px solid rgba(108, 92, 231, 0.1);
            padding: 80px 60px 40px;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.7;
            margin-top: 16px;
            margin-bottom: 24px;
        }

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

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(108, 92, 231, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: var(--gradient-1);
            color: white;
        }

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

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ===== AUTH MODAL ===== */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            z-index: 10000;
            display: none !important;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.active { display: flex !important; }

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

        .modal {
            background: var(--dark-2);
            border: 1px solid rgba(108, 92, 231, 0.2);
            border-radius: 24px;
            padding: 48px;
            width: 440px;
            max-width: 90vw;
            position: relative;
            animation: slideUp 0.4s ease;
        }

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

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 36px;
            height: 36px;
            border-radius: 10px;
            border: none;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-muted);
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .modal h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .modal .subtitle {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 32px;
        }

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

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text);
        }

        .form-group input {
            width: 100%;
            padding: 14px 16px;
            border-radius: 12px;
            border: 1px solid rgba(108, 92, 231, 0.2);
            background: rgba(255, 255, 255, 0.03);
            color: var(--text);
            font-size: 15px;
            outline: none;
            transition: all 0.3s;
        }

        .form-group input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
        }

        .form-group input::placeholder {
            color: var(--text-muted);
        }

        .form-options {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
            font-size: 14px;
        }

        .form-options label {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            cursor: pointer;
        }

        .form-options a {
            color: var(--primary);
            text-decoration: none;
        }

        .btn-submit {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 14px;
            background: var(--gradient-1);
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 24px;
        }

        .btn-submit:hover {
            box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
            transform: translateY(-2px);
        }

        .divider {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            color: var(--text-muted);
            font-size: 13px;
        }

        .divider::before, .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.05);
        }

        .social-login {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
        }

        .btn-social {
            flex: 1;
            padding: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            background: transparent;
            color: var(--text);
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-social:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .modal-footer-text {
            text-align: center;
            font-size: 14px;
            color: var(--text-muted);
        }

        .modal-footer-text a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
        }

        /* ===== MOBILE MENU ===== */
        .mobile-menu-btn { display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        
        
        /* ===== DESKTOP HAMBURGER HIDER ===== */
        @media (min-width: 993px) {
            .mobile-menu-panel, .mobile-menu-backdrop { display: none !important; }
        }

        /* ===== RESPONSIVE ===== */
        
        /* Utility for mobile menu open state */
        body.menu-open {
            overflow: hidden;
        }

        @media (max-width: 1200px) {
            .hero-content { padding: 0 20px; }
            .hero h1 { font-size: 56px; }
            .navbar { padding: 12px 30px !important; }
        }

        @media (max-width: 992px) {
            .navbar {
                padding: 12px 20px !important;
            }
            .navbar .nav-links, .navbar .nav-buttons { display: none !important; }
            .mobile-menu-btn {
                display: block;
                z-index: 1001;
            }

            
            /* Mobile Menu Panel */
            .mobile-menu-backdrop {
                position: fixed;
                top: 0; left: 0; right: 0; bottom: 0;
                background: rgba(0, 0, 0, 0.7);
                backdrop-filter: blur(4px);
                z-index: 1000;
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.3s ease;
            }
            .mobile-menu-backdrop.active {
                opacity: 1;
                pointer-events: auto;
            }

            .mobile-menu-panel {
                position: fixed;
                top: 0; right: -280px;
                width: 280px;
                height: 100vh;
                background: #0a0a1a !important;
                z-index: 1001;
                opacity: 1 !important;
                box-shadow: -5px 0 25px rgba(0,0,0,0.5);
                transition: right 0.3s ease;
                display: flex;
                flex-direction: column;
            }
            .mobile-menu-panel.active {
                right: 0;
            }

            .mobile-menu-header {
                display: flex;
                justify-content: flex-end;
                padding: 20px;
            }
            
            .mobile-close-btn {
                background: transparent;
                border: none;
                color: white;
                font-size: 24px;
                cursor: pointer;
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                background: rgba(255,255,255,0.05);
            }

            .mobile-menu-content {
                padding: 0 20px 20px 20px;
                flex: 1;
                overflow-y: auto;
            }

            .mobile-menu-divider {
                height: 1px;
                background: rgba(255,255,255,0.1);
                margin: 20px 0;
            }

            .mobile-nav-links {
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
                flex-direction: column;
                gap: 5px;
            }

            .mobile-nav-links li a {
                color: var(--text);
                text-decoration: none;
                font-size: 18px;
                font-weight: 500;
                display: flex;
                align-items: center;
                min-height: 48px;
                padding: 0 10px;
                border-radius: 8px;
                transition: background 0.2s;
            }

            .mobile-nav-links li a:active {
                background: rgba(255,255,255,0.05);
            }


            /* Hero Section */
            .hero {
                padding-top: 100px;
                min-height: auto !important;
                padding-bottom: 60px;
            }
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            .hero-left {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .hero h1 {
                font-size: 48px;
            }
            .hero-desc {
                max-width: 100% !important;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-actions {
                justify-content: center;
                flex-wrap: wrap;
                gap: 15px;
            }
            .hero-stats {
                justify-content: center;
                flex-wrap: wrap;
            }
            .hero-visual {
                max-width: 100%;
                margin: 0 auto;
            }
            .hero-float-card {
                display: none; /* Hide floating cards on tablet/mobile to prevent overflow */
            }

            /* Sections & Grids */
            .section {
                padding: 60px 20px;
            }
            .features-grid, .pricing-grid, .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .steps-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .steps-line {
                display: none;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {

            .hero-visual {
                display: none !important;
            }
            .hero {
                padding-bottom: 40px !important;
            }

            .hero h1 {
                font-size: 36px !important;
            }
            .hero-actions {
                flex-direction: column;
                width: 100%;
            }
            .btn-hero {
                width: 100%;
                justify-content: center;
            }
            .hero-stat-number {
                font-size: 24px;
            }
            
            .features-grid, .pricing-grid, .testimonials-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            .pricing-card.featured:hover {
                transform: translateY(-8px);
            }

            .section-title {
                font-size: 28px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-links ul {
                align-items: center;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding-top: 90px;
            }
            .hero h1 {
                font-size: 32px !important;
            }
            .section-title {
                font-size: 24px;
            }
            .mockup-header {
                padding: 8px 12px;
            }
            .mockup-body {
                height: 300px;
            }
            .btn-ghost, .btn-primary {
                padding: 10px 16px;
                font-size: 14px;
            }
        }

        /* Google Prominent Button & Social Row */
        .btn-google-primary {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 13px 18px;
            background: #ffffff;
            color: #0f172a;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
            margin-bottom: 12px;
            font-family: inherit;
        }

        .btn-google-primary:hover {
            background: #f8fafc;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 15px rgba(66, 133, 244, 0.3);
        }

        .btn-google-primary:active {
            transform: translateY(0);
        }

        .social-alt-row {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
        }

        .social-alt-row .btn-social {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.03);
            color: #cbd5e1;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.25s ease;
            font-family: inherit;
        }

        .social-alt-row .btn-social:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.25);
            color: #fff;
        }
