* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Золотая тема */
    --orange: #f59f00;
    --orange-hover: #e67700;
    --orange-light: #fff9db;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --border-light: #eef2f6;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #000000;
    --shadow-sm: 0 10px 30px -10px rgba(0,0,0,0.08);
    --shadow-hover: 0 25px 50px -12px rgba(0,0,0,0.15);
    --gradient-hero: linear-gradient(145deg, #fff9f5 0%, #ffffff 50%, #f5f9ff 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 20px;
    overflow: hidden;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--bg-primary));
    pointer-events: none;
    z-index: 0;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    max-width: 800px;
    letter-spacing: -1px;
    color: var(--text-primary);
    text-shadow: 
        1px 1px 0 #ffffff,
        -1px -1px 0 #ffffff,
        1px -1px 0 #ffffff,
        -1px 1px 0 #ffffff;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--orange), #ff9a35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        1px 1px 0 #ffffff,
        -1px -1px 0 #ffffff,
        1px -1px 0 #ffffff,
        -1px 1px 0 #ffffff;
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: #ffffff;
    max-width: 580px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-light);
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.badge i {
    font-size: 12px;
}

.hero-cta {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange), #ff8c35);
    color: white;
    padding: 18px 48px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(245, 159, 0, 0.25);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(245, 159, 0, 0.35);
    background: linear-gradient(135deg, #ff7a45, #ff9d45);
}

.btn-primary i {
    font-size: 16px;
}

.hero-note {
    font-size: 16px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-note i {
    color: #10b981;
    font-size: 16px;
}

/* Stats bar */
.stats-bar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 40px 20px 60px;
    flex-wrap: wrap;
    background-color: var(--bg-primary);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--orange);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: var(--border-light);
    align-self: stretch;
}

/* ===== SECTIONS ===== */
section {
    padding: 20px 20px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--orange);
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ===== WHAT INSIDE ===== */
.what-inside {
    background: var(--bg-secondary);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 159, 0, 0.3);
    box-shadow: var(--shadow-hover);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--orange-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    color: var(--orange);
}

.card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.card-tag {
    display: inline-block;
    margin-top: 20px;
    background: var(--orange-light);
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--bg-primary);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    bottom: 70px;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), transparent);
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 0;
}

.step-number {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--orange), #ff8c35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(245, 159, 0, 0.25);
    position: relative;
    z-index: 1;
    color: white;
}

.step-content {
    padding-top: 12px;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    border-color: rgba(245, 159, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    color: white;
}

.avatar-1 { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.avatar-2 { background: linear-gradient(135deg, #ec4899, #db2777); }
.avatar-3 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.avatar-4 { background: linear-gradient(135deg, #10b981, #059669); }
.avatar-5 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.avatar-6 { background: linear-gradient(135deg, #6366f1, #4f46e5); }

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.stars {
    color: #fbbf24;
    font-size: 14px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.testimonial-result {
    margin-top: 16px;
    padding: 12px 16px;
    background: #e6f7ed;
    border: 1px solid #a7f3d0;
    border-radius: 10px;
    font-size: 14px;
    color: #047857;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Ссылка прямо в тексте отзыва */
.testimonial-inline-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed var(--orange);
    padding-bottom: 1px;
    transition: all 0.2s;
    white-space: nowrap;
}

.testimonial-inline-link:hover {
    color: var(--orange-hover);
    border-bottom-style: solid;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--bg-primary);
    text-align: center;
    padding: 40px 20px;
}

.cta-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 32px;
    padding: 40px 40px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245,159,0,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    position: relative;
    color: var(--text-primary);
}

.cta-box p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    position: relative;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.cta-feature i {
    color: #10b981;
    font-size: 16px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--orange);
    text-decoration: none;
    border-bottom: 1px dashed var(--orange);
    transition: all 0.2s;
}
.footer-links a:hover {
    border-bottom-style: solid;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 24px 0 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-social img {
    width: 32px;
    height: 32px;
    display: block;
}

@media (max-width: 600px) {
    .footer-social {
        gap: 20px;
        margin: 20px 0 16px;
    }
    .footer-social img {
        width: 28px;
        height: 28px;
    }
}

/* ===== SCROLL ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    section { padding: 60px 16px; }
    .stats-bar { gap: 32px; }
    .stat-divider { display: none; }
    .steps::before { display: none; }
    .step { flex-direction: column; gap: 16px; }
    .cta-box { padding: 48px 24px; }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .btn-primary {
        padding: 14px 32px;
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}
/* ===== disclaimer ===== */
.footer-disclaimer {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    line-height: 1.5;
}

.footer-disclaimer i {
    margin-right: 6px;
    color: var(--orange);
}

.footer-disclaimer a {
    color: var(--orange);
    text-decoration: none;
}

.footer-disclaimer a:hover {
    text-decoration: underline;
}

/* Уведомление о переходе в мессенджеры */
.disclaimer-notice {
    text-align: center;
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.disclaimer-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.disclaimer-text strong {
    color: var(--orange);
    font-weight: 600;
}

.disclaimer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.disclaimer-links a {
    color: var(--orange);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s;
}


/* ==== Social Btn Styles ==== */
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 48px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
}

/* Цвета для VK */
.social-btn--vk {
    background: #c94a40;
    border: 1px solid white; 
    box-shadow: 0 8px 32px rgba(230, 126, 34, 0.25);
    color: white;
}

.social-btn--vk:hover {
    background: linear-gradient(135deg, #2787F5, #1A6BC2);
    box-shadow: 0 12px 40px rgba(39, 135, 245, 0.35);
    transform: translateY(-2px);
}

/* Цвета для Telegram */
.social-btn--tg {
    background: #F59F00;
    border: 1px solid white; 
    box-shadow: 0 8px 32px rgba(245, 159, 0, 0.25);
    color: white;
}

.social-btn--tg:hover {
    background: linear-gradient(135deg, #26A5E4, #1E88E5);
    box-shadow: 0 12px 40px rgba(38, 165, 228, 0.35);
    transform: translateY(-2px);
}

/* Иконки внутри кнопок */
.social-btn i {
    font-size: 18px;
}

/* Кнопки соцсетей в финальном CTA */
.cta-box .social-btn {
    width: auto;
    min-width: 260px;
    padding: 12px 24px;
    white-space: nowrap;
    margin: 8px 0;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;   
    text-align: center;      
}

/* Кнопки соцсетей в hero-cta */
.hero-cta .social-btn {
    padding: 12px 24px;         
    min-width: 260px;           
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}