/* Landing Page Styles for AxiDots Activity Monitor */

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-gray-50: #f9fafb;
    --bg-gray-100: #f3f4f6;
    --bg-gray-900: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden; /* Prevent horizontal scroll */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 76px; /* Account for fixed navbar height */
}

/* Improve mobile text readability */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Prevent zoom on iOS */
        padding-top: 70px; /* Slightly smaller padding for mobile */
    }
    
    input, textarea, select {
        font-size: 16px; /* Prevent zoom on iOS form fields */
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
    min-height: 76px;
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-brand:hover {
    color: #2563eb !important;
}

.navbar-brand i {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.navbar-nav .nav-link {
    color: #6b7280 !important;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover {
    color: #2563eb !important;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1002;
}

.mobile-menu-toggle:hover {
    background: var(--bg-gray-100);
    color: var(--primary-color);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Mobile Navigation Styles */
@media (max-width: 968px) {
    .navbar .container {
        padding: 1rem 20px;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 1001;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 5rem 0 2rem;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        color: var(--text-primary);
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: var(--bg-gray-50);
        color: var(--primary-color);
        padding-left: 2.5rem;
    }
    
    .nav-actions {
        position: fixed;
        top: auto;
        bottom: 0;
        left: -280px;
        width: 280px;
        background: white;
        padding: 1.5rem 2rem;
        border-top: 1px solid var(--border-color);
        flex-direction: column;
        gap: 1rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-actions.active {
        left: 0;
    }
    
    .nav-actions .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1.1rem;
    }
    
    /* Mobile menu overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 280px;
        width: calc(100vw - 280px);
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    /* Language selector in mobile menu */
    .language-selector {
        margin: 0;
        width: 100%;
    }
    
    .language-btn {
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        color: white;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        font-weight: 500;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
    }
    
    .language-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }
    
    .language-btn:hover::before {
        left: 100%;
    }
    
    .language-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.35);
    }
    
    .language-dropdown {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
        transform: none;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-color);
    }
    
    .language-dropdown.show {
        opacity: 1;
        visibility: visible;
    }
}

/* Tablet Navigation */
@media (max-width: 1024px) and (min-width: 969px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-actions {
        gap: 0.75rem;
    }
    
    .nav-actions .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .navbar .container {
        padding: 0.875rem 15px;
    }
    
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .nav-brand i {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        width: 100vw;
        left: -100vw;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        width: 100vw;
        left: -100vw;
        padding: 1.5rem 15px;
    }
    
    .nav-actions.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1.2rem 1.5rem;
    }
}

/* Enhanced Mobile Animations and Interactions */
@media (max-width: 768px) {
    /* Smooth scroll behavior for mobile navigation */
    .nav-link {
        transition: all 0.3s ease;
    }
    
    .nav-link:active {
        background: var(--bg-gray-100);
        transform: scale(0.95);
    }
    
    /* Button animations for mobile */
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.95);
    }
    
    /* Card hover effects adapted for mobile */
    .feature-card,
    .testimonial-card,
    .pricing-card {
        transition: all 0.3s ease;
    }
    
    .feature-card:active,
    .testimonial-card:active {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }
    
    /* Improve mobile menu animation */
    .mobile-menu-toggle {
        transition: all 0.2s ease;
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.9);
    }
    
    /* Responsive images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Better mobile typography */
    .hero-text h1 {
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-text p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .section-header p {
        font-size: 1.125rem;
        max-width: 100%;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.btn-login:hover {
    background: var(--bg-gray-100);
    color: var(--text-primary);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: var(--bg-gray-100);
    color: var(--primary-color);
}

/* Language Selector Styles - Enhanced for new i18n system */
.language-selector {
    position: relative;
    margin-right: 1rem;
    z-index: 1001;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    min-width: 85px;
    justify-content: space-between;
}

.language-btn:hover {
    background: var(--bg-gray-50);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.language-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid var(--bg-gray-100);
    font-size: 0.875rem;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: var(--bg-gray-50);
}

.language-option:focus {
    background: var(--bg-gray-50);
    outline: none;
}

.language-option.active {
    background: var(--primary-color);
    color: white;
}

.language-option.active:hover {
    background: var(--primary-dark);
}

.language-option .flag {
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

.language-option span:not(.flag) {
    font-weight: 500;
}

/* Mobile Language Selector */
@media (max-width: 768px) {
    .language-selector {
        margin-right: 0.5rem;
    }
    
    .language-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        min-width: 80px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        color: white;
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(102, 126, 234, 0.25);
        font-weight: 500;
        position: relative;
        overflow: hidden;
    }
    
    .language-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }
    
    .language-btn:hover::before {
        left: 100%;
    }
    
    .language-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.35);
    }
    
    .language-dropdown {
        right: -10px;
        min-width: 160px;
        background: white;
        border: none;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(10px);
        overflow: hidden;
    }
    
    .language-option {
        padding: 0.75rem 1rem;
        font-weight: 500;
        color: #4a5568;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    }
    
    .language-option:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        transform: translateX(5px);
    }
    
    .language-option:last-child {
        border-bottom: none;
    }
}

