:root {
    --gold-primary: #D4AF37;
    --gold-light: #FFDF73;
    --gold-dark: #997A00;
    --gold-ink: #8A6A00;
    --bg-color: #FAF8F4;
    --text-main: #23262F;
    --text-muted: #6B7280;
    --glass-bg: #FFFFFF;
    --glass-border: #E8E2D3;
    --red-alert: #C0392B;
    --green-success: #0E8A5F;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, .badge, .cta-title {
    font-family: 'Cinzel', serif;
}

.gold-text {
    color: var(--gold-ink);
}

.red-text {
    color: var(--red-alert);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================
   PRE-HEADER WARNING BAR
   =============================== */
.warning-bar {
    background: rgba(192, 57, 43, 0.08);
    border-bottom: 1px solid rgba(192, 57, 43, 0.25);
    text-align: center;
    padding: 12px 20px;
    font-size: 0.92rem;
    color: #7A1F16;
    letter-spacing: 0.5px;
}

.warning-bar strong {
    color: var(--red-alert);
}

/* ===============================
   HERO SECTION
   =============================== */
.hero {
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
}

.badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-ink);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 28px;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
}

.headline {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 22px;
    color: var(--text-main);
}

.subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 50px;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.book-mockup img {
    max-width: 340px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(35, 38, 47, 0.14), 0 0 24px rgba(212, 175, 55, 0.15);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.hero-text {
    max-width: 400px;
    text-align: left;
}

.pain-text {
    font-size: 1.25rem;
    margin-bottom: 30px;
    border-left: 3px solid var(--gold-primary);
    padding-left: 20px;
    color: var(--text-main);
    line-height: 1.6;
}

/* ===============================
   CTA BUTTONS
   =============================== */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #997A00);
    color: #000;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.28);
    transition: all 0.3s ease;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
}

.cta-title {
    display: block;
    font-size: 1.35rem;
    letter-spacing: 1px;
}

.cta-subtitle {
    display: block;
    font-size: 0.88rem;
    opacity: 0.75;
    margin-top: 6px;
    font-weight: normal;
    font-family: 'Inter', sans-serif;
}

.pulse {
    animation: pulse 2.2s infinite;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
    70%  { box-shadow: 0 0 0 18px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.secure-text {
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.secondary-cta-link {
    display: block;
    margin-top: 18px;
    padding: 10px;
    font-size: 0.92rem;
    color: var(--text-muted);
    text-decoration: underline;
    text-align: center;
    transition: color 0.2s ease;
}

.secondary-cta-link:hover {
    color: var(--gold-ink);
}

/* ===============================
   GENERAL SECTIONS
   =============================== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--gold-ink);
    line-height: 1.3;
}

/* ===============================
   PAIN IDENTIFICATION SECTION (+ AGITATION, COMPACT)
   =============================== */
.pain-section {
    background: linear-gradient(to bottom, rgba(250,248,244,0), rgba(192,57,43,0.035), rgba(250,248,244,0));
}

.pain-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 40px;
}

.pain-checklist {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(192, 57, 43, 0.04);
    border: 1px solid rgba(192, 57, 43, 0.18);
    border-radius: 12px;
    padding: 20px 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.pain-item:hover {
    border-color: rgba(192, 57, 43, 0.35);
    transform: translateX(6px);
}

.pain-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pain-item p {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
}

.pain-item p strong {
    color: var(--gold-ink);
}

.pain-closing {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2rem;
    color: var(--gold-ink);
    font-style: italic;
    font-family: 'Cinzel', serif;
}

.agitation-compact {
    max-width: 720px;
    margin: 36px auto 0;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.75;
    padding: 24px 28px;
    background: rgba(212, 175, 55, 0.06);
    border-left: 4px solid var(--gold-primary);
    border-radius: 0 12px 12px 0;
}

.agitation-compact strong {
    color: var(--gold-ink);
}

/* ===============================
   SOLUTION / TURNING POINT SECTION
   =============================== */
.solution {
    background: linear-gradient(to bottom, rgba(250,248,244,0), rgba(212,175,55,0.05), rgba(250,248,244,0));
}

.solution-desc {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-muted);
}

.quote-box {
    background: rgba(212, 175, 55, 0.06);
    border-left: 4px solid var(--gold-primary);
    padding: 32px 36px;
    font-style: italic;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 0 12px 12px 0;
    color: var(--text-main);
    line-height: 1.8;
}

/* ===============================
   WHAT YOU'LL DISCOVER (BULLETS)
   =============================== */
.reveals-section {
    background: var(--bg-color);
}

.reveals-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.reveal-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 26px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(35, 38, 47, 0.05);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.reveal-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
}

.reveal-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    color: #000;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.reveal-item p {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.6;
}

.reveal-item p strong {
    color: var(--gold-ink);
}

/* ===============================
   BONUSES SECTION
   =============================== */
.bonuses {
    background: linear-gradient(to bottom, rgba(250,248,244,0), rgba(212,175,55,0.05), rgba(250,248,244,0));
}

.bonus-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 36px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 18px;
    margin-bottom: 28px;
    box-shadow: 0 2px 10px rgba(35, 38, 47, 0.05);
    transition: border-color 0.3s ease;
}

