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

:root {
    --green-dark: #0F3D2E;
    --green-mid: #1A6B4A;
    --green-bright: #2DBF81;
    --green-light: #D4F5E5;
    --cream: #F7F3EC;
    --cream-dark: #EDE7DA;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #8A8A8A;
    --gold: #C8A96A;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announce-bar {
    background: var(--green-dark);
    color: var(--green-bright);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 20px;
    letter-spacing: 0.04em;
}

.announce-bar span {
    color: var(--gold);
}

/* ── HERO ── */
.hero {
    background: var(--green-dark);
    position: relative;
    overflow: hidden;
    padding: 80px 24px 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(45, 191, 129, 0.07);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(200, 169, 106, 0.06);
}

.hero-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-bright);
    border: 1px solid rgba(45, 191, 129, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.6s 0.1s forwards;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeUp 0.6s 0.25s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--green-bright);
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    max-width: 560px;
    margin: 20px auto 40px;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 0.6s 0.4s forwards;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.6s 0.55s forwards;
}

.btn-primary {
    display: inline-block;
    background: var(--green-bright);
    color: var(--green-dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 500;
    padding: 18px 44px;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    background: #3DD990;
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.hero-guarantee {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-guarantee svg {
    width: 14px;
    height: 14px;
    stroke: var(--green-bright);
}

/* ── SOCIAL PROOF BAR ── */
.proof-bar {
    background: var(--white);
    border-bottom: 1px solid var(--cream-dark);
    padding: 20px 24px;
}

.proof-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}

.proof-stat {
    text-align: center;
}

.proof-stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--green-mid);
    display: block;
    line-height: 1;
}

.proof-stat .lbl {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
    letter-spacing: 0.03em;
}

/* ── SECTIONS ── */
section {
    padding: 80px 24px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--green-mid);
}

.section-body {
    font-size: 17px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 600px;
}

/* ── FOR YOU? ── */
.foryou {
    background: var(--white);
}

.foryou-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.foryou-card {
    padding: 24px;
    border: 1px solid var(--cream-dark);
    border-radius: 16px;
    transition: border-color 0.2s, transform 0.2s;
}

.foryou-card:hover {
    border-color: var(--green-bright);
    transform: translateY(-3px);
}

.foryou-icon {
    width: 40px;
    height: 40px;
    background: var(--green-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
}

.foryou-card h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

.foryou-card p {
    font-size: 14px;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.6;
}

/* ── WHAT'S INSIDE ── */
.inside {
    background: var(--cream);
}

.chapters {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.chapter {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--cream-dark);
    cursor: default;
    transition: padding-left 0.2s;
}

.chapter:hover {
    padding-left: 8px;
}

.chapter:last-child {
    border-bottom: none;
}

.ch-num {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--green-bright);
    min-width: 32px;
    padding-top: 3px;
}

.ch-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.ch-desc {
    font-size: 14px;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.55;
}

.extras-box {
    margin-top: 32px;
    background: var(--green-dark);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.extras-box .ex-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: 6px;
}

.extras-box .ex-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--white);
}

.extras-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.extras-list span {
    font-size: 13px;
    background: rgba(45, 191, 129, 0.15);
    color: var(--green-bright);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(45, 191, 129, 0.25);
}

/* ── TESTIMONIALS ── */
.testimonials {
    background: var(--white);
}

.t-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.t-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.t-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: var(--green-bright);
    opacity: 0.3;
    position: absolute;
    top: 8px;
    left: 20px;
    line-height: 1;
}

.t-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 12px;
}

.t-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-top: 20px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.t-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    flex-shrink: 0;
}

.t-name {
    font-size: 14px;
    font-weight: 500;
}

.t-info {
    font-size: 12px;
    color: var(--text-light);
}

/* ── AUTHOR ── */
.author {
    background: var(--cream);
}

.author-box {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
}

.author-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--white);
    flex-shrink: 0;
    position: relative;
}

.author-img::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--green-bright);
    opacity: 0.4;
}

.author-text {
    flex: 1;
    min-width: 240px;
}

.author-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 4px;
}

.author-text .role {
    font-size: 13px;
    color: var(--green-mid);
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.author-text p {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ── PRICING ── */
.pricing {
    background: var(--white);
}

.price-box {
    max-width: 500px;
    margin: 48px auto 0;
    border: 1.5px solid var(--cream-dark);
    border-radius: 24px;
    overflow: hidden;
}

.price-top {
    background: var(--green-dark);
    padding: 32px;
    text-align: center;
}

.price-tag-label {
    font-size: 12px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.price-old {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-main {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.price-main sup {
    font-size: 24px;
    vertical-align: super;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
}

.price-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 8px;
}

.price-bottom {
    padding: 32px;
}

.price-features {
    list-style: none;
    margin-bottom: 28px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 300;
    padding: 9px 0;
    border-bottom: 1px solid var(--cream-dark);
    color: var(--text-dark);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li svg {
    width: 18px;
    height: 18px;
    stroke: var(--green-bright);
    flex-shrink: 0;
}

.btn-cta-full {
    display: block;
    width: 100%;
    background: var(--green-bright);
    color: var(--green-dark);
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 500;
    padding: 18px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
}

.btn-cta-full:hover {
    background: #3DD990;
    transform: translateY(-2px);
}

.guarantee-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.guarantee-row svg {
    width: 16px;
    height: 16px;
    stroke: var(--green-bright);
}

/* ── FAQ ── */
.faq {
    background: var(--cream);
}

.faq-list {
    margin-top: 48px;
    max-width: 680px;
}

.faq-item {
    border-bottom: 1px solid var(--cream-dark);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-q svg {
    width: 18px;
    height: 18px;
    stroke: var(--green-mid);
    flex-shrink: 0;
    transition: transform 0.25s;
}

.faq-q.open svg {
    transform: rotate(45deg);
}

.faq-a {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s;
}

.faq-a.open {
    max-height: 300px;
    padding-bottom: 20px;
}

/* ── FINAL CTA ── */
.final-cta {
    background: var(--green-dark);
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(45, 191, 129, 0.06);
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.final-cta h2 em {
    font-style: italic;
    color: var(--green-bright);
}

.final-cta p {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.65;
    position: relative;
}

.final-cta .btn-primary {
    position: relative;
}

/* ── FOOTER ── */
footer {
    background: var(--text-dark);
    padding: 32px 24px;
    text-align: center;
}

footer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── URGENCY BADGE ── */
.urgency {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(200, 169, 106, 0.15);
    border: 1px solid rgba(200, 169, 106, 0.3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.urgency-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@media (max-width: 600px) {
    .proof-bar-inner {
        gap: 20px;
    }

    .author-box {
        flex-direction: column;
        align-items: flex-start;
    }
}