:root {
    --background: #ffffff;
    --foreground: #1a1a1a;
    --primary: #c0973f; /* Gold/Premium */
    --primary-foreground: #ffffff;
    --secondary: #1a1a1a; /* Dark/Coal */
    --secondary-foreground: #ffffff;
    --muted: #f4f4f4;
    --muted-foreground: #666666;
    --border: #e2e2e2;
    --accent-red: #d93025; /* Для блоков "Wasting Money" */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* --- ТИПОГРАФИКА --- */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--primary);
}

/* --- КНОПКИ --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--primary-foreground);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(192, 151, 63, 0.3);
}

.btn:hover {
    background-color: #a68235;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(192, 151, 63, 0.4);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    width: 100%;
    max-width: 400px;
}

/* --- СЕКЦИИ --- */
.header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.hero {
    padding: 4rem 0 6rem;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(192, 151, 63, 0.08), transparent),
                radial-gradient(circle at bottom left, rgba(192, 151, 63, 0.05), transparent);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(192, 151, 63, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section {
    padding: 5rem 0;
}

.text-center-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* --- СПИСКИ (Pain Block) --- */
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.check-list li {
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.1rem;
}

.check-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Переопределение для позитивных списков */
.trust-section .check-list li::before {
    content: "✓";
    color: var(--primary);
}

/* --- ГРИДЫ --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* --- КАРТОЧКИ --- */
.step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    font-weight: 800;
    font-size: 1.25rem;
}

.stat-card.text-only {
    background: var(--muted);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: left;
}

.stat-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* --- ФУТЕР --- */
.footer {
    background: var(--secondary);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: left;
}

/* --- УТИЛИТЫ --- */
.sub-cta-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted-foreground);
}

.hero-benefits {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.sub-cta-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* Отступ между иконкой и текстом */
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--muted-foreground);
    letter-spacing: 0.02em;
}

.benefit-icon {
    width: 18px;
    height: 18px;
    color: var(--primary); /* Использует ваш золотой цвет #c0973f */
    flex-shrink: 0;
}

/* На мобилках делаем чуть меньше расстояние */
@media (max-width: 480px) {
    .hero-benefits {
        gap: 0.75rem 1.25rem;
    }
    .sub-cta-text {
        font-size: 0.85rem;
    }
}

.stats-section {
    background-color: #f9f9f9;
}

/* --- МОБИЛЬНАЯ АДАПТАЦИЯ --- */
@media (max-width: 768px) {
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .step-arrow {
        display: none; /* Скрываем стрелки на мобилках */
    }
}

/* --- TRUST BADGES UNDER CTA --- */
.cta-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.cta-trust-badges img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--muted);
}

.testimonial-content {
    flex-grow: 1;
}

.stars {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Адаптация отзывов для мобильных */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cta-trust-badges {
        gap: 1rem;
    }
    
    .cta-trust-badges img {
        height: 44px;
    }
}