    /* Muted Zoomer / Ethereal Dark Aesthetic */
    :root {
        /* Colors - Less saturated, more sophisticated */
        --bg-dark: #09090B; /* Zinc 950 - Soft Matte Black */
        --bg-card: #18181B; /* Zinc 900 */
        --primary: #818CF8; /* Indigo 400 - Soft Blurple */
        --primary-glow: rgba(129, 140, 248, 0.3);
        --secondary: #C084FC; /* Purple 400 - Soft Lilac */
        --accent: #2DD4BF; /* Teal 400 - Muted Mint */
        --success: #34D399; /* Emerald 400 - Soft Green */
        --text-main: #F4F4F5; /* Zinc 100 - Off White */
        --text-muted: #A1A1AA; /* Zinc 400 */
        
        /* Gradients - Smoother, less aggressive */
        --grad-main: linear-gradient(135deg, #818CF8 0%, #C084FC 100%);
        --grad-glow: linear-gradient(180deg, rgba(129, 140, 248, 0.15) 0%, rgba(192, 132, 252, 0.1) 100%);
        --grad-card: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
        
        /* Effects - iOS Glass Style */
        --glass: blur(40px) saturate(180%);
        --glass-bg: rgba(20, 20, 25, 0.4);
        --glass-border: 1px solid rgba(255, 255, 255, 0.12);
        --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
        
        --border: var(--glass-border);
        --border-hover: 1px solid rgba(129, 140, 248, 0.5);
        --shadow-glow: 0 0 50px rgba(129, 140, 248, 0.15);
        --input-bg: rgba(0, 0, 0, 0.3);
        --header-bg: rgba(10, 10, 10, 0.8);
    }

    /* Light Theme Variables */
    [data-theme="light"] {
        --bg-dark: #F8FAFC; /* Slate 50 */
        --bg-card: #FFFFFF; /* White */
        --text-main: #0F172A; /* Slate 900 - Dark almost black text for high contrast */
        --text-muted: #475569; /* Slate 600 - Darker grey for subtitles */
        
        /* Keep accents vibrant but slightly adjusted for light bg if needed */
        --primary: #6366F1; /* Indigo 500 */
        --primary-glow: rgba(99, 102, 241, 0.2);
        
        --grad-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
        
        --glass-bg: rgba(255, 255, 255, 0.85);
        --glass-border: 1px solid rgba(0, 0, 0, 0.1);
        --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
        
        --border: 1px solid rgba(0, 0, 0, 0.12);
        --input-bg: #F1F5F9; /* Slate 100 - Light grey background for inputs */
        --header-bg: rgba(255, 255, 255, 0.9);
        --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.1);
    }

    [data-theme="light"] .form-group input, 
    [data-theme="light"] .form-group select {
        color: #0F172A; /* Ensure input text is dark */
    }

    [data-theme="light"] .lang-toggle-btn {
        color: #0F172A;
    }

    [data-theme="light"] .lang-option {
        color: #334155;
    }
    
    [data-theme="light"] .hero-title {
        background: linear-gradient(135deg, #1e293b 20%, #4f46e5 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: none;
        filter: none;
    }
    
    [data-theme="light"] .section-title {
        background: linear-gradient(to right, #0f172a, #475569);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    [data-theme="light"] .income-amount {
        color: #0F172A;
    }
    
    [data-theme="light"] .income-card-featured .income-amount {
        color: white; /* Featured card stays dark/colored */
    }

    [data-theme="light"] .logo-text {
        background: linear-gradient(
            to right,
            #000000 20%,
            #7C3AED 40%,
            #7C3AED 60%,
            #000000 80%
        );
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shine 4s linear infinite;
    }

    [data-theme="light"] .nav-link {
        color: #475569;
    }

    [data-theme="light"] .nav-link:hover {
        color: #0F172A;
        text-shadow: none;
    }

    [data-theme="light"] .step-number {
        color: rgba(0, 0, 0, 0.05);
    }

    [data-theme="light"] body::before {
        background: 
            radial-gradient(circle at 15% 15%, rgba(15, 23, 42, 0.15), transparent 45%),
            radial-gradient(circle at 85% 85%, rgba(15, 23, 42, 0.10), transparent 45%);
    }

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 15%, rgba(129, 140, 248, 0.08), transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(192, 132, 252, 0.08), transparent 40%);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #fff, #9CA3AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

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

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    padding: 15px 30px;
    background: var(--header-bg);
    backdrop-filter: var(--glass);
    border: var(--border);
    border-radius: 16px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(
        to right,
        #fff 20%,
        #C084FC 40%,
        #C084FC 60%,
        #fff 80%
    );
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
    position: relative;
    z-index: 1002;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.logo-accent {
    color: inherit; /* Inherit gradient */
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--grad-main);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-link:hover {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.nav-link-cta {
    background: white;
    color: black !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.nav-link-cta:hover {
    transform: scale(1.05);
    background: #C084FC;
    color: white !important;
    box-shadow: 0 0 20px rgba(192, 132, 252, 0.4);
    text-shadow: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

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

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(5px) brightness(0.6);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #F4F4F5 20%, #A5B4FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(129, 140, 248, 0.2));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-item {
    background: rgba(15, 7, 32, 0.6);
    border: var(--border);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button {
    display: inline-block;
    background: #F4F4F5;
    color: #09090B;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: scale(1.05);
    background: #C084FC;
    color: white;
    box-shadow: 0 0 20px rgba(192, 132, 252, 0.4);
    animation: none;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(139, 92, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-intro {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

/* Cards (Company, Income, What is it) */
.company-grid, .cards, .income-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.company-card, .card, .income-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.company-card:hover, .card:hover, .income-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(129, 140, 248, 0.4);
    box-shadow: 0 20px 40px -10px rgba(129, 140, 248, 0.2);
    background: rgba(129, 140, 248, 0.05);
}

/* Distinct Card Styles */
.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    filter: grayscale(20%);
    transition: 0.3s;
}

.card:hover .card-image {
    filter: grayscale(0%);
}

.company-icon, .card-icon, .feature-icon-svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    stroke: url(#gradient-stroke); /* Fallback */
    stroke: #818CF8;
    filter: drop-shadow(0 0 10px rgba(129, 140, 248, 0.3));
    transition: all 0.3s ease;
}

.card:hover .card-icon, .company-card:hover .company-icon {
    stroke: #C084FC;
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(192, 132, 252, 0.4));
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon-svg {
    width: 24px;
    height: 24px;
    margin-bottom: 0;
    stroke: #2DD4BF;
    filter: none;
}

.advertise-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1;
}

.advertise-badge span {
    position: relative;
    top: -1px; /* Поднимаем текст на 1px вверх */
}

.advertise-badge svg {
    transform: translateY(1px);
}

.advertise-card ul {
    list-style: none;
    padding-left: 10px; /* Небольшой отступ для всего списка */
}

.advertise-card li {
    padding: 12px 0 12px 30px; /* Увеличил отступ слева с 24px до 30px */
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    margin-left: 15px; /* Добавил марджин всему списку чтобы компенсировать вылет точки */
}

.advertise-card li::before {
    content: '';
    position: absolute;
    left: -10px; /* Сдвинул точку влево за пределы текста */
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateY(-50%) scale(0.8); }
}

.advertise-allowed li::before {
    background: var(--success);
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.4);
}

.advertise-prohibited li::before {
    background: #F87171;
    box-shadow: 0 0 10px rgba(248, 113, 113, 0.4);
}

.format-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.format-icon {
    min-width: 50px;
    height: 50px;
    background: rgba(129, 140, 248, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(129, 140, 248, 0.2);
}

.format-icon svg {
    width: 24px;
    height: 24px;
    stroke: #818CF8;
}

.success-icon svg {
    width: 60px;
    height: 60px;
    stroke: var(--success);
    margin-bottom: 20px;
}

.income-amount {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 15px 0;
}

.income-card-featured {
    background: var(--grad-main);
    border: none;
}

.income-card-featured:hover {
    background: var(--grad-main);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(192, 132, 252, 0.5);
    filter: brightness(1.1);
}

.income-card-featured .income-label,
.income-card-featured p {
    color: rgba(255, 255, 255, 0.9);
}

/* Stats */
.company-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.03);
    padding: 60px;
    border-radius: 30px;
    border: var(--border);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

/* Advertise Section */
.advertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.advertise-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    border: var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.advertise-allowed {
    border-top: 4px solid var(--success);
}

.advertise-prohibited {
    border-top: 4px solid #F87171;
}

.advertise-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.advertise-allowed .advertise-badge {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.advertise-prohibited .advertise-badge {
    background: rgba(248, 113, 113, 0.1);
    color: #F87171;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

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

.advertise-card li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* Format Section */
.format-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-box {
    background: rgba(20, 20, 25, 0.3);
    padding: 50px;
    border-radius: 24px;
    border: var(--glass-border);
    backdrop-filter: blur(20px);
    position: relative;
}

.highlight-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: var(--grad-main);
    z-index: -1;
    opacity: 0.3;
}

/* Testimonials */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-wrapper {
    overflow: hidden;
    border-radius: 30px;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.testimonial-item {
    min-width: 100%;
    background: var(--glass-bg);
    padding: 50px;
    border-radius: 24px;
    border: var(--glass-border);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.avatar-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    object-fit: cover;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.6;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: var(--bg-card);
    color: white;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: var(--border);
    transition: 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    padding-bottom: 5px;
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.slider-btn-prev { left: -60px; }
.slider-btn-next { right: -60px; }

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -30px;
    position: relative;
    z-index: 0;
}

.step h3 {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: var(--border);
    border-radius: 16px;
    margin-bottom: 15px;
    padding: 20px 30px;
    cursor: pointer;
    transition: 0.3s;
}

.faq-item.active {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--primary);
}

.faq-question {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-arrow {
    transition: transform 0.3s ease;
    min-width: 24px;
    margin-left: 15px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 15px;
}

/* Form */
.section-form {
    padding-bottom: 100px;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    border: var(--border);
    position: relative;
    overflow: hidden;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-main);
}

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

.form-group input, .form-group select {
    width: 100%;
    padding: 16px;
    background: var(--input-bg);
    border: var(--border);
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

/* Phone Input Styling */
.phone-input-wrapper {
    display: flex;
    gap: 0;
}

.country-code-select {
    width: 110px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: none !important;
    background-color: var(--input-bg) !important;
}

.phone-number-input {
    flex: 1;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.application-form .cta-button {
    width: 100%;
    margin-top: 20px;
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Footer */
.footer {
    border-top: var(--border);
    padding: 50px 0;
    text-align: center;
    background: #050505;
}

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

/* Language Intro Overlay */
.language-intro {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.language-intro.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.language-modal {
    background: #18181B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(1);
    transition: transform 0.5s ease;
}

.language-intro.hidden .language-modal {
    transform: scale(0.9);
}

.logo-intro {
    margin-bottom: 30px;
}

.logo-image-intro {
    height: 60px;
    width: auto;
    border-radius: 12px;
    margin: 0 auto;
}

.intro-title {
    font-size: 2rem;
    margin-bottom: 10px;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-subtitle {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.language-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.intro-lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row; /* Horizontal alignment */
    align-items: center;
    justify-content: flex-start; /* Align content to the left */
    gap: 20px;
}

.intro-lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.intro-lang-btn .flag-img {
    width: 32px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.intro-lang-btn .lang-name {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Theme Toggle Button */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-main);
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .theme-toggle-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
    transform: scale(1.05);
}

[data-theme="light"] .theme-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.theme-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.theme-icon.sun {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

.theme-icon.moon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

[data-theme="light"] .theme-icon.sun {
    opacity: 1;
    transform: rotate(0) scale(1);
    color: #F59E0B; /* Amber for sun */
}

[data-theme="light"] .theme-icon.moon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

/* Update Mobile Styles for Header Actions */
@media (max-width: 768px) {
    .header-actions {
        order: 2;
        margin-right: 15px;
        gap: 10px;
    }
    
    .language-switcher-container {
        margin-right: 0;
        order: unset;
    }
}

.lang-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 0.95rem;
}

[data-theme="light"] .lang-toggle-btn {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .lang-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .lang-option:hover {
    background: rgba(0, 0, 0, 0.05);
}

.lang-arrow {
    transition: transform 0.3s ease;
}

.language-switcher-container.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 8px;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
}

.language-switcher-container.active .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    width: 100%;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.lang-option.active {
    background: rgba(129, 140, 248, 0.1);
    color: var(--primary);
}

.lang-flag-icon {
    width: 20px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Support Button */
.support-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.support-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
}

/* Media Queries */
@media (max-width: 1024px) {
    .slider-btn-prev { left: 10px; }
    .slider-btn-next { right: 10px; }
    
    .testimonials-slider {
        padding: 0;
    }
}

@media (max-width: 768px) {
    /* Header & Nav */
    .header {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: var(--glass-border);
        padding: 15px 20px;
        background: rgba(9, 9, 11, 0.95); /* More opaque for readability */
        backdrop-filter: var(--glass);
        -webkit-backdrop-filter: var(--glass);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    .header-content {
        justify-content: space-between;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 30px 40px;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-bottom: none;
        height: 100vh;
        overflow-y: auto;
        gap: 25px;
        align-items: center;
        justify-content: flex-start;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-link {
        font-size: 1.3rem; /* Larger touch targets */
        padding: 10px;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
        order: 3;
    }
    
    .language-switcher-container {
        order: 2;
        margin-right: 15px;
        margin-top: 0;
    }

    .logo-image {
        height: 40px;
    }

    .logo-text {
        font-size: 1.3rem;
        position: relative;
        z-index: 1002;
    }

    /* Hero */
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        width: 100%;
        padding: 0 10px;
    }

    /* Grids - Force Single Column */
    .company-grid, .cards, .income-grid, .advertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-card, .card, .income-card, .advertise-card {
        padding: 30px 20px;
    }

    /* Format Section */
    .format-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .highlight-box {
        padding: 30px 20px;
    }

    /* Testimonials */
    .testimonials-slider {
        padding: 0;
        margin-bottom: 60px; /* Space for buttons below */
    }
    
    .testimonial-item {
        padding: 30px 20px;
    }

    /* Move slider buttons below on mobile */
    .slider-btn {
        top: auto;
        bottom: -60px;
        transform: none;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .slider-btn-prev { left: 30%; }
    .slider-btn-next { right: 30%; }

    /* Stats */
    .company-stats {
        padding: 40px 20px;
        gap: 40px;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    /* Form */
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .phone-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .country-code-select, .phone-number-input {
        width: 100% !important;
        border-radius: 12px !important;
        border: var(--border) !important;
    }
    
    /* Prevent zoom on focus for inputs */
    input, select, textarea {
        font-size: 16px !important; 
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .feature-item {
        width: 100%;
        justify-content: center;
    }
    
    .cta-button {
        width: 100%;
        padding: 16px 20px;
        font-size: 1.1rem;
    }
    
    .slider-btn-prev { left: 20%; }
    .slider-btn-next { right: 20%; }
}

/* Disable hover effects on touch devices to prevent sticky states */
@media (hover: none) {
    .company-card:hover, .card:hover, .income-card:hover, .advertise-card:hover {
        transform: none;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        border-color: var(--glass-border);
        background: var(--glass-bg);
    }
    
    /* Keep featured card style */
    .income-card-featured {
        background: var(--grad-main);
    }
    
    .income-card-featured:hover {
        transform: none;
        box-shadow: none;
    }
    
    .nav-link:hover {
        color: var(--text-muted);
        text-shadow: none;
    }
    
    .nav-link:hover::after {
        width: 0;
    }
}
