/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --cyan-color: #06b6d4;
    --green-color: #10b981;
    --orange-color: #f97316;
    --bg-dark: #0a0a1f;
    --bg-darker: #050510;
    --bg-card: rgba(15, 15, 35, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-bg: linear-gradient(180deg, #0a0a1f 0%, #1a0a2e 50%, #0a0a1f 100%);
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    background-image: 
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(139, 92, 246, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(236, 72, 153, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(6, 182, 212, 0.1) 0px, transparent 50%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
}

/* Glass Card Effect */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 31, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    color: var(--primary-color);
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* ========================================
   УЛУЧШЕННЫЙ HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
    width: 100%;
}

/* Улучшенная анимация фона */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.3) 0%, transparent 60%);
    animation: floatGlow 20s infinite ease-in-out;
}

@keyframes floatGlow {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-30px) scale(1.1);
        opacity: 0.5;
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* Улучшенный promo badge */
.promo-badge {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gradient-accent);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
    animation: pulseGlow 2s infinite;
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.4);
    letter-spacing: 0.5px;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 8px 32px rgba(236, 72, 153, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 12px 48px rgba(236, 72, 153, 0.6);
        transform: scale(1.02);
    }
}

/* Улучшенный заголовок */
.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--text-secondary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Features list - компактнее */
.hero-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-bottom: 32px;
    text-align: left;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateX(5px);
}

.hero-feature-item i {
    color: var(--green-color);
    font-size: 16px;
    flex-shrink: 0;
}

/* Stats banner - компактнее */
.hero-stats-banner {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(236, 72, 153, 0.12);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.stat-badge:hover {
    background: rgba(236, 72, 153, 0.2);
    transform: translateY(-3px);
}

.stat-badge i {
    color: var(--accent-color);
    font-size: 18px;
}

/* ========================================
   УЛУЧШЕННЫЕ КНОПКИ - ГЛАВНЫЙ ФОКУС
   ======================================== */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* Buttons */
.btn {
    padding: 18px 36px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

/* Эффект свечения при наведении */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* ГЛАВНАЯ КНОПКА - Попробовать бесплатно */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
    position: relative;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.6);
}

.btn-primary:active {
    transform: translateY(-3px) scale(1.02);
}

/* Вторичная кнопка */
.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.btn-gradient {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.5);
}

/* ОСОБО КРУПНАЯ КНОПКА для героя */
.btn-large {
    padding: 22px 44px;
    font-size: 19px;
    font-weight: 800;
    box-shadow: 0 16px 48px rgba(99, 102, 241, 0.5);
}

