/* GLOBAL */
body {
    margin: 0;
    font-family: "Georgia", serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    padding: 20px 40px;
    background: white;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #b9973e;
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    padding: 60px 40px;
    gap: 60px;
}

.hero-left .book-cover {
    width: 330px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.hero-right {
    max-width: 600px;
}

.hero-right h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.sub {
    font-size: 20px;
    color: #666;
    margin-bottom: 24px;
}

.value-prop {
    background: #fff6db;
    padding: 18px 22px;
    font-size: 18px;
    border-left: 4px solid #d4ad47;
    margin-bottom: 30px;
}

/* CTA BUTTONS */
.cta-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.btn {
    padding: 14px 22px;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    border-radius: 6px;
}

.btn.gold {
    background: #d4ad47;
    color: white;
}

.btn.gold:hover {
    background: #b9973e;
}

.btn.outline {
    border: 1px solid #d4ad47;
    color: #b9973e;
    background: white;
}

.btn.outline:hover {
    background: #fff7e1;
}

.trust-row {
    color: #777;
    font-size: 14px;
    margin-top: 8px;
}

/* BENEFITS */
.benefits {
    padding: 70px 40px;
    text-align: center;
}

.benefit-text {
    max-width: 700px;
    margin: 0 auto 30px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    font-size: 18px;
    color: #444;
    line-height: 1.8;
}

/* QUOTES */
.quotes {
    background: #fafafa;
    padding: 80px 40px;
    text-align: center;
}

.quote-card {
    background: white;
    padding: 30px;
    margin: 20px auto;
    max-width: 700px;
    border-radius: 8px;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.quote-card span {
    display: block;
    margin-top: 8px;
    color: #777;
    font-size: 16px;
}

/* TESTIMONIALS */
.testimonials {
    padding: 80px 40px;
    text-align: center;
}

.testimonial-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.testimonial {
    background: white;
    padding: 24px 28px;
    width: 280px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    font-size: 17px;
}

.testimonial span {
    display: block;
    margin-top: 10px;
    color: #777;
    font-size: 15px;
}

/* FINAL CTA */
.final-cta {
    padding: 80px 40px;
    text-align: center;
}

.final-cta h2 {
    font-size: 34px;
    margin-bottom: 16px;
}

.amazon-note {
    color: #777;
    margin-top: 12px;
}

/* FOOTER */
.footer {
    padding: 20px;
    text-align: center;
    color: #777;
    background: #f7f7f7;
    margin-top: 40px;
}

/* MOBILE */
@media (max-width: 900px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .book-cover {
        width: 260px !important;
    }

    .hero-right h1 {
        font-size: 36px;
    }
}
