/* Modern Zoomer / Cyberpunk Aesthetic */
:root {
    /* Colors */
    --bg-dark: #000000;
    --bg-card: #0A0A0A;
    --primary: #8B5CF6; /* Violet */
    --primary-glow: #8B5CF680;
    --secondary: #3B82F6; /* Blue */
    --accent: #F472B6; /* Pink */
    --success: #10B981; /* Green */
    --text-main: #FFFFFF;
    --text-muted: #9CA3AF;
    
    /* Gradients */
    --grad-main: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    --grad-glow: linear-gradient(180deg, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.05) 100%);
    --grad-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    
    /* Effects */
    --glass: blur(12px) saturate(180%);
    --border: 1px solid rgba(255, 255, 255, 0.1);
    --border-hover: 1px solid rgba(139, 92, 246, 0.5);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* 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% 50%, rgba(139, 92, 246, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.15), transparent 25%);
    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: rgba(10, 10, 10, 0.8);
    backdrop-filter: var(--glass);
    border: var(--border);
    border-radius: 100px;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--primary);
}

.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;
}

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

.nav-link-cta {
    background: var(--text-main);
    color: var(--bg-dark) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
}

.nav-link-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    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, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.3));
}

.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(255, 255, 255, 0.05);
    border: var(--border);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button {
    display: inline-block;
    background: var(--grad-main);
    color: white;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
}

.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(--bg-card);
    border: var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.company-card:hover, .card:hover, .income-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* 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 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.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 .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(--bg-card);
    border-radius: 24px;
    padding: 40px;
    border: var(--border);
}

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

.advertise-prohibited {
    border-top: 4px solid var(--accent);
}

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

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

.advertise-prohibited .advertise-badge {
    background: rgba(244, 114, 182, 0.2);
    color: var(--accent);
}

.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: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

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

/* 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: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 30px;
    border: var(--border);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.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-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: 30px;
    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: 10px;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border: var(--border);
    border-radius: 12px;
    color: white;
    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: rgba(0, 0, 0, 0.4) !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;
}

/* 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 Switcher */
.language-switcher {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 100px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.lang-btn.active {
    background: white;
    color: black;
}

/* 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 {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 20px;
        background: rgba(5, 5, 5, 0.95); /* Более темный фон для контраста */
    }

    .header-content {
        justify-content: space-between;
    }
    
    /* Скрываем переключатель языков в шапке на мобильном, чтобы не мешал (добавим его в меню позже или оставим если влезет) 
       Но лучше просто поправить порядок, если он мешает.
       Пока оставим, но убедимся что логотип виден.
    */

    .nav-menu {
        position: fixed;
        top: 70px; /* Высота хедера */
        left: 0;
        right: 0;
        background: #000000;
        flex-direction: column;
        padding: 30px 20px;
        transform: translateY(-150%); /* Прячем наверняка */
        transition: 0.3s ease-in-out;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        height: auto;
        max-height: 80vh;
        overflow-y: auto;
        gap: 20px;
        align-items: center; /* Центрируем пункты меню */
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .logo-text {
        font-size: 1.2rem;
        position: relative;
        z-index: 1002;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
        order: 3; /* Ставим бургер в конец */
    }
    
    .language-switcher {
        order: 2; /* Язык перед бургером или можно скрыть */
        margin-right: 15px;
        margin-top: 0;
    }

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

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

    .section {
        padding: 60px 0;
    }

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

    .company-grid, .cards, .income-grid, .advertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-card, .card, .income-card, .advertise-card {
        padding: 25px;
    }

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

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        background: rgba(10, 10, 10, 0.8);
    }
    
    .slider-btn-prev { left: 0; }
    .slider-btn-next { right: 0; }
    
    .testimonials-slider {
        padding: 0 10px;
    }
    
    .testimonial-item {
        padding: 30px 20px;
    }

    .company-stats {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .phone-input-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .country-code-select {
        width: 100%;
        border-radius: 12px;
    }
    
    .phone-number-input {
        width: 100%;
        border-radius: 12px;
        border-left: var(--border);
    }
    
    /* Improve mobile nav visibility */
    .nav-menu {
        padding-top: 80px;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        height: 100vh;
        justify-content: flex-start;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .language-switcher {
        margin-top: 20px;
    }
}

@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;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}