.btn-xlarge {
    padding: 26px 52px;
    font-size: 21px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Пульсирующая анимация для главной кнопки */
.pulse {
    animation: pulseButton 2.5s infinite;
}

@keyframes pulseButton {
    0%, 100% { 
        box-shadow: 0 16px 48px rgba(99, 102, 241, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 20px 64px rgba(99, 102, 241, 0.7);
        transform: scale(1.03);
    }
}

/* Trust section */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.trust-item i {
    color: var(--cyan-color);
    font-size: 18px;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.fade-in-delay-1 { animation: fadeIn 0.8s ease 0.15s forwards; opacity: 0; }
.fade-in-delay-2 { animation: fadeIn 0.8s ease 0.3s forwards; opacity: 0; }
.fade-in-delay-3 { animation: fadeIn 0.8s ease 0.45s forwards; opacity: 0; }
.fade-in-delay-4 { animation: fadeIn 0.8s ease 0.6s forwards; opacity: 0; }
.fade-in-delay-5 { animation: fadeIn 0.8s ease 0.75s forwards; opacity: 0; }
.fade-in-delay-6 { animation: fadeIn 0.8s ease 0.9s forwards; opacity: 0; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation */
.scroll-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animation.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section Titles */
.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.benefits-section {
    padding: var(--section-padding);
    width: 100%;
}

.benefits-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.benefits-description {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    padding: 40px;
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: var(--gradient-cyan);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.benefit-icon i {
    font-size: 36px;
    color: white;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.users-badge {
    text-align: center;
    padding: 24px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.users-badge p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Features Detailed */
.features-detailed {
    padding: var(--section-padding);
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
}

.feature-detailed {
    padding: 50px;
    margin-bottom: 40px;
    width: 100%;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    position: relative;
}

.feature-number {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.1);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: var(--gradient-primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.feature-icon-large i {
    font-size: 36px;
    color: white;
}

.feature-title-block h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.feature-tagline {
    font-size: 18px;
    color: var(--text-secondary);
}

.feature-content-block h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--accent-color);
}

.feature-benefits-list {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-item-inline {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
}

.benefit-item-inline i {
    color: var(--cyan-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-sources, 
.feature-tech,
.feature-usecase,
.feature-cta-text {
    padding: 16px 20px;
    background: rgba(236, 72, 153, 0.1);
    border-left: 3px solid var(--accent-color);
    border-radius: 8px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    word-wrap: break-word;
}

.feature-highlights {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.highlight-badge {
    padding: 10px 20px;
    background: var(--gradient-green);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.feature-usecase-list ul {
    list-style: none;
    padding-left: 0;
}

.feature-usecase-list li {
    padding: 8px 0;
    color: var(--text-secondary);
}

.feature-security {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    margin-bottom: 24px;
}

.feature-security i {
    color: var(--green-color);
    font-size: 24px;
    flex-shrink: 0;
}

.corporate-feature {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.corporate-clients {
    margin-bottom: 24px;
}

.client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.tag {
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid rgba(99, 102, 241, 0.4);
}

/* Comparison Section */
.comparison-section {
    padding: var(--section-padding);
    width: 100%;
}

.comparison-header {
    margin-bottom: 60px;
}

.comparison-table-wrapper {
    padding: 40px;
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table thead th {
    padding: 20px;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid var(--border-color);
}

.winner-column {
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px 12px 0 0;
}

.winner-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--gradient-accent);
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 8px;
}

.comparison-table tbody td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.winner-cell {
    background: rgba(99, 102, 241, 0.05);
    color: var(--text-primary);
    font-weight: 600;
}

.comparison-conclusion {
    margin-top: 40px;
}

.conclusion-box {
    padding: 60px;
    text-align: center;
}

.conclusion-box h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.conclusion-box p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding);
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    padding: 40px;
    text-align: center;
    position: relative;
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.pricing-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.pricing-badge.free {
    background: var(--gradient-green);
}

.pricing-badge.day {
    background: var(--gradient-cyan);
}

.pricing-badge.popular-badge {
    background: var(--gradient-accent);
    animation: pulse 2s infinite;
}

.pricing-badge.best {
    background: var(--gradient-primary);
}

.pricing-badge.corporate-badge {
    background: var(--gradient-accent);
}

.pricing-price {
    margin-bottom: 16px;
}

.price-value {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 18px;
    color: var(--text-secondary);
}

.savings-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-green);
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 16px;
}

.pricing-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.pricing-features i {
    color: var(--green-color);
    font-size: 18px;
    flex-shrink: 0;
}

.pricing-footer {
    text-align: center;
}

.payment-info {
    padding: 40px;
}

.payment-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-badge i {
    color: var(--green-color);
    font-size: 24px;
}

.payment-methods {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Cases Section */
.cases-section {
    padding: var(--section-padding);
    width: 100%;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.case-card {
    padding: 40px;
}

.case-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.case-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.case-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}

.case-author {
    font-size: 15px;
    color: var(--cyan-color);
    font-weight: 600;
}

.cases-cta {
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 32px;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    margin-top: 16px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Reviews Section */
.reviews-section {
    padding: var(--section-padding);
    width: 100%;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.trust-stat {
    padding: 32px;
    text-align: center;
}

.trust-number {
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.trust-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    padding: 40px;
}

.review-stars {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 20px;
}

.review-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 24px;
    color: white;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* CTA Final */
.cta-final {
    padding: var(--section-padding);
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
}

.cta-box {
    padding: 80px 60px;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.cta-benefit-item i {
    color: var(--cyan-color);
    font-size: 24px;
}

.cta-note {
    margin-top: 24px;
    font-size: 15px;
    color: var(--text-secondary);
}

.cta-note i {
    color: var(--green-color);
}

.guarantee-badge {
    margin-top: 40px;
    padding: 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-badge i {
    color: var(--green-color);
    font-size: 32px;
    margin-bottom: 12px;
}

.guarantee-badge p {
    color: var(--text-secondary);
    margin-top: 8px;
    font-size: 14px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.security-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
}

.security-badge-item i {
    color: var(--primary-color);
    font-size: 20px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo i {
    color: var(--primary-color);
    font-size: 28px;
}

.footer-column p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 10px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
}

.footer-bottom p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-legal {
    font-size: 13px;
    opacity: 0.7;
}

/* ========================================
   RESPONSIVE DESIGN - МОБИЛЬНАЯ ВЕРСИЯ
   ======================================== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .feature-detailed {
        padding: 30px;
    }
    
    .comparison-table-wrapper {
        padding: 20px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 16px;
    }
    
    body,
    html {
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        overflow-x: hidden;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 31, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }
    
    .hero-content {
        width: 100%;
        padding: 0;
    }
    
    .hero-title {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 14px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .promo-badge {
        font-size: 13px;
        padding: 12px 20px;
        margin-bottom: 20px;
    }
    
    .hero-features-list {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 24px;
    }
    
    .hero-feature-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .stat-badge {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .hero-stats-banner {
        gap: 10px;
        margin-bottom: 28px;
    }
    
    /* Мобильные кнопки */
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 16px 28px;
        font-size: 16px;
        justify-content: center;
    }
    
    .btn-large {
        padding: 18px 32px;
        font-size: 17px;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-top: 4px;
    }
    
    .trust-item {
        font-size: 13px;
        text-align: center;
        justify-content: center;
    }
    
    /* Остальные секции */
    .benefits-grid,
    .cases-grid,
    .reviews-grid,
    .pricing-grid,
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card,
    .case-card,
    .review-card,
    .pricing-card {
        padding: 24px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .feature-detailed {
        padding: 20px;
        margin-bottom: 24px;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .feature-number {
        display: none;
    }
    
    .feature-title-block h3 {
        font-size: 24px;
    }
    
    .feature-tagline {
        font-size: 16px;
    }
    
    .feature-icon-large {
        width: 64px;
        height: 64px;
    }
    
    .feature-icon-large i {
        font-size: 28px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .comparison-table-wrapper {
        padding: 16px;
        margin: 0 -16px;
    }
    
    .comparison-table {
        font-size: 13px;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 8px;
    }
    
    .comparison-table thead th {
        font-size: 14px;
    }
    
    .conclusion-box {
        padding: 32px 20px;
    }
    
    .conclusion-box h3 {
        font-size: 24px;
    }
    
    .footer {
        padding: 40px 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .benefits-description {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .security-badge-item {
        width: 100%;
        justify-content: center;
    }
    
    .payment-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .payment-methods {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0 12px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn {
        font-size: 15px;
        padding: 14px 24px;
    }
    
    .btn-large {
        font-size: 16px;
        padding: 16px 28px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .stat-badge {
        font-size: 11px;
        padding: 7px 12px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .benefit-card,
    .case-card,
    .review-card,
    .pricing-card {
        padding: 20px;
    }
    
    .feature-detailed {
        padding: 16px;
    }
    
    .cta-box {
        padding: 32px 16px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .comparison-table {
        font-size: 12px;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 10px 6px;
    }
}
