        :root {
            --primary-color: #ab2b98;
            --primary-dark: #8a2277;
            --primary-light: #c33fb0;
            --background-dark: #121212;
            --secondary-color-dark: #484848;
            --secondary-color: #656565;
            --surface-dark: #1e1e1e;
            --text-primary: #ffffff;
            --text-secondary: #b3b3b3;
            --border-radius: 12px;
            --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            transition: var(--transition);
        }
        a:hover{
            color:white;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--text-primary);
            background-color: var(--background-dark);
            line-height: 1.6;
        }

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

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 1.5rem 0;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(30, 30, 30, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo {
            height: 40px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-left: auto;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .nav-link:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(30, 30, 30, 0.95);
            min-width: 280px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            display: none;
            padding: 1rem;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-item {
            display: block;
            padding: 0.5rem 1rem;
            color: var(--text-primary);
            text-decoration: none;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .login-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(171, 43, 152, 0.3);
        }

        .theme-toggle {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
            cursor: pointer;
            font-size: 1.2rem;
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            backdrop-filter: blur(5px);
        }

        .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* Inline Signup Wizard Section */
        .inline-wizard-section {
            padding: 3rem 0 4rem;
            background: var(--background-dark);
            position: relative;
            overflow: hidden;
            margin-top: 0;
        }

        .inline-wizard-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(to bottom, var(--background-dark) 0%, transparent 100px),
                radial-gradient(circle at 50% 50%, 
                rgba(171, 43, 152, 0.15) 0%, 
                transparent 70%
            );
            pointer-events: none;
        }

        .inline-wizard-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .inline-wizard-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, var(--primary-color), #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .inline-wizard-subtitle {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .inline-wizard-form {
            background: var(--surface-dark);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--box-shadow);
        }

        .inline-wizard-input {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            font-size: 1rem;
            margin-bottom: 1rem;
            transition: var(--transition);
        }

        .inline-wizard-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(171, 43, 152, 0.2);
        }

        .inline-wizard-input::placeholder {
            color: var(--text-secondary);
        }

        .inline-wizard-row {
            display: flex;
            gap: 1rem;
        }

        .inline-wizard-row .inline-wizard-input {
            flex: 1;
        }

        .inline-wizard-submit {
            width: 100%;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .inline-wizard-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(171, 43, 152, 0.4);
        }

        .inline-wizard-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .inline-wizard-submit i {
            transition: transform 0.3s ease;
        }

        .inline-wizard-submit:hover i {
            transform: translateX(4px);
        }

        .inline-wizard-divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
        }

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

        .inline-wizard-divider span {
            padding: 0 1rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .inline-wizard-google {
            width: 100%;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        .inline-wizard-google:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--primary-color);
        }

        .inline-wizard-google:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .inline-wizard-google img {
            width: 20px;
            height: 20px;
        }

        .inline-wizard-error {
            background: rgba(244, 67, 54, 0.1);
            border: 1px solid rgba(244, 67, 54, 0.3);
            color: #f44336;
            padding: 0.75rem 1rem;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            font-size: 0.9rem;
            display: none;
        }

        .inline-wizard-success {
            background: rgba(76, 175, 80, 0.1);
            border: 1px solid rgba(76, 175, 80, 0.3);
            color: #4caf50;
            padding: 0.75rem 1rem;
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            font-size: 0.9rem;
            display: none;
        }

        .inline-wizard-login {
            text-align: center;
            margin-top: 1.5rem;
        }

        .inline-wizard-login a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .inline-wizard-login a:hover {
            text-decoration: underline;
        }

        .inline-wizard-spinner {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @media (max-width: 768px) {
            .inline-wizard-title {
                font-size: 1.8rem;
            }

            .inline-wizard-subtitle {
                font-size: 1rem;
            }

            .inline-wizard-form {
                padding: 1.5rem;
            }

            .inline-wizard-row {
                display: flex;
                gap: 0.5rem;
            }
        }

        .ai-prompt-info {
            margin-top: 1.25rem;
        }

        .ai-prompt-info-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 0.75rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .ai-prompt-info-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
            padding: 0.75rem 0.5rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transition: var(--transition);
        }

        .ai-prompt-info-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(171, 43, 152, 0.3);
            transform: translateY(-2px);
        }

        .ai-prompt-info-item i {
            font-size: 1.1rem;
            color: var(--primary-color);
            opacity: 0.9;
        }

        .ai-prompt-info-item span {
            color: var(--text-secondary);
            font-size: 0.8rem;
            font-weight: 500;
            text-align: center;
            line-height: 1.2;
        }

        @media (max-width: 1024px) {
            .ai-prompt-info-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 0.6rem;
            }
        }

        @media (max-width: 768px) {
            header{
                margin:0;
            }
            .ai-prompt-info-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 0.5rem;
            }

            .ai-prompt-info-item {
                padding: 0.5rem 0.25rem;
            }

            .ai-prompt-info-item i {
                font-size: 1rem;
            }

            .ai-prompt-info-item span {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 480px) {
            .ai-prompt-info-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }
        }

        /* Trusted Stations Section */
        .trusted-stations-section {
            padding: 3rem 0;
            background: var(--surface-dark);
            position: relative;
        }

        .trusted-stations-scroll {
            display: flex;
            flex-direction: row;
            gap: 1rem;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            padding: 0 1rem;
            scrollbar-width: thin;
            scrollbar-color: rgba(171, 43, 152, 0.3) transparent;
        }

        .trusted-stations-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .trusted-stations-scroll::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 3px;
        }

        .trusted-stations-scroll::-webkit-scrollbar-thumb {
            background: rgba(171, 43, 152, 0.3);
            border-radius: 3px;
        }

        .trusted-stations-scroll::-webkit-scrollbar-thumb:hover {
            background: rgba(171, 43, 152, 0.5);
        }

        .station-logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 90px;
            height: 90px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
            overflow: hidden;
            opacity: 0.8;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .station-logo-icon:hover {
            opacity: 1;
            transform: scale(1.08) translateY(-2px);
            box-shadow: 0 8px 24px rgba(171, 43, 152, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
            border-color: rgba(171, 43, 152, 0.3);
        }

        .station-logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        @media (max-width: 768px) {
            .station-logo-icon {
                width: 70px;
                height: 70px;
                border-radius: 15px;
            }

            .station-logo-icon img {
                border-radius: 15px;
            }

            .trusted-stations-scroll {
                gap: 0.75rem;
            }
        }

        /* Hero Section */
        .hero {
            padding: 12rem 0 3rem;
            text-align: center;
            background: linear-gradient(to bottom, 
                rgba(171, 43, 152, 0.15),
                rgba(30, 30, 30, 0.95),
                var(--background-dark)
            );
            position: relative;
            overflow: hidden;
        }
        @media (max-width: 768px) {
            .hero {
                padding: 6rem 0 3rem; /* lower top padding */
            }
           
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
        }

        .hero-column {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            padding: 2.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }

        .hero-column::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
            opacity: 0.5;
        }

        .hero-column:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .hero-column h2 {
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .hero-column p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .hero-column .btn {
            align-self: flex-start;
            margin-top: auto;
            padding: 0.75rem 1.5rem;
            font-size: 0.95rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(to bottom, var(--background-dark) 0%, transparent 100px),
                radial-gradient(circle at 50% 0%, 
                rgba(171, 43, 152, 0.2) 0%, 
                transparent 50%
            );
            pointer-events: none;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -1px;
            background: linear-gradient(to right, var(--primary-color), #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: var(--text-secondary);
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .cta-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            max-width: 400px;
        }

        .cta-section p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            text-align: center;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            font-size: 1rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

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

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(171, 43, 152, 0.3);
        }

        /* Sections */
        section {
            position: relative;
            padding: 6rem 0;
            background: var(--surface-dark);
            border-radius: var(--border-radius);
        }
        section .container {
            position: relative;
            z-index: 1;
        }
        /* Fade out at bottom of each section into next */
        section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to bottom, transparent, var(--background-dark));
            pointer-events: none;
            z-index: 0;
        }
        /* Fade in at top of each section (except first and sections with their own ::before) */
        section + section:not(.hero):not(.inline-wizard-section):not(.showcase-section):not(.comprehensive-features-section)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, var(--background-dark), transparent);
            pointer-events: none;
            z-index: 0;
        }
        @media (max-width: 768px) {
           
            section{
                padding: 1rem 0;
               border-radius: 0;
            }
            section::after {
                height: 80px;
            }
            section + section:not(.hero):not(.inline-wizard-section):not(.showcase-section):not(.comprehensive-features-section)::before {
                height: 60px;
            }
        }
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            background: linear-gradient(to right, var(--primary-color), #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        /* Who We Serve */
        .serve-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .serve-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .serve-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
        }

        .serve-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .serve-card h3 i {
            font-size: 1.25rem;
            color: var(--primary-color);
        }

        .serve-card ul {
            list-style: none;
        }

        .serve-card li {
            margin-bottom: 0.75rem;
            padding-left: 1.75rem;
            position: relative;
            color: var(--text-secondary);
        }

        .serve-card li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Core Benefits */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .benefit-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .benefit-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            display: flex;
            justify-content: center;
        }

        .benefit-card h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
            font-weight: 600;
        }

        .benefit-card p {
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* Promo Section */
        .promo-section {
            padding: 6rem 0;
            background: var(--surface-dark);
            position: relative;
            overflow: hidden;
        }

        .promo-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: radial-gradient(circle at 50% 0%, 
                rgba(171, 43, 152, 0.1) 0%, 
                transparent 50%
            );
            pointer-events: none;
        }

        .promo-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .promo-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, var(--primary-color), #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        .promo-header p {
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .promo-video-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .promo-video {
            width: 100%;
            height: auto;
            display: block;
            background: #000;
        }

        /* Showcase Section */
        .showcase-section {
            padding: 6rem 0;
            background: var(--background-dark);
            position: relative;
            overflow: hidden;
        }

        .showcase-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: 
                linear-gradient(to bottom, var(--background-dark) 0%, transparent 100px),
                radial-gradient(circle at 50% 0%, 
                rgba(171, 43, 152, 0.1) 0%, 
                transparent 50%
            );
            pointer-events: none;
        }

        .showcase-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            z-index: 1;
        }

        .showcase-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, var(--primary-color), #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        .showcase-header p {
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .gallery-container {
            position: relative;
            z-index: 1;
            overflow: hidden;
            padding: 0 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .gallery-grid {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
            padding-bottom: 1rem;
        }

        .gallery-grid::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        .gallery-card {
            flex: 0 0 calc(90% - 1rem);
            background: var(--surface-dark);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.05);
            scroll-snap-align: start;
        }

        .gallery-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(171, 43, 152, 0.2);
            border-color: rgba(171, 43, 152, 0.3);
        }

        .gallery-image-wrapper {
            position: relative;
    background: linear-gradient(135deg, rgba(171, 43, 152, 0.05), rgba(255, 107, 107, 0.05));
    display: flex;
    align-items: center;
        }

        .gallery-image {
            width: 100%;
            height: auto;
            max-width: none;
            object-fit: contain;
            border-radius: 8px;
            filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
        }

        .gallery-info {
            padding: 2rem;
        }

        .gallery-info h3 {
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .gallery-info p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
        }

        .gallery-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .gallery-nav-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .gallery-nav-btn:hover {
            background: var(--primary-color);
            border-color: var(--primary-color);
            transform: scale(1.1);
        }

        .gallery-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .gallery-nav-btn:disabled:hover {
            transform: none;
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1,
            #hero-title {
                font-size: 2rem !important;
                line-height: 1.3;
                letter-spacing: -0.5px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }

            .showcase-section {
                padding: 3rem 0;
            }

            .showcase-header {
                margin-bottom: 2rem;
            }

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

            .gallery-container {
                padding: 0 1rem;
            }

            .gallery-card {
                flex: 0 0 calc(90% - 1rem);
            }

            .gallery-image-wrapper {
                min-height: 200px;
                padding: 1.5rem;
            }

            .gallery-image {
                width: 100%;
            }

            .promo-header h2,
            .showcase-header h2 {
                font-size: 2rem;
            }

            .nav-menu {
                display: none;
            }
        }

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

        .feature-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 2rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
        }

        .feature-card h3 {
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-size: 1.25rem;
            font-weight: 600;
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* Feature Gallery Styles */
        .feature-gallery-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .feature-gallery-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .feature-gallery-slider {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }

        .feature-gallery-item {
            flex: 0 0 100%;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-height: 650px;
            justify-content: center;
        }

        .feature-gallery-image-wrapper {
            width: 100%;
            max-width: 900px;
            height: 500px;
            margin-bottom: 2rem;
            border-radius: var(--border-radius);
            overflow: hidden;
            background: rgba(255, 255, 255, 0.03);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .feature-gallery-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: var(--border-radius);
        }

        .feature-gallery-content h3 {
            color: var(--text-primary);
            font-size: 1.75rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .feature-gallery-content p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
        }

        .feature-gallery-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .feature-gallery-nav-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .feature-gallery-nav-btn:hover:not(:disabled) {
            background: var(--primary-color);
            border-color: var(--primary-color);
            transform: scale(1.1);
        }

        .feature-gallery-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .feature-gallery-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }

        .feature-gallery-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .feature-gallery-dot.active {
            background: var(--primary-color);
            width: 30px;
            border-radius: 5px;
        }

        .feature-gallery-cta {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
        }

        .feature-gallery-cta .btn {
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
        }

        @media (max-width: 768px) {
            .feature-gallery-item {
                padding: 2rem 1.5rem;
                min-height: 500px;
            }

            .feature-gallery-image-wrapper {
                height: 350px;
                margin-bottom: 1.5rem;
            }

            .feature-gallery-content h3 {
                font-size: 1.5rem;
            }
        }

        body.feature-table-modal-open {
            overflow: hidden;
        }

        .feature-table-modal {
            position: fixed;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.82);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
            z-index: 2000;
        }

        .feature-table-modal.active {
            opacity: 1;
            pointer-events: auto;
        }

        .feature-table-modal-dialog {
            width: min(1200px, 100%);
            max-height: calc(100vh - 3rem);
            overflow-y: auto;
            position: relative;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
            background: #0a0a0a;
        }

        .feature-table-modal-close {
            position: sticky;
            top: 1rem;
            margin-left: auto;
            margin-right: 1rem;
            margin-top: 1rem;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.16);
            background: rgba(255, 255, 255, 0.08);
            color: var(--text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            transition: var(--transition);
        }

        .feature-table-modal-close:hover {
            background: rgba(255, 255, 255, 0.14);
        }

        .feature-table-modal-section {
            padding-top: 1.5rem;
        }

        .feature-table-modal-actions {
            display: flex;
            justify-content: center;
            padding: 1.75rem 0 0;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 768px) {
            .feature-table-modal {
                padding: 0.75rem;
            }

            .feature-table-modal-dialog {
                max-height: calc(100vh - 1.5rem);
                border-radius: 18px;
            }

            .feature-table-modal-section {
                padding-top: 0.5rem;
            }
        }

        /* Comprehensive Features Table Styles */
        .comprehensive-features-section {
            padding: 6rem 0;
            background: #0a0a0a;
            position: relative;
        }

        .comprehensive-features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(to bottom, #0a0a0a 0%, transparent 100px),
                radial-gradient(circle at 50% 50%, rgba(171, 43, 152, 0.08) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .features-table-container {
            background: rgba(30, 30, 30, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(171, 43, 152, 0.2);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            position: relative;
            z-index: 1;
        }

        /* Mobile-first: Convert table to cards */
        .features-mobile-view .features-table {
            width: 100%;
            border-collapse: collapse;
            display: block;
        }

        .features-mobile-view .features-table thead {
            display: none;
        }

        .features-mobile-view .features-table tbody {
            display: block;
        }

        .features-mobile-view .features-table tbody tr {
            display: block;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.25rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .features-mobile-view .features-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(171, 43, 152, 0.2);
        }

        .features-mobile-view .features-table tbody tr.feature-highlighted {
            background: linear-gradient(135deg, rgba(171, 43, 152, 0.15) 0%, rgba(255, 107, 107, 0.15) 100%);
            border-left: 4px solid #ab2b98;
            border-color: rgba(171, 43, 152, 0.3);
        }

        .features-mobile-view .features-table tbody tr.category-header-row {
            background: linear-gradient(135deg, rgba(171, 43, 152, 0.2) 0%, rgba(255, 107, 107, 0.2) 100%);
            border-radius: 12px;
            padding: 1rem 1.25rem;
            margin: 1.5rem 0 1rem;
            border: none;
        }

        .features-mobile-view .features-table tbody tr.category-header-row:first-child {
            margin-top: 0;
        }

        .features-mobile-view .features-table tbody tr.category-header-row td {
            padding: 0;
            border: none;
        }

        .features-mobile-view .features-table tbody tr.category-header-row td span {
            background: linear-gradient(135deg, #ab2b98 0%, #ff6b6b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .features-mobile-view .features-table tbody td {
            display: block;
            padding: 0;
            border: none;
            width: 100% !important;
        }

        .features-mobile-view .features-table tbody td.feature-name {
            margin-bottom: 0.75rem;
            color: #ffffff;
            font-weight: 600;
        }

        .features-mobile-view .features-table tbody td:not(.feature-name) {
            color: #b3b3b3;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-top: 0.5rem;
        }

        .category-header-row {
            background: linear-gradient(135deg, rgba(171, 43, 152, 0.15) 0%, rgba(255, 107, 107, 0.15) 100%);
            border-top: 2px solid rgba(171, 43, 152, 0.3);
        }

        .category-header-row td {
            color: #ffffff;
            font-weight: 700;
            font-size: 1.1rem;
            padding: 1rem;
            border-bottom: none;
            background: linear-gradient(135deg, rgba(171, 43, 152, 0.2) 0%, rgba(255, 107, 107, 0.2) 100%);
        }

        .category-header-row td span {
            background: linear-gradient(135deg, #ab2b98 0%, #ff6b6b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature-icon {
            font-size: 1.5rem;
            background: linear-gradient(135deg, #ab2b98 0%, #ff6b6b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin-right: 0.75rem;
            vertical-align: middle;
        }

        .feature-name-cell {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .last-in-category {
            border-bottom: 2px solid rgba(171, 43, 152, 0.2) !important;
        }

        /* Highlighted Features - Mobile only styles */
        .feature-highlighted {
            background: linear-gradient(90deg, rgba(171, 43, 152, 0.15) 0%, rgba(255, 107, 107, 0.15) 100%) !important;
            position: relative;
            border-left: 4px solid #ab2b98;
        }

        .feature-highlighted:hover {
            background: linear-gradient(90deg, rgba(171, 43, 152, 0.25) 0%, rgba(255, 107, 107, 0.25) 100%) !important;
        }

        .feature-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.25rem 0.75rem;
            background: linear-gradient(135deg, rgba(171, 43, 152, 0.2) 0%, rgba(255, 107, 107, 0.2) 100%);
            border: 1px solid rgba(171, 43, 152, 0.4);
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #ffffff;
            margin-left: 0.5rem;
            box-shadow: 0 2px 8px rgba(171, 43, 152, 0.2);
            animation: pulse-glow 2s ease-in-out infinite;
        }

        .feature-badge i {
            font-size: 0.7rem;
        }

        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 2px 8px rgba(171, 43, 152, 0.2);
            }
            50% {
                box-shadow: 0 2px 12px rgba(171, 43, 152, 0.4), 0 0 8px rgba(171, 43, 152, 0.3);
            }
        }

        .feature-highlighted .feature-name {
            color: #ffffff !important;
            font-weight: 700 !important;
        }

        .feature-highlighted .feature-icon {
            filter: drop-shadow(0 0 4px rgba(171, 43, 152, 0.6));
        }

        /* Desktop: Show table layout */
        @media (min-width: 769px) {
            .features-mobile-view .features-table {
                display: table !important;
                width: 100%;
                border-collapse: collapse;
                table-layout: fixed;
            }

            .features-mobile-view .features-table thead {
                display: table-header-group !important;
                background: linear-gradient(135deg, rgba(171, 43, 152, 0.2) 0%, rgba(255, 107, 107, 0.2) 100%);
            }

            .features-mobile-view .features-table thead tr {
                display: table-row !important;
            }

            .features-mobile-view .features-table th {
                display: table-cell !important;
                color: #ffffff;
                font-weight: 700;
                font-size: 1rem;
                padding: 1rem 1.5rem;
                text-align: left;
                border-bottom: 2px solid rgba(171, 43, 152, 0.3);
            }

            .features-mobile-view .features-table th:first-child {
                width: 40%;
            }

            .features-mobile-view .features-table th:last-child {
                width: 60%;
            }

            .features-mobile-view .features-table tbody {
                display: table-row-group !important;
            }

            .features-mobile-view .features-table tbody tr {
                display: table-row !important;
                background: transparent !important;
                border: none !important;
                border-left: none !important;
                border-radius: 0 !important;
                padding: 0 !important;
                margin: 0 !important;
                transition: background 0.3s ease;
            }

            .features-mobile-view .features-table tbody tr:hover {
                background: rgba(171, 43, 152, 0.08) !important;
            }

            .features-mobile-view .features-table tbody tr.feature-highlighted {
                background: linear-gradient(90deg, rgba(171, 43, 152, 0.12) 0%, rgba(255, 107, 107, 0.08) 100%) !important;
            }

            .features-mobile-view .features-table tbody tr.feature-highlighted:hover {
                background: linear-gradient(90deg, rgba(171, 43, 152, 0.18) 0%, rgba(255, 107, 107, 0.12) 100%) !important;
            }

            .features-mobile-view .features-table tbody tr.category-header-row {
                background: linear-gradient(135deg, rgba(171, 43, 152, 0.15) 0%, rgba(255, 107, 107, 0.15) 100%) !important;
            }

            .features-mobile-view .features-table tbody tr.category-header-row td {
                display: table-cell !important;
                padding: 1rem 1.5rem !important;
                border-bottom: none !important;
                border-top: 2px solid rgba(171, 43, 152, 0.3);
            }

            .features-mobile-view .features-table tbody td {
                display: table-cell !important;
                padding: 1rem 1.5rem !important;
                color: #b3b3b3;
                border-bottom: 1px solid rgba(171, 43, 152, 0.1);
                font-size: 0.95rem;
                line-height: 1.6;
                vertical-align: middle;
            }

            .features-mobile-view .features-table tbody td.feature-name {
                color: #ffffff;
                font-weight: 600;
                width: 40%;
            }

            .features-mobile-view .features-table tbody td:not(.feature-name) {
                width: 60%;
            }

            /* Desktop: Fix feature-name-cell to work in table */
            .features-mobile-view .feature-name-cell {
                display: flex !important;
                align-items: center;
                gap: 0.75rem;
                flex-wrap: wrap;
            }

            .features-mobile-view .feature-icon {
                flex-shrink: 0;
            }
        }

        @media (max-width: 768px) {
            .feature-badge {
                font-size: 0.7rem;
                padding: 0.2rem 0.6rem;
                margin-left: 0.3rem;
                margin-top: 0.25rem;
            }

            .feature-name-cell {
                flex-wrap: wrap;
            }

            .feature-icon {
                font-size: 1.25rem;
                width: 32px;
                height: 32px;
            }
        }

        .testimonials {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1rem;
            font-size: 4rem;
            color: var(--primary-color);
            opacity: 0.2;
            font-family: serif;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .testimonial-author {
            color: var(--primary-color);
            font-weight: 600;
        }

        @media (max-width: 1024px) {
            .testimonials {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .testimonials {
                grid-template-columns: 1fr;
            }
        }

        .accordion {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .accordion-header {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .accordion-header:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .accordion-header h3 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--text-primary);
            font-weight: 600;
        }

        .accordion-content {
            padding: 1.5rem;
            color: var(--text-secondary);
            line-height: 1.6;
            display: none;
        }

        .accordion-item.active .accordion-content {
            display: block;
        }

        .accordion-icon {
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        /* Closing CTA Section */
        .closing-cta-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, rgba(171, 43, 152, 0.12) 0%, rgba(255, 107, 107, 0.08) 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .closing-cta-inner {
            text-align: center;
            max-width: 560px;
            margin: 0 auto;
        }
        .closing-cta-title {
            font-size: 2rem;
            margin-bottom: 0.75rem;
            background: linear-gradient(to right, var(--primary-color), #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }
        .closing-cta-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }
        .closing-cta-subtitle strong {
            color: var(--primary-light);
        }
        .closing-cta-btn {
            display: inline-block;
        }
        @media (max-width: 768px) {
            .closing-cta-section { padding: 3rem 0; }
            .closing-cta-title { font-size: 1.5rem; }
            .closing-cta-subtitle { font-size: 1rem; }
        }

        /* Footer Styles */
        footer {
            background: var(--surface-dark);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo {
            height: 40px;
            width: 120px;
            filter: brightness(0) invert(1);
            opacity: 0.9;
        }

        .footer-tagline {
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 200px;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            color: var(--text-secondary);
            font-size: 1.25rem;
            transition: var(--transition);
        }

        .social-link:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .footer-column h4 {
            color: var(--text-primary);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

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

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .footer-column a:hover {
            color: var(--primary-color);
            padding-left: 0.25rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-bottom p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-brand {
                align-items: center;
                text-align: center;
            }

            .footer-tagline {
                max-width: none;
            }
        }

        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 320px;
            height: 100vh;
            background: var(--surface-dark);
            padding: 2rem;
            transition: right 0.3s ease;
            z-index: 1001;
            box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .mobile-menu-logo {
            height: 30px;
            width: auto;
        }

        .close-menu-btn {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-nav-item {
            position: relative;
        }

        .mobile-nav-link {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            display: block;
            padding: 0.75rem 0;
        }

        .mobile-dropdown-content {
            display: none;
            padding-left: 1rem;
            margin-top: 0.5rem;
        }

        .mobile-dropdown.active .mobile-dropdown-content {
            display: block;
        }

        .mobile-dropdown-item {
            display: block;
            padding: 0.75rem 0;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 1rem;
        }

        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            color: var(--text-primary);
            font-weight: 500;
            font-size: 1.1rem;
            padding: 0.75rem 0;
            cursor: pointer;
        }

        .mobile-dropdown-toggle i {
            transition: transform 0.3s ease;
        }

        .mobile-dropdown.active .mobile-dropdown-toggle i {
            transform: rotate(180deg);
        }

        .mobile-cta-buttons {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 0 1rem;
        }

        .mobile-btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            font-size: 1.1rem;
        }

        .mobile-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(171, 43, 152, 0.3);
        }

        .mobile-btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-primary);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 1rem 2rem;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 500;
            text-align: center;
            transition: var(--transition);
            font-size: 1rem;
        }

        .mobile-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .overlay.active {
            display: block;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .mobile-menu {
                display: block;
            }
        }
