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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #2d0052 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

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

a {
    color: #a78bfa;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c4b5fd;
}

header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
    background: rgba(26, 0, 51, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    height: 50px;
    display: block;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 14px;
    color: #a78bfa;
}

.hero {
    padding: 60px 0;
}

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

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    word-wrap: break-word;
}

.hero-content p {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(167, 139, 250, 0.3);
}

.hero-badge {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    font-size: 13px;
    color: #a0a0a0;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 12px;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 4px;
}

.hero-image {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
}

section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}

section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.step {
    text-align: center;
}

.step-number {
    font-size: 48px;
    color: #a78bfa;
    font-weight: bold;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.step p {
    font-size: 14px;
    color: #a0a0a0;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 30px;
    background: rgba(167, 139, 250, 0.05);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(167, 139, 250, 0.1);
    border-color: rgba(167, 139, 250, 0.4);
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
}

.benefit-card p {
    font-size: 14px;
    color: #a0a0a0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    padding: 40px 30px;
    background: rgba(167, 139, 250, 0.08);
    border: 2px solid rgba(167, 139, 250, 0.2);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #a78bfa;
    background: rgba(167, 139, 250, 0.15);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: #c4b5fd;
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #ffffff;
    border: none;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #ffffff;
}

.pricing-card .subtitle {
    font-size: 13px;
    color: #a0a0a0;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: bold;
    color: #c4b5fd;
    margin: 20px 0;
}

.pricing-card .description {
    font-size: 13px;
    color: #a0a0a0;
    margin-bottom: 25px;
}

.pricing-card .features {
    text-align: left;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(167, 139, 250, 0.2);
    border-bottom: 1px solid rgba(167, 139, 250, 0.2);
    list-style: none;
}

.pricing-card .features li {
    list-style: none;
    padding: 6px 0;
    font-size: 13px;
    color: #a0a0a0;
}

.pricing-card .features li:before {
    content: "\2713 ";
    color: #a78bfa;
    margin-right: 8px;
    font-weight: bold;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    padding: 30px;
    background: rgba(167, 139, 250, 0.05);
    border-left: 4px solid #a78bfa;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.testimonial:hover {
    background: rgba(167, 139, 250, 0.1);
}

.testimonial p {
    font-size: 14px;
    color: #e0e0e0;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 13px;
    font-weight: 600;
    color: #c4b5fd;
}

.faq-list {
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}

.faq-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item h3:hover {
    color: #c4b5fd;
}

.faq-item p {
    font-size: 14px;
    color: #a0a0a0;
}

.final-cta {
    text-align: center;
    padding: 60px 0;
    background: rgba(167, 139, 250, 0.05);
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    padding: 40px 0;
    border-top: 1px solid rgba(167, 139, 250, 0.1);
    text-align: center;
    color: #808080;
    font-size: 13px;
    background: rgba(26, 0, 51, 0.5);
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #a78bfa;
}

footer a:hover {
    color: #c4b5fd;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

section, header, footer {
    width: 100%;
}

/* Медиа-запросы */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-badge {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 15px;
    }
    
    .logo {
        height: 40px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    nav {
        display: none;
    }
    
    .hero-badge {
        flex-direction: column;
    }
    
    .badge {
        width: 100%;
        text-align: center;
    }
    
    .hero-logo {
        max-width: 100%;
        height: auto;
        max-height: 300px;
    }
    
    .hero-image {
        padding: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-logo {
        max-height: 250px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
    }
    
    .badge {
        font-size: 12px;
        padding: 4px 8px;
    }
}
