/* ===================================
   ATLAS - Premium Investment Website
   CSS Styles
   =================================== */

/* CSS Variables */
:root {
    /* Colors - Dark Theme */
    --primary: #00B8FF;
    --primary-dark: #0095CC;
    --primary-light: rgba(0, 184, 255, 0.1);
    --gold: #FFD700;
    --gold-light: rgba(255, 215, 0, 0.1);
    --dark: #0a0e27;
    --dark-blue: #151b2f;
    --dark-card: rgba(255, 255, 255, 0.03);
    --text: #ffffff;
    --text-light: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --white: #ffffff;
    --gray-50: #1a1f35;
    --gray-100: #252b42;
    --gray-200: #2f3654;
    --gray-300: #3a4166;
    --border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--dark);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea {
    font-family: inherit;
    font-size: 1rem;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-tag.center {
    display: block;
    text-align: center;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background: transparent;
    color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

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

.nav-link {
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--dark-blue);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.dropdown-menu a:hover {
    background: rgba(0, 184, 255, 0.1);
    color: var(--primary);
}

/* Desktop buttons */
.nav-buttons-desktop {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile buttons - скрыты на desktop */
.nav-buttons-mobile {
    display: none;
}

.signup-link {
    color: var(--primary);
    font-weight: 600;
}

.signup-link:hover {
    color: var(--primary-dark);
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle - Handled by inline styles */
.mobile-menu-toggle {
    display: none;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    padding: 100px 0 60px;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 184, 255, 0.05) 0%, transparent 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    min-width: 60px;
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: capitalize;
}

.countdown-remaining {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-left: 8px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #e8a54b 0%, #c9a962 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-indicator span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 184, 255, 0.1) 0%, transparent 100%);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ===================================
   FEATURED SECTION
   =================================== */
.featured {
    padding: 60px 0;
    background: var(--dark-blue);
}

.featured-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 40px;
}

.featured-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item {
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-item svg {
    height: 30px;
    width: auto;
    color: var(--text-muted);
}

.brand-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.logo-item:hover .brand-logo {
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    color: var(--primary);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.services-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ===================================
   PRICING/INVESTMENT OFFERS SECTION
   =================================== */
.pricing {
    background: linear-gradient(180deg, #0a1628 0%, #0d1f3c 100%);
    padding: 80px 0;
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.pricing-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.plan-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 4px;
    margin-bottom: 24px;
}

.plan-tab {
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-full);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-tab:hover {
    color: var(--white);
}

.plan-tab.active {
    background: var(--primary);
    color: var(--white);
}

.pricing-notice {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    transition: var(--transition);
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.discount-badge {
    background: rgba(0, 184, 255, 0.2);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 184, 255, 0.5);
    box-shadow: 0 8px 24px rgba(0, 184, 255, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(0, 184, 255, 0.15) 0%, rgba(0, 184, 255, 0.05) 100%);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 184, 255, 0.2);
}

.card-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.plan-rate {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.rate-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
}

.rate-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.card-body {
    margin-bottom: 24px;
}

.plan-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.detail-value {
    font-size: 0.9rem;
    color: var(--white);
}

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

.btn-deposit {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

.btn-deposit:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-deposit.btn-featured {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-deposit.btn-featured:hover {
    background: var(--primary-dark);
}

/* Pricing Responsive */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .plan-tabs {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .plan-tab {
        width: 100%;
    }

    .billing-toggle {
        flex-wrap: wrap;
    }

    .pricing-title {
        font-size: 1.8rem;
    }
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */
.newsletter {
    padding: var(--section-padding) 0;
    background: var(--dark-blue);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.newsletter-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    font-size: 0.95rem;
    color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 184, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.radio-group {
    display: flex;
    gap: 24px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-light);
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* Newsletter Benefits */
.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefits-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.benefits-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.benefits-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.benefit-number {
    font-weight: 600;
    color: var(--primary);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.faq-header {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.faq-decoration {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, transparent 100%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
}

.faq-header .section-title {
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 60px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: var(--transition);
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

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

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

.faq-answer p {
    padding-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--dark-blue);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-form-wrapper {
    max-width: 500px;
}

.contact-form-wrapper .section-title {
    color: var(--white);
}

.contact-image {
    position: relative;
}

.contact-image img {
    border-radius: var(--radius-lg);
}

.contact-bubble {
    position: absolute;
    padding: 12px 20px;
    background: rgba(0, 184, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

.bubble-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.bubble-2 {
    bottom: 20%;
    right: -10%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.bubble-1 {
    animation: float 3s ease-in-out infinite;
}

.bubble-2 {
    animation: float 3s ease-in-out infinite 1.5s;
}

/* ===================================
   TERMS SECTION
   =================================== */
.terms {
    padding: var(--section-padding) 0;
    background: var(--dark);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin: 32px 0 16px;
}

.terms-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 80px 0 30px;
    background: #070a1a;
    color: var(--white);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-disclosure p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.footer-logo .logo-icon {
    width: 30px;
    height: 30px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-wrapper img {
        height: 300px;
    }

    .about-content,
    .newsletter-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-disclosure {
        grid-column: span 2;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* Logo на мобильных - справа */
    .logo {
        order: 2;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 280px;
        max-width: 85vw;
        background: #0a0e17 !important;
        border-right: 2px solid #00B8FF;
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 20px 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        list-style: none;
    }

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

    .nav-menu > li {
        width: 100%;
        margin-bottom: 4px;
    }

    .nav-menu li a,
    .nav-link {
        padding: 14px 16px !important;
        border-radius: 10px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        display: block !important;
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 15px !important;
        font-weight: 500 !important;
    }

    .nav-link:hover,
    .nav-link.active {
        background: #00B8FF !important;
        color: #ffffff !important;
    }

    /* Скрыть desktop кнопки на мобильных */
    .nav-buttons-desktop {
        display: none !important;
    }

    /* Показать mobile кнопки в меню */
    .nav-buttons-mobile {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
        padding: 20px 0 0 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 20px;
        list-style: none;
    }

    .nav-buttons-mobile a {
        display: block !important;
        text-align: center !important;
        padding: 14px 20px !important;
        border-radius: 10px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        font-size: 15px !important;
    }

    .nav-buttons-mobile .signup-link {
        background: rgba(255, 255, 255, 0.08) !important;
        color: #ffffff !important;
    }

    .nav-buttons-mobile .signup-link:hover {
        background: rgba(255, 255, 255, 0.15) !important;
    }

    .nav-buttons-mobile .nav-cta {
        display: block !important;
        background: linear-gradient(135deg, #00B8FF 0%, #0099dd 100%) !important;
        color: #ffffff !important;
        border: none !important;
    }

    .nav-buttons-mobile .nav-cta:hover {
        background: linear-gradient(135deg, #0099dd 0%, #0088cc 100%) !important;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown .dropdown-toggle {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .nav-dropdown .dropdown-arrow {
        color: #ffffff !important;
        opacity: 0.7;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 8px 0 8px 20px;
        display: none;
        background: transparent;
        border: none;
        list-style: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-dropdown .dropdown-menu li {
        margin-bottom: 4px;
    }

    .nav-dropdown .dropdown-menu a {
        padding: 10px 16px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 14px !important;
    }

    .nav-dropdown .dropdown-menu a:hover {
        background: rgba(0, 184, 255, 0.3) !important;
        color: #ffffff !important;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

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

    .countdown {
        flex-wrap: wrap;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-buttons {
        flex-direction: column;
    }

    .services-buttons .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-disclosure {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .contact-bubble {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .countdown-item {
        padding: 10px 12px;
        min-width: 50px;
    }

    .countdown-value {
        font-size: 1.2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .featured-logos {
        gap: 30px;
    }
}

/* Smooth Scroll Offset for Fixed Header */
section[id] {
    scroll-margin-top: 100px;
}

/* Selection Color */
::selection {
    background: var(--primary);
    color: var(--white);
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
