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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
            color: #E8E8E8;
            line-height: 1.6;
            overflow-x: hidden;
            transition: background 0.3s ease, color 0.3s ease;
        }

        /* Light Mode Styles */
        body.light-mode {
            background: linear-gradient(135deg, #F5F5FF 0%, #E8E8FF 100%);
            color: #2A2A3E;
        }

        body.light-mode .hero::before {
            background: radial-gradient(circle, rgba(147, 112, 219, 0.1) 0%, transparent 70%);
        }

        body.light-mode .hero::after {
            background: radial-gradient(circle, rgba(100, 149, 237, 0.08) 0%, transparent 70%);
        }

        body.light-mode .subtitle,
        body.light-mode .section-subtitle,
        body.light-mode .feature-card p,
        body.light-mode .benefit-item p,
        body.light-mode .testimonial-text {
            color: #5A5A7E;
        }

        body.light-mode .features {
            background: rgba(255, 255, 255, 0.5);
        }

        body.light-mode .feature-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(147, 112, 219, 0.15);
        }

        body.light-mode .feature-card:hover {
            background: rgba(255, 255, 255, 0.95);
            border-color: rgba(147, 112, 219, 0.3);
            box-shadow: 0 10px 30px rgba(147, 112, 219, 0.15);
        }

        body.light-mode .why-choose {
            background: rgba(248, 248, 255, 0.6);
        }

        body.light-mode .safety {
            background: rgba(255, 255, 255, 0.5);
        }

        body.light-mode .safety-badge {
            background: rgba(147, 112, 219, 0.08);
            border: 2px solid rgba(147, 112, 219, 0.2);
        }

        body.light-mode .testimonials {
            background: rgba(248, 248, 255, 0.6);
        }

        body.light-mode .testimonial-card {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(147, 112, 219, 0.15);
        }

        body.light-mode .final-cta {
            background: linear-gradient(135deg, rgba(147, 112, 219, 0.15), rgba(100, 149, 237, 0.15));
        }

        body.light-mode footer {
            background: #E8E8FF;
            color: #5A5A7E;
        }

        body.light-mode .footer-links a {
            color: #7B5FCF;
        }

        body.light-mode .footer-links a:hover {
            color: #5A8EE6;
        }

        body.light-mode .trust-bar {
            background: rgba(255, 255, 255, 0.5);
            border-bottom: 1px solid rgba(147, 112, 219, 0.15);
            color: #7B5FCF;
        }

        body.light-mode .highlight {
            color: #5A8EE6;
        }

        body.light-mode .testimonial-age {
            color: #8A8AAE;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 2rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(147, 112, 219, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: -250px;
            right: -250px;
            animation: float 20s infinite ease-in-out;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(100, 149, 237, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -200px;
            left: -200px;
            animation: float 15s infinite ease-in-out reverse;
        }

        @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 {
            max-width: 1200px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .logo {
            margin-bottom: 1.5rem;
            display: flex;
            justify-content: center;
        }

        .hero-logo {
            height: 130px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 4px 24px rgba(147, 112, 219, 0.45));
            transition: filter 0.3s ease;
        }

        body.light-mode .hero-logo {
            filter: drop-shadow(0 4px 20px rgba(100, 80, 180, 0.2));
        }

        .footer-logo {
            height: 55px;
            width: auto;
            object-fit: contain;
            margin-bottom: 0.5rem;
        }

        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            line-height: 1.2;
        }

        .subtitle {
            font-size: 1.3rem;
            color: #B8B8D1;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background: linear-gradient(135deg, #9370DB, #6495ED);
            color: white;
            padding: 1.2rem 3rem;
            font-size: 1.2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(147, 112, 219, 0.3);
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(147, 112, 219, 0.4);
        }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            background: rgba(22, 33, 62, 0.5);
        }

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

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .section-subtitle {
            text-align: center;
            color: #B8B8D1;
            font-size: 1.2rem;
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .feature-card {
            background: rgba(26, 26, 46, 0.6);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(147, 112, 219, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(147, 112, 219, 0.5);
            box-shadow: 0 10px 30px rgba(147, 112, 219, 0.2);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #9370DB;
        }

        .feature-card p {
            color: #B8B8D1;
            line-height: 1.8;
        }

        /* Why Choose Section */
        .why-choose {
            padding: 6rem 2rem;
            background: rgba(26, 26, 46, 0.3);
        }

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

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .benefit-item {
            text-align: center;
            padding: 2rem;
        }

        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .benefit-item h4 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            background: linear-gradient(135deg, #9370DB, #6495ED);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .benefit-item p {
            color: #B8B8D1;
        }

        /* Safety Section */
        .safety {
            padding: 6rem 2rem;
            background: rgba(22, 33, 62, 0.5);
        }

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

        .safety-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .safety-badge {
            background: rgba(147, 112, 219, 0.1);
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid rgba(147, 112, 219, 0.3);
        }

        .safety-badge-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 2rem;
            background: rgba(26, 26, 46, 0.3);
        }

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

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: rgba(26, 26, 46, 0.6);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(147, 112, 219, 0.2);
        }

        .testimonial-text {
            font-style: italic;
            color: #B8B8D1;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .testimonial-author {
            font-weight: 600;
            color: #9370DB;
        }

        .testimonial-age {
            color: #7B7B9E;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .final-cta {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, rgba(147, 112, 219, 0.2), rgba(100, 149, 237, 0.2));
            text-align: center;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .final-cta p {
            font-size: 1.2rem;
            color: #B8B8D1;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Footer */
        footer {
            padding: 3rem 2rem;
            background: #0F0F1E;
            text-align: center;
            color: #7B7B9E;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #9370DB;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #6495ED;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .logo {
                font-size: 2.5rem;
            }

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

        /* ── Emoji Icon Styles ── */
        .feature-icon,
        .benefit-icon,
        .safety-badge-icon {
            font-size: 32px;
            line-height: 1;
        }

        .feature-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(147,112,219,0.15), rgba(100,149,237,0.15));
            margin-bottom: 1.5rem;
            font-size: 32px;
        }

        body.light-mode .feature-icon {
            background: linear-gradient(135deg, rgba(147,112,219,0.1), rgba(100,149,237,0.1));
        }

        .benefit-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(147,112,219,0.15), rgba(100,149,237,0.15));
            margin: 0 auto 1rem;
            font-size: 28px;
        }

        .safety-badge-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(147,112,219,0.2), rgba(100,149,237,0.2));
            margin: 0 auto 1rem;
            font-size: 28px;
        }

        .theme-icon {
            font-size: 18px;
        }

        .trust-inline-icon {
            font-size: 14px;
        }

        .trust-check {
            color: #4A7BCF;
            font-size: 18px;
        }

        body.light-mode .trust-check {
            color: #3A5FA0;
        }

        .social-icon {
            font-size: 24px;
            transition: transform 0.3s ease;
        }

        .social-icon:hover {
            transform: scale(1.2);
        }

        .step-number {
            font-size: 32px;
        }

        .chat-avatar,
        .message-avatar {
            font-size: 20px;
        }

        .chat-close {
            font-size: 20px;
        }

        .chat-send {
            font-size: 22px;
        }

        .chat-toggle {
            font-size: 32px;
        }

        .language-toggle {
            font-size: 20px;
        }

        .modal-icon {
            font-size: 48px;
        }

        .modal-close {
            font-size: 24px;
        }

        .lang-check {
            font-size: 28px;
            color: #9370DB;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .language-option.selected .lang-check {
            opacity: 1;
        }

        /* ── Live Chat Widget Styles ── */
        .chat-widget {
            position: fixed;
            bottom: 100px;
            right: 24px;
            width: 380px;
            max-width: calc(100vw - 48px);
            height: 550px;
            max-height: calc(100vh - 150px);
            background: rgba(26, 26, 46, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            z-index: 9999;
            transform: translateY(calc(100% + 100px));
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: 1px solid rgba(147, 112, 219, 0.3);
        }

        body.light-mode .chat-widget {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 20px 60px rgba(147, 112, 219, 0.2);
        }

        .chat-widget.active {
            transform: translateY(0);
            opacity: 1;
        }

        .chat-header {
            background: linear-gradient(135deg, #9370DB, #6495ED);
            padding: 1.25rem;
            border-radius: 20px 20px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header-info {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        .chat-avatar {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .chat-avatar i {
            width: 20px;
            height: 20px;
            stroke: white;
            stroke-width: 2;
        }

        .chat-title {
            color: white;
            font-weight: 600;
            font-size: 1rem;
        }

        .chat-status {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.75rem;
        }

        .chat-close {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .chat-close:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .chat-close i {
            width: 18px;
            height: 18px;
            stroke: white;
            stroke-width: 2;
        }

        .chat-messages {
            flex: 1;
            overflow-y: auto;
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .chat-message {
            display: flex;
            gap: 0.75rem;
            animation: slideIn 0.3s ease;
        }

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

        .bot-message {
            align-self: flex-start;
        }

        .user-message {
            align-self: flex-end;
            flex-direction: row-reverse;
        }

        .message-avatar {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #9370DB, #6495ED);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .user-message .message-avatar {
            background: linear-gradient(135deg, #6495ED, #9370DB);
        }

        .message-avatar i {
            width: 16px;
            height: 16px;
            stroke: white;
            stroke-width: 2;
        }

        .message-content {
            background: rgba(147, 112, 219, 0.15);
            padding: 0.75rem 1rem;
            border-radius: 16px;
            max-width: 75%;
        }

        body.light-mode .message-content {
            background: rgba(147, 112, 219, 0.1);
        }

        .user-message .message-content {
            background: linear-gradient(135deg, #9370DB, #6495ED);
        }

        .message-content p {
            margin: 0;
            color: #E8E8E8;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        body.light-mode .message-content p {
            color: #2A2A3E;
        }

        .user-message .message-content p {
            color: white;
        }

        .chat-input-container {
            padding: 1rem;
            border-top: 1px solid rgba(147, 112, 219, 0.2);
            display: flex;
            gap: 0.75rem;
        }

        .chat-input {
            flex: 1;
            background: rgba(147, 112, 219, 0.1);
            border: 1px solid rgba(147, 112, 219, 0.2);
            border-radius: 12px;
            padding: 0.75rem 1rem;
            color: #E8E8E8;
            font-size: 0.9rem;
            outline: none;
            transition: all 0.3s ease;
        }

        body.light-mode .chat-input {
            background: rgba(147, 112, 219, 0.05);
            color: #2A2A3E;
        }

        .chat-input:focus {
            border-color: #9370DB;
            background: rgba(147, 112, 219, 0.15);
        }

        .chat-input::placeholder {
            color: #7B7B9E;
        }

        body.light-mode .chat-input::placeholder {
            color: #8A8AAE;
        }

        .chat-send {
            background: linear-gradient(135deg, #9370DB, #6495ED);
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .chat-send:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(147, 112, 219, 0.4);
        }

        .chat-send i {
            width: 20px;
            height: 20px;
            stroke: white;
            stroke-width: 2;
        }

        .chat-toggle {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #9370DB, #6495ED);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(147, 112, 219, 0.4);
            z-index: 9998;
            transition: all 0.3s ease;
        }

        .chat-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 32px rgba(147, 112, 219, 0.5);
        }

        .chat-toggle.hidden {
            transform: scale(0);
            opacity: 0;
        }

        .chat-toggle i {
            width: 28px;
            height: 28px;
            stroke: white;
            stroke-width: 2;
        }

        .chat-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            background: #FF4757;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 600;
            border: 3px solid #1A1A2E;
        }

        body.light-mode .chat-badge {
            border-color: #F5F5FF;
        }

        @media (max-width: 768px) {
            .chat-widget {
                bottom: 80px;
                right: 16px;
                width: calc(100vw - 32px);
                height: calc(100vh - 120px);
            }

            .chat-toggle {
                bottom: 16px;
                right: 16px;
                width: 56px;
                height: 56px;
            }
        }

        /* Trust indicators */
        .trust-bar {
            background: rgba(0, 0, 0, 0.3);
            padding: 1rem;
            text-align: center;
            color: #9370DB;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(147, 112, 219, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .trust-content {
            flex: 1;
            text-align: center;
        }

        .highlight {
            color: #6495ED;
            font-weight: 600;
        }

        /* Theme Toggle */
        .theme-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
            background: rgba(26, 26, 46, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 0.5rem 1rem;
            border: 1px solid rgba(147, 112, 219, 0.3);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        body.light-mode .theme-toggle {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(147, 112, 219, 0.2);
        }

        .theme-toggle:hover {
            border-color: rgba(147, 112, 219, 0.5);
            transform: scale(1.05);
        }

        .theme-toggle-label {
            font-size: 0.9rem;
            font-weight: 500;
            color: #E8E8E8;
        }

        body.light-mode .theme-toggle-label {
            color: #2A2A3E;
        }

        .toggle-switch {
            position: relative;
            width: 50px;
            height: 26px;
            background: rgba(147, 112, 219, 0.3);
            border-radius: 50px;
            transition: background 0.3s ease;
        }

        body.light-mode .toggle-switch {
            background: rgba(147, 112, 219, 0.2);
        }

        .toggle-slider {
            position: absolute;
            top: 3px;
            left: 3px;
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #9370DB, #6495ED);
            border-radius: 50%;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        body.light-mode .toggle-slider {
            transform: translateX(24px);
        }

        .theme-icon {
            font-size: 1.2rem;
        }

        /* Language Toggle */
        .language-toggle {
            position: relative;
            z-index: 10;
            background: rgba(26, 26, 46, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 0.5rem 1rem;
            border: 1px solid rgba(147, 112, 219, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
        }

        body.light-mode .language-toggle {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(147, 112, 219, 0.2);
        }

        .language-toggle:hover {
            border-color: rgba(147, 112, 219, 0.5);
            transform: scale(1.05);
        }

        .lang-label {
            font-weight: 600;
            font-size: 0.9rem;
            color: #E8E8E8;
        }

        body.light-mode .lang-label {
            color: #2A2A3E;
        }

        .language-toggle i {
            width: 18px;
            height: 18px;
            stroke: #9370DB;
        }

        /* Language Modal */
        .language-modal {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
        }

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

        .language-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            animation: fadeIn 0.3s ease;
        }

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

        .language-modal-content {
            position: relative;
            z-index: 1;
            background: rgba(26, 26, 46, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 3rem 2.5rem;
            max-width: 500px;
            width: calc(100vw - 48px);
            border: 1px solid rgba(147, 112, 219, 0.3);
            animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        body.light-mode .language-modal-content {
            background: rgba(255, 255, 255, 0.98);
        }

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

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(147, 112, 219, 0.2);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(147, 112, 219, 0.3);
            transform: rotate(90deg);
        }

        .modal-close i {
            width: 20px;
            height: 20px;
            stroke: #E8E8E8;
        }

        body.light-mode .modal-close i {
            stroke: #2A2A3E;
        }

        .modal-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(147, 112, 219, 0.2), rgba(100, 149, 237, 0.2));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        .modal-icon i {
            width: 40px;
            height: 40px;
            stroke: #9370DB;
        }

        .modal-title {
            font-size: 2rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 0.5rem;
            color: #E8E8E8;
        }

        body.light-mode .modal-title {
            color: #2A2A3E;
        }

        .modal-subtitle {
            text-align: center;
            color: #B8B8D1;
            margin-bottom: 2rem;
        }

        body.light-mode .modal-subtitle {
            color: #5A5A7E;
        }

        .language-options {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .language-option {
            background: rgba(147, 112, 219, 0.1);
            border: 2px solid rgba(147, 112, 219, 0.2);
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        body.light-mode .language-option {
            background: rgba(147, 112, 219, 0.05);
        }

        .language-option:hover {
            background: rgba(147, 112, 219, 0.2);
            border-color: rgba(147, 112, 219, 0.4);
            transform: translateX(4px);
        }

        .language-option.selected {
            background: linear-gradient(135deg, rgba(147, 112, 219, 0.3), rgba(100, 149, 237, 0.3));
            border-color: #9370DB;
        }

        .lang-flag {
            font-size: 2.5rem;
            line-height: 1;
        }

        .lang-info {
            flex: 1;
        }

        .lang-name {
            font-weight: 600;
            font-size: 1.1rem;
            color: #E8E8E8;
            margin-bottom: 0.25rem;
        }

        body.light-mode .lang-name {
            color: #2A2A3E;
        }

        .lang-native {
            font-size: 0.9rem;
            color: #B8B8D1;
        }

        body.light-mode .lang-native {
            color: #5A5A7E;
        }

        .lang-check {
            width: 24px;
            height: 24px;
            stroke: #9370DB;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .language-option.selected .lang-check {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .language-toggle {
                margin-top: 0.75rem;
            }

            .language-modal-content {
                padding: 2rem 1.5rem;
            }

            .modal-title {
                font-size: 1.5rem;
            }
        }

        /* Navigation Bar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            z-index: 999;
            border-bottom: 1px solid rgba(147, 112, 219, 0.2);
            padding: 1rem 0;
        }

        body.light-mode .navbar {
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(147, 112, 219, 0.15);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            height: 50px;
        }

        .nav-logo img {
            height: 45px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-link {
            color: #E8E8E8;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 1rem;
        }

        body.light-mode .nav-link {
            color: #2A2A3E;
        }

        .nav-link:hover {
            color: #9370DB;
        }

        .nav-cta {
            background: linear-gradient(135deg, #9370DB, #6495ED);
            color: white !important;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            transition: transform 0.3s ease;
        }

        .nav-cta:hover {
            transform: scale(1.05);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #E8E8E8;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        body.light-mode .hamburger span {
            background: #2A2A3E;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* App Store Badges */
        .app-badges {
            display: flex;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .badge-link {
            transition: transform 0.3s ease;
        }

        .badge-link:hover {
            transform: translateY(-3px);
        }

        .store-badge {
            height: 60px;
            width: auto;
            filter: brightness(1);
            transition: filter 0.3s ease;
        }

        .badge-link:hover .store-badge {
            filter: brightness(1.1);
        }

        /* Hero Stats */
        .hero-stats {
            display: flex;
            gap: 3rem;
            justify-content: center;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #9370DB, #6495ED);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            color: #B8B8D1;
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }

        body.light-mode .stat-label {
            color: #5A5A7E;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 6rem 2rem;
            background: rgba(26, 26, 46, 0.3);
        }

        body.light-mode .how-it-works {
            background: rgba(248, 248, 255, 0.6);
        }

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

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .step-card {
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #9370DB, #6495ED);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin: 0 auto 1.5rem;
        }

        .step-number i {
            font-size: 28px;
            color: white;
            display: block;
        }

        .step-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #E8E8E8;
        }

        body.light-mode .step-card h3 {
            color: #2A2A3E;
        }

        .step-card p {
            color: #B8B8D1;
            line-height: 1.8;
        }

        body.light-mode .step-card p {
            color: #5A5A7E;
        }

        /* Rating Summary */
        .rating-summary {
            text-align: center;
            margin: 2rem 0 3rem;
        }

        .overall-rating {
            display: inline-block;
        }

        .rating-stars {
            font-size: 2rem;
            color: #FFD700;
            margin-bottom: 0.5rem;
        }

        .rating-number {
            font-size: 1.5rem;
            font-weight: 600;
            color: #E8E8E8;
        }

        body.light-mode .rating-number {
            color: #2A2A3E;
        }

        .rating-count {
            color: #B8B8D1;
            margin-top: 0.3rem;
        }

        body.light-mode .rating-count {
            color: #5A5A7E;
        }

        /* FAQ Section */
        .faq {
            padding: 6rem 2rem;
            background: rgba(22, 33, 62, 0.5);
        }

        body.light-mode .faq {
            background: rgba(255, 255, 255, 0.5);
        }

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

        .faq-grid {
            margin-top: 3rem;
        }

        .faq-item {
            background: rgba(26, 26, 46, 0.6);
            border-radius: 15px;
            margin-bottom: 1rem;
            border: 1px solid rgba(147, 112, 219, 0.2);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        body.light-mode .faq-item {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(147, 112, 219, 0.15);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(147, 112, 219, 0.1);
        }

        .faq-question h4 {
            margin: 0;
            font-size: 1.1rem;
            color: #E8E8E8;
        }

        body.light-mode .faq-question h4 {
            color: #2A2A3E;
        }

        .faq-icon {
            font-size: 1.5rem;
            color: #9370DB;
            font-weight: 300;
            transition: transform 0.3s ease;
        }

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

        .faq-answer p {
            padding: 0 2rem 1.5rem;
            color: #B8B8D1;
            line-height: 1.8;
        }

        body.light-mode .faq-answer p {
            color: #5A5A7E;
        }

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

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* Trust Indicators */
        .trust-indicators {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .trust-indicator {
            font-size: 0.95rem;
            color: #B8B8D1;
        }

        body.light-mode .trust-indicator {
            color: #5A5A7E;
        }

        .trust-check {
            color: #6495ED;
            font-weight: 700;
            margin-right: 0.3rem;
        }

        /* Footer Enhancements */
        footer {
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-title {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #9370DB, #6495ED);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .footer-description {
            color: #7B7B9E;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-heading {
            font-size: 1.1rem;
            font-weight: 600;
            color: #E8E8E8;
            margin-bottom: 0.5rem;
        }

        body.light-mode .footer-heading {
            color: #2A2A3E;
        }

        .footer-link {
            color: #7B7B9E;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-link:hover {
            color: #9370DB;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .social-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            transform: scale(1.2);
        }

        .newsletter-text {
            color: #7B7B9E;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.7rem;
            border-radius: 8px;
            border: 1px solid rgba(147, 112, 219, 0.3);
            background: rgba(26, 26, 46, 0.6);
            color: #E8E8E8;
            font-size: 0.9rem;
        }

        body.light-mode .newsletter-input {
            background: rgba(255, 255, 255, 0.8);
            color: #2A2A3E;
            border: 1px solid rgba(147, 112, 219, 0.2);
        }

        .newsletter-input::placeholder {
            color: #7B7B9E;
        }

        .newsletter-button {
            padding: 0.7rem 1.2rem;
            background: linear-gradient(135deg, #9370DB, #6495ED);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: transform 0.3s ease;
        }

        .newsletter-button:hover {
            transform: scale(1.05);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(147, 112, 219, 0.2);
            text-align: center;
        }

        .footer-bottom .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 0.8rem 0;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                background: rgba(26, 26, 46, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                transition: left 0.3s ease;
                border-bottom: 1px solid rgba(147, 112, 219, 0.2);
                max-height: calc(100vh - 70px);
                overflow-y: auto;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            }

            body.light-mode .nav-menu {
                background: rgba(255, 255, 255, 0.98);
                box-shadow: 0 10px 40px rgba(147, 112, 219, 0.15);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-link {
                padding: 0.8rem 1rem;
                border-radius: 8px;
                transition: all 0.3s ease;
            }

            .nav-link:hover {
                background: rgba(147, 112, 219, 0.1);
            }

            .nav-cta {
                margin-top: 1rem;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                padding-top: 6rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-stats {
                gap: 2rem;
            }

            .stat-number {
                font-size: 2rem;
            }
        }
