/* stylesIndex.css - COMPLETELY REDESIGNED */
:root {
    --primary: #7C3AED;       /* Новый основной цвет - фиолетовый */
    --primary-dark: #6D28D9;
    --primary-light: #8B5CF6;
    --accent: #F59E0B;        /* Акцентный цвет - оранжевый */
    --accent-dark: #D97706;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border: #E5E7EB;
    --success: #10B981;
    --error: #EF4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Minimalist */
.header {
    padding: 1.5rem 0;
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* COMPLETELY REDESIGNED HERO SECTION */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F9FAFB 0%, #EDE9FE 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.cta-card {
    background: linear-gradient(145deg, var(--bg-white) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    max-width: 400px;
    width: 100%;
}

.cta-header {
    text-align: center;
    margin-bottom: 2rem;
}

.cta-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cta-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.primary-cta {
    background: var(--primary);
    color: white;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    display: block;
    width: 100%;
}

.primary-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.email-form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
}

.cta-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}



/* Trust Section - New Design */
.trust-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.trust-title {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
    flex: 1;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-align: center;
}

.trust-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    max-width: 150px;
    line-height: 1.3;
}

/* COMPLETELY REDESIGNED HOW IT WORKS SECTION */
.how-it-works {
    padding: 5rem 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.step-visual {
    position: relative;
    flex-shrink: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.step-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
    display: block;
    text-align: center;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.process-cta {
    text-align: center;
}

.secondary-cta {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Benefits - Card Grid */
.benefits-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Comparison - Modern Table */
.comparison-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 0.5rem;
}

.comparison-row.header {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.comparison-row.header div {
    font-weight: 600;
}

.check-icon {
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

.cross-icon {
    color: var(--error);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Final CTA - Emphasis Section */
.final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

.final-btn {
    background: var(--accent);
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.final-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    margin-top: auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    color: #9CA3AF;
    font-size: 0.8rem;
    margin-top: 1rem;
    text-align: center;
}

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

    .header {
        padding: 1rem 0;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 0.75rem 1.5rem;
        width: 100%;
        position: static;
        background: transparent;
        box-shadow: none;
        transform: none;
        opacity: 1;
        padding: 0;
        z-index: auto;
    }

    .nav-links li {
        flex: 1 1 auto;
        text-align: center;
    }

    .nav-links a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1rem;
    }

    .hero-features {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-feature {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .hero-visual {
        margin-top: 1rem;
    }

    .cta-card {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 100%;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .email-input {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .step-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }

    .step-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .step-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .process-cta {
        padding: 2rem 0;
    }

    .secondary-cta {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }

    .how-it-works,
    .trust-section,
    .benefits-section,
    .comparison-section {
        padding: 2.5rem 0;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .trust-badges {
        gap: 1.5rem;
    }

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

    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .comparison-row.header {
        display: none;
    }

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

/* Desktop Enhancements */
@media (min-width: 769px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
    }

    .hero-text {
        text-align: left;
    }

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

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .step-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .comparison-table {
        max-width: 1000px;
    }

    .footer-links {
        justify-content: space-between;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 6rem 0;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .process-step {
        padding: 2.5rem;
    }
}

/* Animation Utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slide-in {
    animation: slideInLeft 0.6s ease-out;
}
