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

:root {
    --primary: #f7931a;
    --dark: #1e1e2e;
    --light: #f8f9fa;
    --success: #27ae60;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: var(--light);
}

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

/* НАВБАР */
.navbar {
    background: var(--dark);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a3e 50%, var(--primary) 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero .small-text {
    font-size: 0.95rem;
    margin-top: 30px;
    opacity: 0.85;
}

/* CTA КНОПКИ */
.cta-button, .cta-button-secondary, .cta-button-large {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px 45px;
    font-size: 1.05rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 147, 26, 0.3);
}

.cta-button:hover, .cta-button-secondary:hover, .cta-button-large:hover {
    background: #e68a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 147, 26, 0.5);
}

.cta-button-secondary {
    background: var(--success);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.cta-button-secondary:hover {
    background: #229954;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
}

.cta-button-large {
    padding: 20px 60px;
    font-size: 1.2rem;
}

/* СЕКЦІЇ */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark);
}

/* STEPS */
.how-to {
    background: white;
}

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

.step {
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.step:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.step-number {
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
}

/* BENEFITS */
.benefits {
    background: white;
}

.benefits-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto 50px;
    background: var(--light);
    padding: 40px;
    border-radius: 12px;
}

.benefits-list li {
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list strong {
    color: var(--primary);
}

/* FAQ */
.faq {
    background: white;
}

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

.faq-item {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.faq-item h4 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.faq-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* TESTIMONIALS */
.testimonials {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a3e 100%);
    color: white;
}

.testimonials h2 {
    color: white;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial strong {
    color: var(--primary);
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(135deg, var(--primary) 0%, #e68a1a 100%);
    color: white;
    text-align: center;
}

.cta-final h2 {
    color: white;
}

.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* FOOTER */
footer {
    background: var(--dark);
    color: #aaa;
    padding: 40px 0 20px;
    text-align: center;
    border-top: 1px solid #333;
}

footer p {
    margin: 10px 0;
    font-size: 0.9rem;
}

footer a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

.disclaimer {
    background: rgba(247, 147, 26, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 3px solid var(--primary);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }

    section {
        padding: 50px 0;
    }

    section h2 {
        font-size: 1.8rem;
    }

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

    .cta-button, .cta-button-secondary {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

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

    section {
        padding: 30px 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
}