.bonus-item:hover {
    border-color: rgba(212, 175, 55, 0.35);
}

.bonus-item:last-child {
    margin-bottom: 0;
}

.bonus-img img {
    max-width: 190px;
    border-radius: 10px;
    box-shadow: 0 10px 26px rgba(35, 38, 47, 0.16);
}

.bonus-text {
    flex: 1;
    min-width: 280px;
}

.bonus-tag {
    display: inline-block;
    color: var(--gold-ink);
    font-size: 0.88rem;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bonus-text h3 {
    font-size: 1.7rem;
    margin-bottom: 12px;
    color: var(--text-main);
    font-family: 'Cinzel', serif;
}

.bonus-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 12px;
}

.bonus-value {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.bonus-value .strike {
    text-decoration: line-through;
    opacity: 0.6;
}

.bonus-value strong {
    color: var(--green-success);
    font-size: 1.05rem;
}

/* ===============================
   VALUE STACK / OFFER BOX
   =============================== */
.offer-section {
    background: var(--bg-color);
    padding: 80px 0 100px;
}

.offer-box {
    max-width: 680px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 22px;
    padding: 50px 44px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(35, 38, 47, 0.08);
}

.offer-box h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.offer-box .offer-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.value-stack {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.value-stack td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(35, 38, 47, 0.08);
    font-size: 0.98rem;
    text-align: left;
}

.value-stack td:last-child {
    text-align: right;
}

.value-stack tr:last-child td {
    border-bottom: none;
}

.value-stack .item-label {
    color: var(--text-muted);
}

.value-stack .item-price-cross {
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.6;
}

.value-stack .item-price-free {
    color: var(--green-success);
    font-weight: bold;
}

.value-stack-divider {
    border: none;
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    margin: 8px 0;
}

.total-row td {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: bold;
    padding-top: 18px;
}

.total-value-cross {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: normal;
}

.new-price-box {
    margin: 24px 0 30px;
}

.old-price-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
    margin-bottom: 6px;
}

.new-price {
    display: block;
    font-size: 4.5rem;
    color: var(--green-success);
    font-weight: 900;
    font-family: 'Cinzel', serif;
    line-height: 1;
}

.new-price-sub {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.scarcity {
    color: var(--red-alert);
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 28px;
    display: block;
    letter-spacing: 0.5px;
}

/* ===============================
   TESTIMONIALS SECTION
   =============================== */
.testimonials-section {
    background: linear-gradient(to bottom, rgba(250,248,244,0), rgba(212,175,55,0.05), rgba(250,248,244,0));
}

.testimonials-carousel {
    max-width: 560px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px 26px;
    box-shadow: 0 2px 10px rgba(35, 38, 47, 0.05);
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 22px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--gold-ink);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(35, 38, 47, 0.06);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover {
    border-color: rgba(212, 175, 55, 0.45);
    transform: scale(1.06);
}

.carousel-dots {
    display: flex;
    gap: 9px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
}

.testimonial-stars {
    color: var(--gold-ink);
    font-size: 1.1rem;
    margin-bottom: 14px;
    letter-spacing: 3px;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-card blockquote strong {
    color: var(--text-main);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    color: var(--text-main);
    font-size: 0.95rem;
}

.author-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===============================
   GUARANTEE SECTION
   =============================== */
.guarantee-section {
    padding: 60px 0;
}

.guarantee {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(14, 138, 95, 0.06);
    padding: 36px 32px;
    border-radius: 16px;
    border-left: 4px solid var(--green-success);
}

.guarantee-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.guarantee-text h3 {
    color: var(--green-success);
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-family: 'Cinzel', serif;
}

.guarantee-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===============================
   FAQ SECTION
   =============================== */
.faq-section {
    background: var(--bg-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 22px 28px;
    box-shadow: 0 2px 10px rgba(35, 38, 47, 0.05);
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.35);
}

.faq-item[open] {
    border-color: rgba(212, 175, 55, 0.35);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--gold-ink);
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-top: 14px;
}

/* ===============================
   FOOTER
   =============================== */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(35, 38, 47, 0.08);
    color: var(--text-muted);
    font-size: 0.85rem;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
}

footer a:hover {
    color: var(--gold-ink);
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 768px) {
    section { padding: 48px 0; }

    .hero { padding: 36px 0 30px; }
    .badge { margin-bottom: 16px; }
    .headline { font-size: 2.1rem; margin-bottom: 16px; }
    .subheadline { margin-bottom: 30px; }
    .section-title { font-size: 1.8rem; margin-bottom: 32px; }

    .warning-bar { padding: 10px 16px; font-size: 0.82rem; }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    .pain-text {
        border-left: none;
        border-bottom: 3px solid var(--gold-primary);
        padding-left: 0;
        padding-bottom: 20px;
    }

    .bonus-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .guarantee {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .offer-box {
        padding: 36px 22px;
    }

    .new-price {
        font-size: 3.5rem;
    }

    .offer-section { padding: 48px 0 60px; }
    .guarantee-section { padding: 36px 0; }
    .faq-item { padding: 18px 20px; }
    footer { padding: 28px 0; }
}
