:root {
    --gold-primary: #B8860B; /* Darker gold for better contrast on light bg */
    --gold-light: #DAA520;
    --gold-dark: #8B6508;
    --bg-color: #FAFAFA;
    --bg-secondary: #F3F4F6;
    --text-main: #1F2937;
    --text-muted: #4B5563;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.06);
    --red-alert: #DC2626;
    --green-success: #059669;
}

* {
    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;
}

/* Background glow - soft warm light */
body::before {
    content: '';
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.12) 0%, rgba(250, 250, 250, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

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

.gold-text {
    color: var(--gold-primary);
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.15);
}

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

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

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

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

section {
    padding: 80px 0;
}

/* WARNING BAR */
.warning-bar {
    background: rgba(220, 38, 38, 0.08);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    text-align: center;
    padding: 12px 20px;
    font-size: 0.92rem;
    color: #991B1B;
    letter-spacing: 0.5px;
}

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

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

.badge {
    display: inline-block;
    background: rgba(184, 134, 11, 0.08);
    color: var(--gold-dark);
    border: 1px solid rgba(184, 134, 11, 0.25);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 28px;
    text-transform: uppercase;
    font-weight: 700;
}

.headline {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111827;
}

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

.hero-negatives {
    font-size: 1.15rem;
    color: #111827;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* MOCKUP */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.book-mockup img {
    max-width: 500px;
    width: 100%;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 20px rgba(184, 134, 11, 0.1));
}

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

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

/* BUTTONS */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: #fff;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.25);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 550px;
    border: none;
    cursor: pointer;
    margin: 0 auto;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(184, 134, 11, 0.35);
    background: linear-gradient(135deg, #E6B800, #DAA520);
}

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

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

.pulse {
    animation: pulse 2.2s infinite;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.5); }
    70%  { box-shadow: 0 0 0 18px rgba(184, 134, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0); }
}

.hero-cta-wrap {
    margin-top: 40px;
}

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

/* TYPOGRAPHY BLOCKS */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--gold-dark);
    line-height: 1.3;
}

.mid-headline {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin: 30px 0;
    text-align: center;
}

.paragraph-text {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--text-main);
    text-align: center;
}

.paragraph-text-small {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

.plain-list {
    list-style: none;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-main);
}
.plain-list li {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

/* ALTERNATING BACKGROUNDS */
.bg-secondary {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

/* IDENTIFICATION LIST */
.identification-list {
    list-style: none;
    max-width: 750px;
    margin: 0 auto 30px auto;
}
.identification-list li {
    font-size: 1.1rem;
    padding: 16px 20px;
    margin-bottom: 12px;
    background: var(--glass-bg);
    border-left: 4px solid var(--gold-primary);
    border-radius: 8px;
    color: var(--text-main);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    backdrop-filter: blur(10px);
}

/* GLASS CARDS (Method & Case Studies) */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 38px 28px;
    border-radius: 18px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(184, 134, 11, 0.25);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.glass-card .method-number {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
}

.glass-card h4 {
    color: #111827;
    margin-bottom: 14px;
    font-size: 1.3rem;
}

.glass-card p {
    color: var(--text-muted);
}

/* BULLETS */
.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;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.reveal-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
    border-color: rgba(184, 134, 11, 0.2);
}
.reveal-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* INCLUDES SECTION */
.bonus-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 35px 40px;
    margin-bottom: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.04);
}
.bonus-card.main-product {
    border-color: var(--gold-primary);
    background: rgba(255,255,255,1);
    box-shadow: 0 0 30px rgba(184, 134, 11, 0.1);
}
.bonus-title {
    color: var(--gold-dark);
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.bonus-subtitle {
    font-size: 1.2rem;
    color: #111827;
    margin-bottom: 12px;
}
.bonus-card p {
    color: var(--text-muted);
}

/* QUOTE BLOCK */
.quote-box {
    background: rgba(184, 134, 11, 0.05);
    border-left: 4px solid var(--gold-primary);
    padding: 32px 36px;
    font-style: italic;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 0 12px 12px 0;
    color: var(--gold-dark);
    line-height: 1.8;
}

/* OFFER SECTION */
.offer-box {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 22px;
    padding: 50px 44px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.offer-box h2 {
    font-size: 2.2rem;
    color: #111827;
    margin-bottom: 10px;
}
.offer-box .offer-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.total-value-line {
    margin: 28px 0 6px;
}
.total-value-cross {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.1rem;
}
.today-label {
    display: block;
    color: var(--gold-dark);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.new-price {
    display: block;
    font-size: 3.8rem;
    color: var(--green-success);
    font-weight: 900;
    font-family: 'Cinzel', serif;
    line-height: 1;
}

/* FIT / NOT FIT */
.fit-block {
    margin-bottom: 60px;
}
.fit-list, .not-fit-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}
.fit-list li, .not-fit-list li {
    font-size: 1.1rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.fit-list .icon-check {
    color: var(--green-success);
    font-weight: bold;
}
.not-fit-list .icon-cross {
    color: var(--red-alert);
    font-weight: bold;
}

/* GUARANTEE */
.guarantee-section {
    padding: 60px 0;
    background: #F0FDF4; /* Very light green tint */
    border-top: 1px solid #D1FAE5;
    border-bottom: 1px solid #D1FAE5;
}
.guarantee {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 36px 32px;
    border-radius: 16px;
    border-left: 4px solid var(--green-success);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.06);
}
.guarantee-icon {
    font-size: 3.5rem;
}
.guarantee-text h3 {
    color: var(--green-success);
    margin-bottom: 12px;
}
.guarantee-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* FAQ */
.faq-grid {
    display: grid;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--glass-bg);
    padding: 22px 28px;
    border-radius: 12px;
    border-left: 3px solid var(--gold-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.faq-item summary {
    color: var(--gold-dark);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item p {
    color: var(--text-muted);
    margin-top: 12px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px 0;
    background: #111827; /* Dark footer for contrast */
    color: #9CA3AF;
    font-size: 0.85rem;
}
.footer-links {
    margin: 20px 0;
}
.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    margin: 0 10px;
}
.footer-links a:hover {
    color: var(--gold-light);
}
.disclaimer {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.75rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    section { padding: 48px 0; }
    .hero { padding: 36px 0 30px; }
    .guarantee-section { padding: 36px 0; }
    footer { padding: 28px 0; }

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

    .headline { font-size: 2.1rem; }
    .subheadline { margin-bottom: 20px; }
    .hero-negatives { margin-bottom: 24px; }
    .book-mockup img { max-width: 240px; }
    .hero-content { margin-top: 12px; gap: 20px; }
    .hero-cta-wrap { margin-top: 20px; }

    .section-title { font-size: 1.7rem; margin-bottom: 24px; }
    .mid-headline { font-size: 1.4rem; margin: 20px 0; }
    .glass-grid { margin-top: 24px; gap: 16px; }
    .glass-card { padding: 24px 20px; }

    .bonus-card { padding: 24px 22px; margin-bottom: 18px; }
    .offer-box { padding: 36px 22px; }
    .new-price { font-size: 3rem; }
    .fit-block { margin-bottom: 36px; }
    .faq-item { padding: 18px 20px; }

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