/* ══════════════════════════════════════════════
   Hero Section
══════════════════════════════════════════════ */
.hero {
    background: linear-gradient(145deg, #0B3D2E 0%, #1A6B4A 50%, #0D5038 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 20px 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 151, 58, .15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 138, 96, .3) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content { flex: 1; }

.badge-wrap { margin-bottom: 20px; }

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(90deg, var(--gold-light), #F5D17A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .82);
    max-width: 520px;
    margin-bottom: 28px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.hero-image-wrap {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: floatBook 5s ease-in-out infinite;
}

/* CTA wrapper inside hero */
.hero-cta-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

/* ══════════════════════════════════════════════
   Problem Section
══════════════════════════════════════════════ */
.problem-section {
    padding: 90px 20px;
    background: var(--white);
}

/* ══════════════════════════════════════════════
   Inside Section (Chapters)
══════════════════════════════════════════════ */
.inside-section {
    padding: 90px 20px;
    background: var(--green-pale);
}

/* ══════════════════════════════════════════════
   Reviews Section
══════════════════════════════════════════════ */
.reviews-section {
    padding: 90px 20px;
    background: linear-gradient(145deg, var(--green-dark), var(--green-mid));
}

/* ══════════════════════════════════════════════
   About Section
══════════════════════════════════════════════ */
.about-section {
    padding: 80px 20px;
    background: var(--white);
    text-align: center;
}

/* ══════════════════════════════════════════════
   FAQ Section
══════════════════════════════════════════════ */
.faq-section {
    padding: 80px 20px;
    background: var(--green-pale);
}

/* ══════════════════════════════════════════════
   Payment Section
══════════════════════════════════════════════ */
.payment-section {
    padding: 90px 20px;
    background: var(--bg);
}

/* ══════════════════════════════════════════════
   Guarantee Section
══════════════════════════════════════════════ */
.guarantee-section {
    padding: 70px 20px;
    background: var(--gold-pale);
}

/* ══════════════════════════════════════════════
   Responsive — Tablet (≤ 900px)
══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-pills { justify-content: center; }

    .book-img { width: 240px; }

    .offer-wrap { grid-template-columns: 1fr; }

    .offer-details { padding: 36px 28px; }
}

/* ══════════════════════════════════════════════
   Responsive — Mobile (≤ 600px)
══════════════════════════════════════════════ */
@media (max-width: 600px) {
    .hero { padding: 60px 16px 80px; }

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

    .cta-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }

    .section-title { font-size: 1.5rem; }

    .problems-grid,
    .chapters-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .add-review-form .form-group { flex-direction: column; }

    .urgency-bar { font-size: .82rem; }

    .nx-metric-box {
        bottom: 16px;
        max-width: calc(100% - 32px);
    }

    .nx-metric-box.show {
        transform: translateX(calc(400px + 16px));
    }
}
