/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background-color: #fafafa;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.highlight {
    color: #e07c3c;
    position: relative;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 40px;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    text-align: center;
}

.btn--primary {
    background: #e07c3c;
    color: #fff;
    box-shadow: 0 8px 20px rgba(224, 124, 60, 0.35);
}

.btn--primary:hover {
    background: #c96a2e;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(224, 124, 60, 0.45);
}

.btn--large {
    padding: 18px 50px;
    font-size: 1.2rem;
}

/* ===== HEADER / HERO ===== */
.hero {
    background: linear-gradient(135deg, #f5f0eb 0%, #e8dfd7 100%);
    padding: 60px 0 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero__content {
    flex: 1 1 55%;
}

.hero__badge {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.badge {
    background: rgba(224, 124, 60, 0.15);
    color: #c96a2e;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.hero__title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 1.2rem;
    color: #3d3d4b;
    max-width: 550px;
    margin-bottom: 32px;
}

.hero__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
}

.stat-label {
    font-size: 0.9rem;
    color: #5a5a6e;
}

.hero__image {
    flex: 1 1 35%;
    display: flex;
    justify-content: center;
}

.hero__image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    background: rgba(224, 124, 60, 0.1);
    border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: #e07c3c;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* ===== BENEFITS ===== */
.benefits {
    padding: 80px 0;
    background: #fff;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #f8f6f4;
    padding: 32px 28px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    border-color: #e07c3c;
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.04);
}

.benefit-card__icon {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.price-high {
    color: #b33c3c;
    font-weight: 600;
}

.price-low {
    color: #2a7a4a;
    font-weight: 600;
}

.benefit-card__note {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #4a4a5e;
    background: rgba(0, 0, 0, 0.03);
    padding: 8px 12px;
    border-radius: 40px;
}

/* ===== STEPS ===== */
.steps {
    padding: 80px 0;
    background: #f5f2ee;
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
}

.step-item {
    background: #fff;
    padding: 28px 22px;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
    border-left: 4px solid #e07c3c;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.step-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #e07c3c;
    opacity: 0.6;
    display: block;
    margin-bottom: 8px;
}

.step-item h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.step-item p {
    color: #3d3d4b;
    font-size: 0.95rem;
}

/* ===== REVIEWS CAROUSEL ===== */
.reviews {
    padding: 80px 0;
    background: #ffffff;
}

.reviews__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews__track-container {
    overflow: hidden;
    width: 100%;
    border-radius: 24px;
}

.reviews__track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    background: #f9f7f5;
    border-radius: 24px;
    padding: 28px 24px;
    border: 1px solid #ede8e2;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    border-color: #e07c3c;
    box-shadow: 0 8px 24px rgba(224, 124, 60, 0.08);
    transform: translateY(-4px);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-card__avatar {
    font-size: 2.8rem;
    line-height: 1;
    background: #ede8e2;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.review-card__name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a2e;
}

.review-card__meta {
    font-size: 0.85rem;
    color: #6a6a7e;
}

.review-card__body {
    flex: 1;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #2d2d3e;
    margin-bottom: 16px;
}

.review-card__body p {
    font-style: italic;
}

.review-card__rating {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-top: auto;
}

/* Кнопки навигации */
.reviews__btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #ddd6ce;
    background: #fff;
    font-size: 1.8rem;
    color: #3d3d4b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    user-select: none;
}

.reviews__btn:hover {
    background: #e07c3c;
    color: #fff;
    border-color: #e07c3c;
    box-shadow: 0 4px 12px rgba(224, 124, 60, 0.3);
}

.reviews__btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Индикаторы (точки) */
.reviews__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.reviews__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d5cec6;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.reviews__dot.active {
    background: #e07c3c;
    width: 32px;
    border-radius: 20px;
}

.reviews__dot:hover {
    background: #c96a2e;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    padding: 40px 0;
    background: #1a1a2e;
    color: #fff;
}

.social-proof__inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.social-proof__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.social-proof__icon {
    font-size: 1.8rem;
}

/* ===== CTA / FORM ===== */
.cta {
    padding: 80px 0;
    background: #fff;
}

.cta__inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.cta__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.form-group input {
    width: 100%;
    padding: 18px 24px;
    border: 1px solid #d0cbc6;
    border-radius: 60px;
    font-size: 1rem;
    background: #f9f7f5;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #e07c3c;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(224, 124, 60, 0.1);
}

.form-agreement {
    font-size: 0.8rem;
    color: #6a6a7e;
    margin-top: 6px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 30px 0;
    background: #12121e;
    color: #a0a0b8;
    font-size: 0.9rem;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer__disclaimer {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .review-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 2.4rem;
    }

    .hero__stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero__image {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .steps__grid {
        grid-template-columns: 1fr 1fr;
    }

    .social-proof__inner {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .review-card {
        flex: 0 0 100%;
    }

    .reviews__btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .reviews__wrapper {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .steps__grid {
        grid-template-columns: 1fr;
    }

    .btn--large {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .hero__badge .badge {
        font-size: 0.75rem;
    }

    .reviews__btn {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
    }
}
