        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-purple: #5f259f;
            --secondary-purple: #6739b7;
            --dark-purple: #3d1664;
            --light-purple: #8b5cf6;
            --accent-purple: #a78bfa;
            --orange-accent: #fb923c;
            --success-green: #10b981;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f9fafb;
            --white: #ffffff;
        }
        
        body {
            /*font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;*/
            font-family: 'Hind', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            background: var(--white);
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===================================
           NAVIGATION BAR
        =================================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 20px rgba(95, 37, 159, 0.15);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 4px 12px rgba(95, 37, 159, 0.3);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .logo-text h2 {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-text p {
            font-size: 11px;
            color: var(--text-light);
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-purple);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-purple);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Language Toggle */
        .lang-toggle {
            display: flex;
            background: var(--bg-light);
            border-radius: 50px;
            padding: 4px;
            gap: 4px;
        }
        
        .lang-toggle button {
            background: transparent;
            border: none;
            color: var(--text-dark);
            padding: 8px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            font-size: 13px;
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
        }
        
        .lang-toggle button.active {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(95, 37, 159, 0.3);
        }

        .download-btn-nav {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            box-shadow: 0 4px 16px rgba(95, 37, 159, 0.3);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .download-btn-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(95, 37, 159, 0.4);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--primary-purple);
        }

        /* ===================================
           HERO HEADER SECTION
        =================================== */
        .lang-content {
            display: none;
        }
        
        .lang-content.active {
            display: block;
        }

        header.hero {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
            position: relative;
            overflow: hidden;
            padding: 140px 0 100px;
            margin-top: 80px;
        }

        /* Animated Background */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(167, 139, 250, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(103, 57, 183, 0.2) 0%, transparent 50%);
            animation: gradientShift 15s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

        .floating-element:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -150px;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: -100px;
            left: -100px;
            animation-delay: 5s;
        }

        .floating-element:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 50%;
            left: 10%;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-left {
            color: white;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: slideInLeft 0.8s ease;
        }

        .badge .dot {
            width: 8px;
            height: 8px;
            background: var(--success-green);
            border-radius: 50%;
            animation: blink 2s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-left h1 {
            font-size: 58px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            animation: slideInLeft 1s ease;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .hero-left h1 .highlight {
            background: linear-gradient(135deg, #fbbf24 0%, var(--orange-accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .hero-left .subtitle {
            font-size: 22px;
            line-height: 1.6;
            margin-bottom: 32px;
            opacity: 0.95;
            font-weight: 500;
            animation: slideInLeft 1.2s ease;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
            animation: slideInLeft 1.4s ease;
        }

        .stat-item {
            text-align: left;
        }

        .stat-item .number {
            font-size: 36px;
            font-weight: 900;
            display: block;
            background: linear-gradient(135deg, #fbbf24 0%, var(--orange-accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-item .label {
            font-size: 14px;
            opacity: 0.9;
            font-weight: 600;
            margin-top: 4px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: slideInLeft 1.6s ease;
        }

        .cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: white;
            color: var(--primary-purple);
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .cta-primary:hover::before {
            left: 100%;
        }

        .cta-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
        }

        .cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: white;
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .cta-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-4px);
        }

        .trust-badges {
            display: flex;
            align-items: center;
            gap: 24px;
            margin-top: 32px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            animation: slideInLeft 1.8s ease;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
        }

        .trust-badge .icon {
            font-size: 20px;
        }

        /* Hero Right - Phone Mockup */
        .hero-right {
            position: relative;
            animation: slideInRight 1s ease;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .phone-mockup {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
            animation: floatPhone 6s ease-in-out infinite;
        }

        @keyframes floatPhone {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .phone-frame {
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            border-radius: 40px;
            padding: 12px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 0 12px rgba(255, 255, 255, 0.1),
                0 0 0 24px rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .phone-screen {
            background: white;
            border-radius: 32px;
            overflow: hidden;
            position: relative;
            aspect-ratio: 9/19.5;
        }

        .phone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 28px;
            background: #000;
            border-radius: 0 0 20px 20px;
            z-index: 10;
        }

        .screen-content {
            padding: 40px 20px 20px;
            height: 100%;
            background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .screen-content .app-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            box-shadow: 0 8px 24px rgba(95, 37, 159, 0.3);
        }

        .screen-content h3 {
            font-size: 24px;
            color: var(--text-dark);
            font-weight: 800;
        }

        .screen-content p {
            font-size: 14px;
            color: var(--text-light);
            text-align: center;
            line-height: 1.6;
        }

        .screen-features {
            display: grid;
            gap: 12px;
            width: 100%;
        }

        .screen-feature-item {
            background: white;
            padding: 16px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .screen-feature-item .icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .screen-feature-item .text {
            flex: 1;
        }

        .screen-feature-item .text h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

        .screen-feature-item .text p {
            font-size: 11px;
            color: var(--text-light);
            text-align: left;
        }

        /* Floating Action Elements */
        .floating-action {
            position: absolute;
            background: white;
            padding: 12px 20px;
            border-radius: 50px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 14px;
            animation: float 3s ease-in-out infinite;
        }

        .floating-action:nth-child(1) {
            top: 10%;
            right: -50px;
            animation-delay: 0s;
        }

        .floating-action:nth-child(2) {
            bottom: 20%;
            left: -80px;
            animation-delay: 1.5s;
        }

        .floating-action .icon {
            font-size: 24px;
        }

        /* ===================================
           ALERT BANNER
        =================================== */
        .alert-banner {
            background: linear-gradient(135deg, #fbbf24 0%, var(--orange-accent) 100%);
            color: var(--text-dark);
            padding: 16px 24px;
            text-align: center;
            font-weight: 700;
            font-size: 15px;
            position: relative;
            overflow: hidden;
        }

        .alert-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* ===================================
           FEATURES SECTION
        =================================== */
        .features {
            padding: 100px 0;
            background: var(--bg-light);
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        
        .section-title {
            font-size: 48px;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }
        
        .section-subtitle {
            font-size: 20px;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 60px;
        }
        
        .feature-card {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(95, 37, 159, 0.15);
        }
        
        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 24px;
            box-shadow: 0 8px 24px rgba(95, 37, 159, 0.2);
            transition: transform 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .feature-card h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text-dark);
        }
        
        .feature-card p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.7;
        }

        /* ===================================
           FOOTER
        =================================== */
        footer {
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple), var(--primary-purple));
            background-size: 200% 100%;
            animation: gradientMove 3s linear infinite;
        }

        @keyframes gradientMove {
            0% { background-position: 0% 0%; }
            100% { background-position: 200% 0%; }
        }

        .footer-top {
            padding: 80px 0 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 60px;
        }

        .footer-brand {
            max-width: 350px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .footer-logo-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 8px 24px rgba(95, 37, 159, 0.4);
        }

        .footer-logo-text h3 {
            font-size: 26px;
            font-weight: 900;
            margin-bottom: 4px;
        }

        .footer-logo-text p {
            font-size: 12px;
            opacity: 0.8;
            font-weight: 600;
        }

        .footer-brand p {
            font-size: 15px;
            line-height: 1.7;
            opacity: 0.8;
            margin-bottom: 24px;
        }

        .app-download-badges {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .store-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 12px 20px;
            border-radius: 12px;
            text-decoration: none;
            color: white;
            font-weight: 700;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .store-badge:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(8px);
        }

        .store-badge .icon {
            font-size: 32px;
        }

        .store-badge .text {
            text-align: left;
        }

        .store-badge .text small {
            font-size: 11px;
            opacity: 0.8;
            display: block;
            font-weight: 500;
        }

        .store-badge .text span {
            font-size: 16px;
            font-weight: 800;
            display: block;
        }

        .footer-section h4 {
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(135deg, #fbbf24 0%, var(--orange-accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(4px);
        }

        .footer-links a::before {
            content: '→';
            opacity: 0;
            transition: opacity 0.3s;
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            line-height: 1.6;
        }

        .contact-item .icon {
            font-size: 20px;
            margin-top: 2px;
            color: var(--orange-accent);
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .social-links a {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(95, 37, 159, 0.4);
        }

        .footer-bottom {
            padding: 32px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            font-size: 14px;
            opacity: 0.8;
        }

        .footer-bottom-links {
            display: flex;
            gap: 24px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        .made-in-india {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
        }

        /* ===================================
           RESPONSIVE DESIGN
        =================================== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-right {
                order: -1;
            }

            .phone-mockup {
                max-width: 300px;
            }

            .hero-left h1 {
                font-size: 42px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-left h1 {
                font-size: 36px;
            }

            .hero-left .subtitle {
                font-size: 18px;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 20px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .section-title {
                font-size: 32px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .floating-action {
                display: none;
            }
        }

        /* ===================================
           SCROLL ANIMATIONS
        =================================== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
    </style>
    <style>
    /* ===================================
       TESTIMONIALS SECTION
    =================================== */
    .testimonials {
        padding: 100px 0;
        background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
        position: relative;
        overflow: hidden;
    }

    .testimonials::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(95, 37, 159, 0.05) 0%, transparent 70%);
        border-radius: 50%;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-top: 60px;
        position: relative;
        z-index: 1;
    }

    .testimonial-card {
        background: white;
        padding: 32px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 120px;
        font-family: Georgia, serif;
        color: rgba(95, 37, 159, 0.05);
        line-height: 1;
        font-weight: bold;
    }

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(95, 37, 159, 0.12);
        border-color: rgba(95, 37, 159, 0.2);
    }

    .testimonial-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 800;
        color: white;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(95, 37, 159, 0.3);
        position: relative;
    }

    .testimonial-avatar.customer {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }

    .testimonial-avatar.merchant {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    }

    .verified-badge {
        position: absolute;
        bottom: -2px;
        right: -2px;
        width: 20px;
        height: 20px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .testimonial-info {
        flex: 1;
    }

    .testimonial-name {
        font-size: 18px;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 4px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .user-type-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: rgba(95, 37, 159, 0.1);
        padding: 4px 10px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 700;
        color: var(--primary-purple);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .user-type-badge.customer {
        background: rgba(16, 185, 129, 0.1);
        color: #059669;
    }

    .user-type-badge.merchant {
        background: rgba(245, 158, 11, 0.1);
        color: #d97706;
    }

    .testimonial-location {
        font-size: 14px;
        color: var(--text-light);
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .testimonial-rating {
        display: flex;
        gap: 4px;
        margin-bottom: 16px;
    }

    .star {
        color: #fbbf24;
        font-size: 18px;
    }

    .star.empty {
        color: #e5e7eb;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.8;
        color: var(--text-dark);
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .testimonial-highlight {
        background: linear-gradient(135deg, rgba(95, 37, 159, 0.1) 0%, rgba(103, 57, 183, 0.1) 100%);
        padding: 16px 20px;
        border-radius: 12px;
        border-left: 4px solid var(--primary-purple);
        margin-bottom: 20px;
    }

    .testimonial-highlight .stat {
        font-size: 24px;
        font-weight: 900;
        color: var(--primary-purple);
        display: block;
        margin-bottom: 4px;
    }

    .testimonial-highlight .stat-label {
        font-size: 13px;
        color: var(--text-light);
        font-weight: 600;
    }

    .testimonial-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .testimonial-date {
        font-size: 13px;
        color: var(--text-light);
        font-weight: 500;
    }

    .helpful-badge {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: var(--text-light);
        font-weight: 600;
    }

    /* Featured Testimonial (Large) */
    .testimonial-card.featured {
        grid-column: 1 / -1;
        background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
        color: white;
        padding: 48px;
    }

    .testimonial-card.featured .testimonial-text {
        color: white;
        font-size: 18px;
        margin-bottom: 24px;
    }

    .testimonial-card.featured .testimonial-name,
    .testimonial-card.featured .testimonial-location,
    .testimonial-card.featured .testimonial-date,
    .testimonial-card.featured .helpful-badge {
        color: white;
    }

    .testimonial-card.featured .testimonial-highlight {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-left-color: #fbbf24;
    }

    .testimonial-card.featured .testimonial-highlight .stat {
        color: #fbbf24;
    }

    .testimonial-card.featured .testimonial-highlight .stat-label {
        color: rgba(255, 255, 255, 0.9);
    }

    .testimonial-card.featured .testimonial-footer {
        border-top-color: rgba(255, 255, 255, 0.2);
    }

    /* Video Testimonial */
    .video-testimonial {
        position: relative;
        aspect-ratio: 16/9;
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .video-testimonial:hover {
        transform: scale(1.02);
    }

    .play-button {
        width: 70px;
        height: 70px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: var(--primary-purple);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    .video-testimonial:hover .play-button {
        transform: scale(1.1);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    }

    /* Stats Bar */
    .testimonial-stats-bar {
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        margin-top: 60px;
        text-align: center;
    }

    .stat-item-testimonial {
        padding: 20px;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .stat-item-testimonial:hover {
        background: var(--bg-light);
        transform: translateY(-4px);
    }

    .stat-item-testimonial .icon {
        font-size: 40px;
        margin-bottom: 12px;
        display: block;
    }

    .stat-item-testimonial .number {
        font-size: 32px;
        font-weight: 900;
        color: var(--primary-purple);
        display: block;
        margin-bottom: 8px;
    }

    .stat-item-testimonial .label {
        font-size: 14px;
        color: var(--text-light);
        font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .testimonials-grid {
            grid-template-columns: 1fr;
        }

        .testimonial-card.featured {
            grid-column: 1;
        }

        .testimonial-stats-bar {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .testimonial-stats-bar {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .testimonial-card {
            padding: 24px;
        }

        .testimonial-card.featured {
            padding: 32px 24px;
        }
    }
    
    .social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(95, 37, 159, 0.4);
}

/* Individual Brand Colors on Hover */
.social-links a:nth-child(1):hover {
    background: #1877f2; /* Facebook Blue */
}

.social-links a:nth-child(2):hover {
    background: #1da1f2; /* Twitter Blue */
}

.social-links a:nth-child(3):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* Instagram Gradient */
}

.social-links a:nth-child(4):hover {
    background: #0077b5; /* LinkedIn Blue */
}

.social-links a:nth-child(5):hover {
    background: #ff0000; /* YouTube Red */
}



/* ===================================
   HOW IT WORKS SECTION
=================================== */
.how-it-works {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(95, 37, 159, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(103, 57, 183, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* User Type Toggle */
.user-type-toggle {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 60px;
}

.toggle-container {
    background: var(--bg-light);
    padding: 6px;
    border-radius: 60px;
    display: inline-flex;
    gap: 8px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.06);
}

.toggle-btn {
    padding: 14px 40px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(95, 37, 159, 0.3);
}

.toggle-btn .icon {
    font-size: 20px;
}

/* Process Container */
.process-content {
    display: none;
    position: relative;
    z-index: 1;
}

.process-content.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-bottom: 60px;
}

/* Connecting Line */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-purple) 0%, 
        var(--secondary-purple) 25%,
        var(--primary-purple) 50%,
        var(--secondary-purple) 75%,
        var(--primary-purple) 100%
    );
    background-size: 200% 100%;
    animation: flowLine 3s linear infinite;
    z-index: -1;
}

@keyframes flowLine {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Step Card */
.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(95, 37, 159, 0.15);
    border-color: var(--primary-purple);
}

/* Step Number */
.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    box-shadow: 0 8px 24px rgba(95, 37, 159, 0.3);
    transition: all 0.4s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(360deg);
}

.step-number .number {
    font-size: 32px;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 2;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed var(--primary-purple);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Step Icon */
.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(95, 37, 159, 0.1) 0%, rgba(103, 57, 183, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
}

/* Step Content */
.step-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Step Badge */
.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(95, 37, 159, 0.1);
    color: var(--primary-purple);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Visual Flow Section */
.visual-flow {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    padding: 60px;
    border-radius: 30px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.visual-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%235f259f" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.flow-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.flow-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.flow-icon-box {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.flow-item:hover .flow-icon-box {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(95, 37, 159, 0.2);
}

.flow-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.flow-arrow {
    font-size: 32px;
    color: var(--primary-purple);
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.benefit-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary-purple);
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(95, 37, 159, 0.15);
}

.benefit-box .icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.benefit-box h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.benefit-box p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.how-it-works-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.how-it-works-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.how-it-works-cta h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.how-it-works-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-buttons-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-diagram {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .toggle-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .visual-flow {
        padding: 30px 20px;
    }

    .how-it-works-cta {
        padding: 40px 20px;
    }

    .how-it-works-cta h3 {
        font-size: 28px;
    }
}


/* ===================================
   FAQ SECTION
=================================== */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(95, 37, 159, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(103, 57, 183, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* FAQ Container */
.faq-container {
    position: relative;
    z-index: 1;
}

/* Category Tabs */
.faq-categories {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 14px 32px;
    background: white;
    border: 2px solid rgba(95, 37, 159, 0.2);
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-tab:hover {
    border-color: var(--primary-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(95, 37, 159, 0.15);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(95, 37, 159, 0.3);
}

.category-tab .icon {
    font-size: 20px;
}

/* Search Box */
.faq-search {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 18px 24px 18px 56px;
    border: 2px solid rgba(95, 37, 159, 0.2);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: white;
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 4px 20px rgba(95, 37, 159, 0.15);
}

.faq-search .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--text-light);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* FAQ Category Content */
.faq-category-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.faq-category-content.active {
    display: block;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(95, 37, 159, 0.12);
    border-color: rgba(95, 37, 159, 0.1);
}

.faq-item.active {
    border-color: var(--primary-purple);
    box-shadow: 0 8px 24px rgba(95, 37, 159, 0.15);
}

/* FAQ Question */
.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-item:hover .faq-question {
    background: rgba(95, 37, 159, 0.02);
}

.faq-item.active .faq-question {
    background: rgba(95, 37, 159, 0.05);
}

.faq-question-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(95, 37, 159, 0.1) 0%, rgba(103, 57, 183, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question-icon {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    transform: scale(1.1);
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    transform: rotate(180deg);
}

.faq-toggle-icon {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    color: white;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 28px 28px 28px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

.faq-answer-content p {
    margin-bottom: 12px;
}

.faq-answer-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.faq-answer-content li {
    margin-bottom: 8px;
}

.faq-answer-content strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Helpful Section */
.faq-helpful {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-helpful span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.helpful-btn {
    padding: 6px 16px;
    border: 1px solid rgba(95, 37, 159, 0.2);
    background: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.helpful-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary-purple);
}

.helpful-btn.active {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    border-color: transparent;
}

/* Stats Bar */
.faq-stats {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    text-align: center;
}

.faq-stat-item {
    padding: 20px;
}

.faq-stat-item .icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.faq-stat-item .number {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 8px;
}

.faq-stat-item .label {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

/* Still Have Questions CTA */
.faq-cta {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    color: white;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.faq-cta-content {
    position: relative;
    z-index: 1;
}

.faq-cta h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.faq-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta-btn {
    padding: 16px 32px;
    background: white;
    color: var(--primary-purple);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.faq-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.faq-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-categories {
        gap: 12px;
    }

    .category-tab {
        padding: 12px 20px;
        font-size: 14px;
    }

    .faq-search input {
        padding: 16px 20px 16px 48px;
        font-size: 15px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer-content {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }

    .faq-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 20px;
    }

    .faq-cta {
        padding: 40px 24px;
    }

    .faq-cta h3 {
        font-size: 24px;
    }

    .faq-cta p {
        font-size: 16px;
    }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results .icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.no-results h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.no-results p {
    font-size: 16px;
    color: var(--text-light);
}