/* Enhanced Mobile Language Dropdown Animation */
@media (max-width: 991.98px) {
    .language-dropdown .language-option {
        position: relative;
        overflow: hidden;
    }
    
    .language-dropdown .language-option::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
        transition: left 0.4s ease;
    }
    
    .language-dropdown .language-option:hover::before {
        left: 100%;
    }
    
    /* Add a subtle shadow to the flag icons */
    .language-dropdown .language-option .flag {
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
        transition: filter 0.3s ease;
    }
    
    .language-dropdown .language-option:hover .flag {
        filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
    }
    
    /* Enhanced dropdown entrance animation */
    .language-dropdown {
        animation-duration: 0.4s;
        animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .language-dropdown.active {
        animation-name: slideInFade;
    }
}

@keyframes slideInFade {
    0% {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Language Button Icon Animation */
@media (max-width: 991.98px) {
    .language-btn .fa-chevron-down {
        transition: transform 0.3s ease;
    }
    
    .language-dropdown.active + .language-btn .fa-chevron-down,
    .language-btn.active .fa-chevron-down {
        transform: rotate(180deg);
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: var(--bg-gray-50);
    border-bottom: 1px solid var(--border-gray-200);
    padding: 1rem 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--text-gray-600);
}

.breadcrumb-item.active {
    color: var(--text-gray-900);
    font-weight: 500;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    color: var(--text-gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-600);
}

.breadcrumb-link i {
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--text-gray-400);
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 0;
    }
    
    .breadcrumb-list {
        font-size: 0.8rem;
    }
    
    .breadcrumb-link i {
        margin-right: 0.25rem;
    }
    
    .breadcrumb-separator {
        margin: 0 0.25rem;
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-gray-50) 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--text-primary);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-features i {
    color: var(--secondary-color);
}

.hero-visual {
    position: relative;
}

.dashboard-preview {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    transition: transform 0.3s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.dashboard-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.preview-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: var(--bg-gray-50);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-text {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.company-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.company-logo {
    max-height: 40px;
    max-width: 120px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.company-logo:hover {
    filter: grayscale(0%);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.trust-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Mobile responsive for trust section */
@media (max-width: 768px) {
    .company-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .company-logo {
        max-height: 32px;
        max-width: 100px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Problems Section */
.problems-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.problem-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--bg-gray-50);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.problem-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.problem-icon i {
    font-size: 1.5rem;
    color: #dc2626;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background: var(--bg-gray-50);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.solution-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.solution-benefits {
    list-style: none;
}

.solution-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.solution-benefits i {
    color: var(--secondary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-showcase {
    position: relative;
}

.showcase-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.showcase-item img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.25rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.feature-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-arrow {
    color: var(--text-light);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Demo Section */
.demo-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.demo-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.demo-feature i {
    color: var(--primary-color);
    width: 1.5rem;
}

.btn-demo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-demo:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.demo-preview {
    position: relative;
}

.demo-browser {
    background: var(--bg-white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.browser-bar {
    background: var(--bg-gray-100);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.browser-buttons {
    display: flex;
    gap: 0.5rem;
}

.browser-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
}

.browser-buttons span:nth-child(1) { background: #ef4444; }
.browser-buttons span:nth-child(2) { background: #f59e0b; }
.browser-buttons span:nth-child(3) { background: #10b981; }

.browser-url {
    background: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border: 1px solid var(--border-color);
    flex: 1;
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile responsive for demo section */
@media (max-width: 768px) {
    .demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .demo-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .demo-text p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .demo-features {
        justify-content: center;
        align-items: center;
        text-align: left;
        max-width: 300px;
        margin: 0 auto 2rem auto;
    }
    
    .demo-feature {
        justify-content: flex-start;
        font-size: 0.95rem;
    }
    
    .btn-demo {
        margin: 0 auto;
        display: inline-flex;
    }
    
    .demo-visual {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .demo-preview {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .demo-browser {
        max-width: 100%;
    }
    
    .browser-bar {
        padding: 0.75rem;
        flex-wrap: wrap;
    }
    
    .browser-url {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        min-width: 0;
        word-break: break-all;
    }
}

/* Tablet responsive for demo section */
@media (max-width: 1024px) and (min-width: 769px) {
    .demo-content {
        gap: 3rem;
    }
    
    .demo-text h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
}

/* Enhanced mobile responsive for solution section - better stacking */
@media (max-width: 768px) {
    .solution-section {
        padding: 3rem 0;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .solution-text {
        order: 2;
        width: 100%;
    }
    
    .solution-text h2 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 1rem;
        text-align: center;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .solution-text p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .solution-benefits {
        text-align: left;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .solution-benefits li {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        align-items: flex-start;
        flex-wrap: wrap;
        word-wrap: break-word;
    }
    
    .solution-benefits strong {
        display: block;
        margin-bottom: 0.25rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .solution-benefits span {
        display: block;
        margin-left: 0;
        margin-top: 0.25rem;
        line-height: 1.4;
    }
    
    .solution-visual {
        order: 1;
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .feature-showcase {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .showcase-item {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .showcase-label {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.rating i {
    color: #f59e0b;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23cbd5e1" opacity="0.3"/></svg>') 0 0/30px 30px;
    pointer-events: none;
}

.pricing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    transition: 0.4s;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

input:checked + .slider::before {
    transform: translateX(30px);
}

.save-badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Pricing Container */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Pricing Plan Cards */
.pricing-plan {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-plan:hover::before {
    transform: scaleX(1);
}

.pricing-plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.pricing-plan.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.2);
}

.pricing-plan.featured::before {
    transform: scaleX(1);
}

.pricing-plan.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.plan-price .currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.plan-price .period {
    color: var(--text-secondary);
    font-size: 0.875rem;
    display: block;
    margin-top: 0.5rem;
}

.custom-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.plan-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Plan Features */
.plan-features {
    margin-bottom: 2rem;
}

.feature-group {
    margin-bottom: 1.5rem;
}

.feature-group h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-group li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.feature-group li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Plan Button */
.plan-button {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: white;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* Ensure link behavior for plan buttons */
a.plan-button {
    color: white;
}

a.plan-button:hover {
    color: white;
    text-decoration: none;
}

.plan-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.plan-button:hover::before {
    left: 100%;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.plan-button:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
    color: var(--text-secondary);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
    color: var(--secondary-color);
    font-size: 2rem;
}

.guarantee-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.guarantee-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.pricing-comparison {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pricing-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.comparison-animated {
    position: relative;
    z-index: 2;
}

.comparison-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 2s ease-in-out infinite alternate;
}

.savings-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.savings-item {
    text-align: center;
    animation: pulse-glow 2s ease-in-out infinite;
}

.price-highlight {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.vs-divider {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    animation: rotate-bounce 3s ease-in-out infinite;
}

.competitor-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.competitor-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.5rem;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
    animation: slide-in-left 0.6s ease-out;
}

.competitor-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.competitor-name {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 80px;
}

.competitor-price {
    color: var(--text-secondary);
    font-size: 0.9rem;
    min-width: 90px;
}

.savings-badge {
    background: linear-gradient(135deg, var(--secondary-color), #059669);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    animation: bounce-in 1s ease-out;
}

/* Animations */
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes gradient-shift {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(10deg); }
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate-bounce {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(360deg) scale(1.1); }
}

@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation triggers */
[data-animate="fade-in-up"] {
    animation: fade-in-up 0.8s ease-out forwards;
}

[data-animate="slide-in-left"] {
    animation: slide-in-left 0.8s ease-out forwards;
}

.pricing-comparison p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Mobile styles for animated pricing comparison */
@media (max-width: 768px) {
    .savings-showcase {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .price-highlight {
        font-size: 2rem;
    }
    
    .comparison-title {
        font-size: 1.25rem;
    }
    
    .competitor-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .competitor-name,
    .competitor-price {
        min-width: auto;
    }
    
    .vs-divider {
        font-size: 1rem;
        padding: 0.5rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-plan.featured {
        transform: none;
    }
    
    .pricing-plan.featured:hover {
        transform: translateY(-8px);
    }
    
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.cta-stat {
    text-align: center;
    color: white;
}

.cta-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1.1;
}

.cta-stat .stat-text {
    opacity: 0.9;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Enhanced Contact Section Styling */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-gray-50) 0%, rgba(99, 102, 241, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.4;
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 20px 20px 0 0;
}

/* Compact Form Styling */
.trial-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.trial-form input,
.trial-form select,
.trial-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: all 0.2s ease;
    background: #fafafa;
    color: var(--text-primary);
    font-family: inherit;
    margin: 0;
}

.trial-form input:focus,
.trial-form select:focus,
.trial-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.trial-form input::placeholder,
.trial-form textarea::placeholder {
    color: #94a3b8;
    font-style: italic;
}

/* Phone Group Styling */
.phone-group {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.phone-ext {
    flex: 0 0 80px;
    min-width: 80px;
}

.phone-main {
    flex: 1;
}

/* Select Dropdown */
.trial-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236366f1' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 2.5rem;
    appearance: none;
}

.trial-form select:invalid {
    color: #9ca3af;
}

.trial-form select option {
    color: var(--text-primary);
    padding: 0.5rem;
}

/* Textarea */
.trial-form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* Validation States */
.trial-form input.valid,
.trial-form select.valid,
.trial-form textarea.valid {
    border-color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.05);
}

.trial-form input.invalid.touched,
.trial-form select.invalid.touched,
.trial-form textarea.invalid.touched {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

/* Error Messages */
.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}

.error-message.show {
    display: flex;
}

.error-message::before {
    content: '⚠';
    font-size: 0.8rem;
}

/* Submit Button */
.btn-trial {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -8px rgba(99, 102, 241, 0.4);
}

.btn-trial:active {
    transform: translateY(0);
}

/* reCAPTCHA */
.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    margin: 1rem 0 0.5rem 0;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    border: 1px dashed rgba(99, 102, 241, 0.2);
}

/* Contact Features */
.contact-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Success and Error Messages */
.form-notifications {
    margin-top: 1rem;
}

.success-message {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-notifications .error-message {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 0;
}

/* Rate limiting notification */
.rate-limit-message {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* Mobile responsiveness for form */
@media (max-width: 768px) {
    .trial-form {
        max-width: 100%;
        gap: 1rem;
    }
    
    .trial-form input {
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-trial {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .g-recaptcha {
        transform: scale(0.77);
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.65);
    }
}

/* Privacy Policy Styles */
.privacy-policy-section {
    padding: 8rem 0 4rem;
    background: var(--bg-white);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.privacy-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.privacy-content .last-updated {
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.privacy-section h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem 0;
}

.privacy-section p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-info {
    background: var(--bg-gray-50);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Mobile responsiveness for privacy policy */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 6rem 0 3rem;
    }
    
    .privacy-content h1 {
        font-size: 2.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.25rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

/* Partner Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-dialog {
    background: white;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.btn-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body .contact-email {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.modal-body .contact-email:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.modal-body .contact-email strong {
    color: inherit;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 1rem;
    background: white;
    transition: border-color 0.2s ease;
}

.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.btn-partner-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-partner-submit:hover {
    background: var(--primary-dark);
}

.modal .input-group {
    display: flex;
    gap: 8px;
}

.modal .input-group .form-control:first-child {
    flex: 0 0 80px;
}

.modal .input-group .form-control:last-child {
    flex: 1;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-gray-50);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-category h3 {
    color: var(--primary-600);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-600);
}

.faq-item {
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    background: var(--bg-gray-50);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray-900);
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    color: var(--primary-600);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-question:hover {
    background: var(--bg-gray-100);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-gray-700);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h4 {
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 4rem 0 0;
    margin-top: 5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></svg>') 0 0/50px 50px;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.brand-logo i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.brand-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
}

.footer-column a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-badges .badge:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.footer-badges .badge i {
    font-size: 0.75rem;
    color: var(--secondary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center !important; /* Center align footer content */
    }
    
    .footer-brand {
        text-align: center !important; /* Center align brand section */
        margin: 0 auto; /* Center the container */
    }
    
    .social-links {
        justify-content: center !important; /* Center align social links */
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: center !important; /* Center align footer links */
    }
    
    .footer-column {
        text-align: center !important; /* Center align columns */
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%); /* Center the underline */
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-badges .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Success Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
}

.modal-content {
    background: #ffffff;
    border-radius: 1rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(50px) scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon i {
    color: #ffffff;
    font-size: 1.5rem;
}

.modal-header h3 {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    width:  100%;
}

/* Additional modal header alignment fixes */
.modal-header .success-icon + h3 {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    align-self: center;
}

.modal-header h3:only-of-type {
    text-align: center;
    margin: 0 auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #6b7280;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.modal-close:hover {
    color: #374151;
    background: #f3f4f6;
}

.modal-body {
    padding: 1rem 2rem;
    text-align: center;
}

.modal-body p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-body strong {
    color: #1f2937;
    font-weight: 600;
}

/* Advanced Mobile Language Selector Animations */
@media (max-width: 768px) {
    /* Enhance button with subtle animations */
    .language-btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        background-size: 200% 200%;
        animation: gradientShift 6s ease infinite;
    }
    
    @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }
    
    /* Enhanced dropdown with staggered animations */
    .language-dropdown .language-option {
        transform: translateX(-20px);
        opacity: 0;
        animation: slideInOption 0.3s ease forwards;
    }
    
    .language-dropdown .language-option:nth-child(1) { animation-delay: 0.1s; }
    .language-dropdown .language-option:nth-child(2) { animation-delay: 0.15s; }
    .language-dropdown .language-option:nth-child(3) { animation-delay: 0.2s; }
    .language-dropdown .language-option:nth-child(4) { animation-delay: 0.25s; }
    .language-dropdown .language-option:nth-child(5) { animation-delay: 0.3s; }
    .language-dropdown .language-option:nth-child(6) { animation-delay: 0.35s; }
    .language-dropdown .language-option:nth-child(7) { animation-delay: 0.4s; }
    .language-dropdown .language-option:nth-child(8) { animation-delay: 0.45s; }
    
    @keyframes slideInOption {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    /* Add ripple effect on tap */
    .language-btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .language-btn:active::after {
        width: 300px;
        height: 300px;
    }
    
    /* Enhanced flag styling */
    .language-option .flag {
        display: inline-block;
        font-size: 1.1rem;
        margin-right: 8px;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
        transition: transform 0.2s ease;
    }
    
    .language-option:hover .flag {
        transform: scale(1.1);
    }
    
    /* Add active language indicator */
    .language-option.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        position: relative;
    }
    
    .language-option.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #ffd700;
        border-radius: 0 3px 3px 0;
    }
    
    /* Mobile menu language selector enhancements */
    .mobile-menu .language-selector {
        padding: 1rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        margin: 0.5rem 0;
    }
    
    /* Smooth transitions for all elements */
    .language-selector,
    .language-btn,
    .language-dropdown,
    .language-option {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}
