/* ============================================
   EXPLOSIVE GROWTH - Main Stylesheet
   Matches original WordPress theme exactly
   ============================================ */

/* CSS Variables matching original theme */
:root {
    --color-primary: #f23f27;
    --color-dark: #272624;
    --color-text: #322f26;
    --color-heading: #272624;
    --color-light: #fff;
    --font-main: 'Source Sans Pro', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    /* Additional variables for newer pages */
    --color-primary-dark: #C62828;
    --color-primary-light: #FEF0EE;
    --color-charcoal: #1a1a1a;
    --color-gray: #888888;
    --color-gray-light: #e5e5e5;
    --color-off-white: #f7f7f8;
    --color-spark: #FFB74D;
}

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

html {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 17.5px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

@media (max-width: 767px) {
    html {
        font-size: 16.5px;
    }
}

body, p {
    color: var(--color-text);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

/* Typography - matching original */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    font-family: var(--font-main);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.17;
}

h1 {
    font-size: 2.7em;
}

@media (max-width: 767px) {
    h1 {
        font-size: 2.25em;
    }
}

h2 {
    font-size: 1.7em;
}

@media (max-width: 767px) {
    h2 {
        font-size: 1.4em;
    }
}

h3 {
    font-size: 1.3em;
}

@media (max-width: 767px) {
    h3 {
        font-size: 1.15em;
    }
}

p {
    margin: 0 0 14px;
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 767px) {
    .container {
        padding: 0 25px;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--color-primary);
}

.text-underline {
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: 2px;
    white-space: nowrap;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--color-dark);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 18px;
    color: var(--color-primary);
    text-decoration: none;
    line-height: 1.1;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.logo-text span:first-child {
    color: var(--color-primary);
    font-weight: 900;
    font-size: 18px;
}

.logo-tagline {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.logo img {
    width: auto;
    height: 40px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav a {
    color: #fff;
    text-transform: uppercase;
    opacity: 0.7;
    font-weight: 700;
    font-size: 0.75em;
    padding: 10px 12px;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav a:hover,
.nav a.active {
    color: #fff;
    opacity: 1;
}

.nav-cta {
    background-color: var(--color-primary) !important;
    color: #fff !important;
    opacity: 1 !important;
    padding: 10px 22px !important;
    font-size: 0.8em !important;
    font-weight: 700 !important;
    margin-left: 15px !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 8px rgba(242, 63, 39, 0.3) !important;
}

.nav-cta:hover {
    background-color: var(--color-primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 63, 39, 0.4) !important;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown > a::after {
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.6;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f1e1d;
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px !important;
    font-size: 0.8em !important;
    white-space: nowrap;
    color: #fff !important;
    opacity: 0.7;
}

.nav-dropdown-menu a:hover {
    opacity: 1;
    color: #fff !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    display: block;
    transition: all 0.3s;
}

@media (max-width: 767px) {
    .mobile-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 58px;
        left: 0;
        right: 0;
        background: #1f1e1d;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateX(-100%);
        opacity: 0;
        transition: all 0.3s;
    }

    .nav.active {
        transform: translateX(0);
        opacity: 1;
    }

    .nav a {
        width: 100%;
        line-height: 2;
        font-size: 1.1em;
        padding: 10px 0;
        color: #fff;
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 15px !important;
        width: auto !important;
        display: inline-block !important;
    }
}

/* ============================================
   BUTTONS - Modern Light Design
   ============================================ */
.btn {
    display: inline-block;
    font-weight: 700;
    text-transform: none;
    min-width: 180px;
    border-radius: 8px;
    padding: 14px 28px;
    border: none;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    font-size: 0.95em;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 8px rgba(242, 63, 39, 0.25);
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--color-primary-dark);
    color: #fff;
    box-shadow: 0 4px 16px rgba(242, 63, 39, 0.35);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(242, 63, 39, 0.25);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-gray-light);
    color: var(--color-text);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--color-off-white);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: none;
}

.section-dark .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

.section-dark .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

.button-pair {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.button-pair.text-center {
    justify-content: center;
}

@media (max-width: 767px) {
    .btn {
        width: 100%;
    }

    .button-pair {
        flex-direction: column;
    }
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 100px 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
}

/* Section Header with red underline */
.section-header {
    margin-bottom: 20px;
}

.section-header::after {
    content: '';
    width: 45px;
    height: 3px;
    background: var(--color-primary);
    display: block;
    margin: 20px auto;
}

.text-center .section-header::after {
    margin: 20px auto;
}

.sub-head {
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 600;
}

.section-intro {
    margin-bottom: 50px;
}

/* Light Section (default) */
.section-light {
    background: #fff;
}

/* Off-white Section - subtle alternation */
.section-subtle {
    background: var(--color-off-white);
}

/* Dark Section - use sparingly (hero only) */
.section-dark {
    background: var(--color-dark);
    color: #fff;
    position: relative;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
    color: inherit;
}

.section-dark .hero-subtext,
.section-dark .hero-disclaimer {
    color: #6B6B6B;
}

.section-dark .section-header::after {
    margin-left: 0;
}

.section-dark.text-center .section-header::after {
    margin: 20px auto;
}

/* Section stripe overlay */
.section-stripe {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 70px;
    background-image: url(/assets/shape-overlay-stripe.svg);
    background-size: 100% 70px;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.section-stripe-alt {
    background-image: url(/assets/shape-overlay-stripe-2.svg);
}

.section-dark-alt {
    background-image: url(/assets/shape-overlay-stripe-2.svg);
    background-size: 100% 70px;
    background-repeat: no-repeat;
    background-position: left bottom;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding-top: 80px;
    padding-bottom: 60px;
    min-height: auto;
}

.hero .container {
    max-width: 80%;
}

@media (max-width: 959px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

@media (max-width: 959px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .button-pair {
        justify-content: center;
    }
}

.hero h1 {
    font-size: 2.4em;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

@media (max-width: 959px) {
    .hero h1 {
        font-size: 1.9em;
    }
}

.hero-accolades {
    margin-top: 12px;
    margin-bottom: 16px;
}

.hero-accolades p {
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 6px;
    font-weight: 600;
}

.hero-accolades p span {
    font-weight: 400;
    color: var(--color-primary);
}

.hero-book {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-book img {
    max-width: 320px;
    width: 100%;
    position: relative;
    bottom: -20px;
}

@media (max-width: 959px) {
    .hero-book img {
        margin: 30px auto 0;
        max-width: 80%;
        bottom: 0;
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature {
    display: flex;
    gap: 15px;
}

.feature-icon {
    max-height: 42px;
    max-width: 42px;
    margin-top: 10px;
    flex-shrink: 0;
}

.feature h3 {
    margin-bottom: 10px;
}

/* ============================================
   TIPS CAROUSEL
   ============================================ */
.tips-section {
    padding-bottom: 160px;
}

.tips-carousel {
    position: relative;
    min-height: 220px;
}

@media (max-width: 400px) {
    .tips-carousel {
        min-height: 365px;
    }
}

@media (min-width: 401px) and (max-width: 959px) {
    .tips-carousel {
        min-height: 280px;
    }
}

.tip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateX(100px) skewX(-20deg);
}

.tip.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) skewX(0);
}

.tip-icon {
    max-height: 42px;
    max-width: 42px;
    margin: 0 auto 20px;
}

.tip blockquote {
    font-size: 1.8em;
    font-weight: 600;
    line-height: 1.2;
    border: none;
    padding: 0 25px;
    margin: 0;
}

@media (max-width: 767px) {
    .tip blockquote {
        font-size: 1.4em;
    }
}

.tip footer {
    font-size: 0.9em;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1;
    opacity: 0.95;
    padding: 0.5em 0;
    margin-top: 20px;
}

.tip-num {
    background: var(--color-primary);
    padding: 0 0.25em 0.1em;
    font-size: 0.9em;
    font-weight: 500;
    margin-left: 0.25em;
}

/* ============================================
   PEOPLE/AUDIENCE SECTION
   ============================================ */
.people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 767px) {
    .people-grid {
        grid-template-columns: 1fr;
    }
}

.person {
    display: flex;
    gap: 15px;
}

.person-icon {
    max-width: 120px;
    max-height: 140px;
    object-fit: contain;
    object-position: top;
    flex-shrink: 0;
}

.person h3 {
    margin-bottom: 10px;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    padding-bottom: 160px;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 767px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .video-container {
        padding-bottom: 62.5%; /* Slightly taller on mobile for better visibility */
        margin: 0 -20px; /* Extend to edges on mobile */
        border-radius: 0;
    }
    
    .video-container iframe {
        border-radius: 0;
    }
    
    .video-embed {
        margin: 0 -20px; /* Extend container to edges */
    }
}

/* ============================================
   CHAPTERS SECTION
   ============================================ */
.chapters-section {
    padding-bottom: 80px;
}

.book-preview {
    max-width: 480px;
    margin: 0 auto 50px;
    padding-top: 25px;
    background-image: url(/assets/shape_dark_1.svg);
    background-size: 100% 95%;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.book-preview img {
    width: 100%;
}

.chapters-list h3 {
    font-size: 1.5em;
    line-height: 1.35;
    text-transform: none;
    margin-bottom: 5px;
    font-weight: 700;
    margin-top: 30px;
}

.chapters-list h3 .text-highlight {
    display: block;
    font-size: 0.7em;
    text-transform: uppercase;
}

/* ============================================
   BUY CTA SECTION
   ============================================ */
.buy-cta {
    padding: 80px 0 160px;
}

.buy-cta h2 {
    margin-bottom: 30px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding-bottom: 60px;
}

.testimonial-featured {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    position: relative;
    min-height: 400px;
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .testimonial-featured {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

.testimonial-triangle {
    display: block;
    background-image: url(/assets/shape_overlay_testimonial.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: left bottom;
    position: absolute;
    width: 42vw;
    height: 60%;
    bottom: -1px;
    left: -1px;
}

@media (max-width: 767px) {
    .testimonial-triangle {
        height: 80vw;
        width: 90vw;
    }
}

.testimonial-big-img {
    position: absolute;
    max-width: 400px;
    bottom: 0;
    width: 35vw;
}

@media (max-width: 767px) {
    .testimonial-big-img {
        position: relative;
        width: 80vw;
        max-width: 100%;
    }
}

.testimonial-quote {
    background: #f0f0f0;
    padding: 30px;
    border: 0;
    max-width: 645px;
    margin: 20px 0 0 20px;
    position: relative;
    grid-column: 2;
}

@media (max-width: 767px) {
    .testimonial-quote {
        grid-column: 1;
        margin: 0;
    }
}

.testimonial-quote::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50px;
    border-width: 0 0 30px 30px;
    border-style: solid;
    border-color: transparent transparent #f0f0f0 transparent;
}

@media (max-width: 767px) {
    .testimonial-quote::before {
        bottom: -30px;
        top: auto;
        left: 55vw;
        border-width: 30px 30px 0 0;
        border-color: #f0f0f0 transparent transparent transparent;
    }
}

.testimonial-quote::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    border-width: 0 38px 37px 0;
    border-style: solid;
    border-color: transparent var(--color-primary) transparent transparent;
}

.testimonial-quote p {
    font-size: 1.8em;
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text);
}

@media (max-width: 767px) {
    .testimonial-quote p {
        font-size: 1.5em;
    }
}

.testimonial-quote footer {
    margin-top: 20px;
}

.testimonial-quote footer::before {
    content: '';
    width: 15px;
    height: 3px;
    background: var(--color-primary);
    display: block;
    margin: 20px 0;
}

.testimonial-quote .author {
    display: block;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--color-heading);
}

.testimonial-quote .title {
    display: block;
    color: var(--color-text);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial {
    padding: 0 20px;
    font-size: 0.95em;
}

.testimonial-img {
    display: inline-block;
    max-width: 100px;
    position: relative;
    margin: 10px auto 20px;
}

.testimonial-img img {
    border-radius: 50%;
    border: 3px solid #fff;
    position: relative;
    z-index: 10;
    width: 100%;
}

.testimonial-img::after {
    content: '';
    width: 55px;
    height: 55px;
    right: -10px;
    top: -10px;
    border: 2px solid var(--color-primary);
    position: absolute;
    z-index: 1;
    opacity: 0.8;
}

.testimonial p::before {
    content: "\201C";
    font-size: 60px;
    color: #d7d7d7;
    display: block;
    height: 35px;
    line-height: 0.85;
}

.testimonial footer {
    font-size: 0.9em;
    margin-top: 15px;
}

.testimonial footer::before {
    content: '';
    width: 15px;
    height: 3px;
    background: var(--color-primary);
    display: block;
    margin: 20px auto;
}

.testimonial .author {
    display: block;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--color-heading);
}

.testimonial .title {
    display: block;
    color: var(--color-text);
}

/* ============================================
   AUTHOR SECTION
   ============================================ */
.author-section {
    padding: 80px 0;
}

.author-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 20px;
    align-items: stretch;
    position: relative;
}

@media (max-width: 767px) {
    .author-grid {
        grid-template-columns: 1fr;
    }
}

.author-info {
    position: relative;
    z-index: 5;
}

.author-panel {
    background: #20201e;
    padding: 40px 20px;
    position: relative;
}

@media (min-width: 768px) {
    .author-panel {
        position: absolute;
        left: -68vw;
        top: 15%;
        width: 100vw;
        padding-left: calc(68vw - 100%);
    }

    .author-panel > * {
        max-width: 250px;
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .author-panel {
        margin-left: -25px;
        margin-right: -25px;
        padding: 30px 25px;
    }
}

.author-label {
    font-weight: 300;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 7.5px;
    opacity: 0.6;
    display: block;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .author-label {
        position: absolute;
        transform: rotate(-90deg);
        left: -45px;
        top: 80px;
    }
}

.author-name {
    font-size: 62px;
    letter-spacing: -1px;
    margin: 0;
    line-height: 0.85;
    color: #fff;
}

@media (max-width: 767px) {
    .author-name {
        font-size: 48px;
    }
}

.social-links {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.social-links::before {
    content: '';
    width: 97%;
    height: 3px;
    background: var(--color-primary);
    display: block;
    margin-bottom: 15px;
    position: absolute;
    left: 0;
    top: -20px;
}

.social-links a {
    display: block;
    width: 30px;
    height: 30px;
    transition: all 0.5s ease;
    position: relative;
}

.social-links a:hover {
    transform: translateY(-10px);
}

.social-links img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.author-image {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.author-image img {
    max-width: 100%;
    width: 350px;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: bottom;
}

@media (max-width: 767px) {
    .author-image img {
        margin: 0 auto;
    }
}

.author-bio {
    position: relative;
    z-index: 20;
}

.author-bio-panel {
    background: #fff;
    color: var(--color-text);
    padding: 40px;
    font-size: 0.95em;
}

@media (min-width: 768px) {
    .author-bio-panel {
        position: relative;
        left: -80px;
        max-width: 500px;
    }
}

@media (max-width: 767px) {
    .author-bio-panel {
        margin: -20px 0 0;
    }
}

.author-bio p {
    color: var(--color-text);
    margin-bottom: 20px;
}

.author-bio .btn {
    margin-top: 20px;
}

/* ============================================
   SIGNUP SECTION
   ============================================ */
.signup-section {
    padding: 60px 0;
}

.signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 767px) {
    .signup-grid {
        grid-template-columns: 1fr;
    }
}

.signup-content h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.signup-image img {
    width: 490px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    top: -60px;
}

@media (max-width: 767px) {
    .signup-image img {
        top: 0;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-dark);
    color: #fff;
    padding: 40px 0;
}

.footer-social {
    margin-bottom: 30px;
}

.footer-social p {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #fff;
}

.footer-social .social-links {
    justify-content: center;
    position: relative;
}

.footer-social .social-links::before {
    display: none;
}

.footer-social .social-links a {
    width: 28px;
    height: 28px;
}

.footer-press {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-press p {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.footer-press .media-logos {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-press .media-logo {
    height: 20px;
    width: auto;
    opacity: 0.6;
    filter: brightness(0) invert(1);
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-book {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    transition: color 0.2s;
}

.footer-book:hover {
    color: #fff;
}

.footer-book img {
    height: 40px;
    width: auto;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.footer-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
}

.footer-social-links img {
    width: 24px;
    height: 24px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.footer-social-links img:hover {
    opacity: 1;
}

.footer-credit {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1221px) and (min-width: 700px) {
    .author-grid {
        grid-template-columns: 50% 50%;
    }

    .author-info {
        grid-column: 1 / -1;
        order: 1;
    }

    .author-panel {
        position: static;
        width: 100%;
        padding: 30px;
    }

    .author-panel > * {
        max-width: none;
        margin-left: 0;
    }

    .author-label {
        position: static;
        transform: none;
    }

    .author-image {
        order: 2;
    }

    .author-bio {
        order: 3;
        grid-column: 1 / -1;
    }

    .author-bio-panel {
        position: static;
        width: 100%;
        max-width: none;
        opacity: 1;
    }
}

/* ============================================
   LEGEND QUOTES - AI Advisor Responses
   ============================================ */
.legends-say-header {
    margin: 30px 0 14px;
    font-size: 1.05em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-heading);
    line-height: 1.2;
}

.legends-say-header::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 10px;
    background: var(--color-primary);
    opacity: 0.85;
    border-radius: 2px;
}

.legends-say-subheader {
    margin: 0 0 16px;
    color: var(--color-gray);
    font-size: 0.9em;
    font-weight: 600;
}

.legends-section {
    margin-top: 8px;
}

.legends-cards {
    margin-top: 12px;
}

.legend-card-wrap.is-hidden {
    display: none;
}

.legends-toggle {
    margin-top: 10px;
    background: transparent;
    border: 1px solid var(--color-gray-light);
    color: var(--color-text);
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.legends-toggle:hover {
    background: var(--color-off-white);
    border-color: #cfcfcf;
    transform: translateY(-1px);
}

.legends-next-step {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--color-gray-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.legends-next-step-title {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82em;
    color: var(--color-heading);
    margin-bottom: 4px;
}

.legends-next-step-subtitle {
    color: var(--color-gray);
    font-size: 0.92em;
    line-height: 1.45;
}

.legends-next-step-btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    min-height: 44px;
    white-space: nowrap;
}

.legends-next-step-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(242, 63, 39, 0.22);
}

.legend-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 2px;
}

.legend-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 100px;
    background: rgba(242, 63, 39, 0.08);
    border: 1px solid rgba(242, 63, 39, 0.22);
    color: var(--color-primary);
    font-size: 0.7em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.legend-quote-lede {
    font-weight: 800;
    color: var(--color-heading);
}

.legend-quote-rest {
    font-weight: 500;
}

.legend-quote {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--color-off-white);
    border-left: 3px solid var(--color-primary);
    border-radius: 8px;
    margin: 20px 0;
    align-items: flex-start;
}

.legend-quote.no-avatar {
    padding-left: 24px;
}

.legend-avatar-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--color-gray-light);
}

.legend-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
}

.legend-content {
    flex: 1;
    min-width: 0;
    position: relative;
    padding-bottom: 24px;
}

.legend-name {
    display: block;
    font-weight: 700;
    color: var(--color-heading);
    font-size: 1em;
    line-height: 1.2;
}

.legend-book-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82em;
    color: var(--color-gray);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

a.legend-book-badge:hover {
    color: var(--color-primary);
}

.legend-book-thumb {
    height: 24px;
    width: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.legend-quote-text {
    margin: 0;
    font-size: 0.92em;
    line-height: 1.5;
    color: var(--color-text);
}

.legend-book-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-gray);
    font-size: 0.85em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legend-book-link:hover {
    color: var(--color-primary);
}

.legend-book-img {
    height: 18px;
    width: auto;
}

@media (max-width: 767px) {
    .legend-quote {
        gap: 12px;
        padding: 16px;
    }

    .legend-avatar-wrapper {
        width: 44px;
        height: 44px;
    }

    .legend-name {
        font-size: 0.95em;
    }

    .legend-book-badge {
        font-size: 0.78em;
    }

    .legend-quote-text {
        font-size: 0.92em;
    }
}

/* Legend Share Button */
.legend-share {
    position: absolute;
    bottom: 8px;
    right: 8px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px;
    background: transparent;
    border: none;
    color: var(--color-gray);
    cursor: pointer;
    transition: color 0.15s ease;
    min-height: 44px;
    min-width: 44px;
}

.share-btn:hover {
    color: var(--color-text);
}

.share-btn svg {
    opacity: 1;
}

.share-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 8px;
    background: #fff;
    border: 1px solid var(--color-gray-light);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 140px;
    z-index: 100;
}

.share-menu button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 0.85em;
    color: var(--color-text);
    cursor: pointer;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.share-menu button:hover {
    background: var(--color-off-white);
}

.share-menu button svg {
    flex-shrink: 0;
    opacity: 0.7;
}

@media (max-width: 767px) {
    .share-menu {
        min-width: 130px;
    }

    .share-menu button {
        padding: 8px 10px;
        font-size: 0.8em;
    }
}

@media (max-width: 767px) {
    .legends-next-step {
        flex-direction: column;
        align-items: stretch;
    }

    .legends-next-step-btn {
        width: 100%;
    }
}

/* Legend "More" expandable section */
.legend-more {
    margin-top: 8px;
}

.legend-more summary {
    cursor: pointer;
    font-size: 0.85em;
    font-weight: 600;
    color: var(--color-gray);
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    user-select: none;
    padding: 10px 12px;
    border-radius: 10px;
    min-height: 44px;
    background: #fff;
    border: 1px solid var(--color-gray-light);
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.legend-more summary::-webkit-details-marker {
    display: none;
}

.legend-more-label {
    font-weight: 800;
    color: var(--color-text);
}

.legend-more-chev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid var(--color-gray-light);
    background: var(--color-off-white);
    color: var(--color-text);
    font-size: 16px;
    line-height: 1;
    flex: 0 0 auto;
    transition: transform 0.2s ease, background 0.15s ease, border-color 0.15s ease;
}

.legend-more-chev::before {
    content: '▾';
}

.legend-more summary:hover {
    background: var(--color-off-white);
    border-color: #cfcfcf;
    transform: translateY(-1px);
}

.legend-more summary:hover .legend-more-chev {
    background: #fff;
    border-color: #cfcfcf;
}

.legend-more[open] summary {
    background: rgba(0, 0, 0, 0.03);
    color: var(--color-text);
}

.legend-more[open] .legend-more-content {
    background: #fff;
    border: 1px solid var(--color-gray-light);
    border-top: none;
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 10px;
}

.legend-more[open] summary .legend-more-chev {
    transform: rotate(180deg);
}

.legend-more-content {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--color-gray-light);
}

.legend-more-content p {
    font-style: normal;
    font-size: 0.92em;
    color: var(--color-text);
    margin: 0 0 10px 0;
    line-height: 1.65;
}

.legend-more-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   PAGE-LEVEL NAV (framework/chapter pages)
   ============================================ */
.nav > .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav > .nav-inner .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.05em;
    color: var(--color-heading);
    text-decoration: none;
    flex-shrink: 0;
}

.nav > .nav-inner .brand a {
    color: var(--color-heading);
    text-decoration: none;
}

.nav > .nav-inner .badge {
    font-size: 0.65em;
    background: var(--color-off-white);
    color: var(--color-gray);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav > .nav-inner .links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    flex: 1;
}

.nav > .nav-inner .links a {
    color: var(--color-text);
    font-size: 0.88em;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav > .nav-inner .links a:hover {
    background: var(--color-off-white);
    color: var(--color-heading);
}

.nav > .nav-inner .cta {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.nav > .nav-inner .cta .btn {
    font-size: 0.85em;
    padding: 8px 16px;
    min-width: auto;
}

.nav > .nav-inner .cta .btn.primary {
    background: #1A1A1A;
    color: #fff;
}

.nav > .nav-inner .cta .btn.primary:hover {
    background: #333;
}

@media (max-width: 959px) {
    .nav > .nav-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav > .nav-inner .links {
        gap: 2px;
    }

    .nav > .nav-inner .links a {
        font-size: 0.82em;
        padding: 5px 8px;
    }
}

@media (max-width: 767px) {
    .nav > .nav-inner .links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav > .nav-inner .links a {
        width: 100%;
        padding: 10px 0;
        font-size: 1em;
        border-bottom: 1px solid var(--color-gray-light);
    }

    .nav > .nav-inner .cta {
        width: 100%;
        flex-direction: column;
    }

    .nav > .nav-inner .cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    font-size: 0.85em;
    color: var(--color-gray);
    margin: 30px 0 20px;
    padding: 0;
}

.breadcrumbs a {
    color: var(--color-gray);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

/* ============================================
   GRID / CARD LAYOUT
   ============================================ */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 30px 0;
}

.grid > .card {
    grid-column: span 1;
}

.grid > .card:not(.cols-6) {
    grid-column: 1 / -1;
}

.card {
    background: var(--color-light);
    border: 1px solid var(--color-gray-light);
    border-radius: 8px;
    padding: 28px;
}

.card h2 {
    font-size: 1.15em;
    margin-bottom: 12px;
    color: var(--color-heading);
}

.cols-6 {
    /* Half-width card — handled by grid */
}

@media (max-width: 767px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .grid > .card.cols-6 {
        grid-column: 1;
    }

    .card {
        padding: 22px;
    }
}

/* ============================================
   LIST ITEMS
   ============================================ */
.list {
    margin: 0;
    padding: 0;
}

.list > .item {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-light);
    font-size: 0.95em;
    color: var(--color-text);
    line-height: 1.5;
    transition: background 0.15s;
}

.list > .item:last-child {
    border-bottom: none;
}

.list > .item:hover {
    background: var(--color-off-white);
    padding-left: 8px;
}

/* ============================================
   UTILITIES (muted, hr, codeblock, note)
   ============================================ */
.muted {
    color: var(--color-gray);
    font-size: 0.95em;
    line-height: 1.6;
}

.hr {
    border: none;
    border-top: 1px solid var(--color-gray-light);
    margin: 20px 0;
}

.codeblock {
    background: var(--color-off-white);
    border: 1px solid var(--color-gray-light);
    border-radius: 6px;
    padding: 16px 20px;
    font-family: 'SFMono-Regular', Consolas, monospace;
    font-size: 0.88em;
    line-height: 1.6;
    color: var(--color-text);
    overflow-x: auto;
}

.note {
    background: var(--color-primary-light);
    border-left: 3px solid var(--color-primary);
    border-radius: 6px;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: 0.95em;
    line-height: 1.6;
}

/* ============================================
   PAGE FOOTER (inside .container)
   ============================================ */
.container > .footer {
    margin-top: 60px;
    padding: 30px 0;
    font-size: 0.85em;
    color: var(--color-gray);
    text-align: center;
}

.container > .footer a {
    color: var(--color-gray);
}

.container > .footer a:hover {
    color: var(--color-primary);
}

.container > .footer .muted {
    font-size: 0.85em;
    margin-top: 8px;
}

/* ============================================
   NEW DESIGN SYSTEM - Light Header & Modern Cards
   ============================================ */

/* Serif Headline Class */
.headline-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    text-transform: none;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.headline-serif.hero-title {
    font-size: 3.2em;
    color: #fff;
}

@media (max-width: 959px) {
    .headline-serif.hero-title {
        font-size: 2.4em;
    }
}

@media (max-width: 767px) {
    .headline-serif.hero-title {
        font-size: 2em;
    }
}

.hero-title {
    font-size: 2em;
    color: #fff;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
}

@media (max-width: 959px) {
    .hero-title {
        font-size: 1.7em;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.5em;
    }
}

/* Light Header */
.header-light {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-light .logo {
    color: var(--color-primary);
}

.header-light .logo-tagline {
    color: var(--color-gray);
}

.header-light .nav a {
    color: var(--color-text);
    opacity: 1;
    text-transform: none;
    font-weight: 600;
    font-size: 0.9em;
}

.header-light .nav a:hover,
.header-light .nav a.active {
    color: var(--color-primary);
}

.header-light .mobile-toggle span {
    background: var(--color-dark);
}

/* CTA Button for Light Header */
.nav-cta-dark {
    background-color: var(--color-charcoal) !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    transition: all 0.2s ease !important;
}

.nav-cta-dark:hover {
    background-color: #2a2a2a !important;
    transform: translateY(-1px);
}

/* New Button Styles */
.btn-white {
    background: #fff;
    color: var(--color-primary);
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background: #fff;
    color: var(--color-primary-dark);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

.btn-rounded {
    border-radius: 30px;
    text-transform: none;
    font-weight: 700;
}

/* Clean Card Styles */
.card-clean {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 32px;
    border: none;
}

.card-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon-circle svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
    stroke-width: 1.5;
    fill: none;
}

.card-clean h3 {
    font-size: 1.25em;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 12px;
    color: var(--color-heading);
}

.card-clean p {
    font-size: 0.95em;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* Clean Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 959px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Static Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tip-card {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
}

.tip-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 0.85em;
    margin-bottom: 20px;
}

.tip-card blockquote {
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.4;
    border: none;
    padding: 0;
    margin: 0;
    color: #fff;
}

.tip-card footer {
    font-size: 0.85em;
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
    font-weight: 400;
}

@media (max-width: 959px) {
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .tip-card {
        padding: 24px;
    }
}

/* Audience Grid (Who This Book Is For) */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.audience-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 32px;
    text-align: center;
}

.audience-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.audience-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary);
    stroke-width: 1.5;
    fill: none;
}

.audience-card h3 {
    font-size: 1.15em;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 12px;
    color: var(--color-heading);
}

.audience-card p {
    font-size: 0.92em;
    color: var(--color-text);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 959px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        padding: 24px;
    }
}

/* Hero Book Image - Rounded */
.hero-book-rounded img {
    border-radius: 0;
    box-shadow: none;
}

/* Light Header Mobile Styles */
@media (max-width: 767px) {
    .header-light .nav {
        background: #fff;
        border-top: 1px solid #eee;
    }

    .header-light .nav a {
        color: var(--color-text);
        border-bottom: 1px solid #eee;
    }

    .header-light .nav a:hover {
        color: var(--color-primary);
    }
}

/* ============================================
   LIGHT HERO SECTION
   ============================================ */
.hero-light {
    background: var(--color-off-white);
    padding-top: 80px;
    padding-bottom: 50px;
}

.hero-light h1 {
    color: var(--color-heading);
}

.hero-light .hero-accolades p {
    color: var(--color-text);
}

.hero-light .hero-accolades p span {
    color: var(--color-primary);
}

.hero-light .hero-book-rounded img {
    box-shadow: none;
}

@media (max-width: 959px) {
    .hero-light {
        padding-top: 60px;
        padding-bottom: 40px;
    }
}

/* ============================================
   LIGHT TIP CARDS
   ============================================ */
.tip-card-light {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 32px;
    text-align: left;
}

.tip-card-light .tip-number {
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 0.85em;
    margin-bottom: 20px;
}

.tip-card-light blockquote {
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.4;
    border: none;
    padding: 0;
    margin: 0;
    color: var(--color-heading);
}

.tip-card-light footer {
    font-size: 0.85em;
    color: var(--color-gray);
    margin-top: 16px;
    font-weight: 400;
}

/* ============================================
   SIMPLE AUTHOR SECTION (Light)
   ============================================ */
.author-simple {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.author-simple-image img {
    width: 100%;
    border-radius: 12px;
}

.author-simple-content h2 {
    text-transform: none;
    margin-bottom: 8px;
}

.author-simple-content .author-title {
    color: var(--color-gray);
    font-size: 0.95em;
    margin-bottom: 20px;
}

.author-simple-content .social-links {
    margin-top: 20px;
}

.author-simple-content .social-links::before {
    display: none;
}

@media (max-width: 767px) {
    .author-simple {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-simple-image {
        max-width: 200px;
        margin: 0 auto;
    }

    .author-simple-content .social-links {
        justify-content: center;
    }
}

/* ============================================
   VIDEO SECTION LIGHT
   ============================================ */
.video-section-light {
    padding: 80px 0;
}

.video-section-light .video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.video-section-light h2 {
    text-transform: none;
}

@media (max-width: 767px) {
    .video-section-light .video-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .video-section-light .video-embed {
        order: -1; /* Video first on mobile */
    }
    
    .video-section-light .video-container {
        padding-bottom: 62.5%; /* Taller on mobile */
        margin: 0 -20px;
        border-radius: 0;
    }
    
        .video-section-light .video-container iframe {
            border-radius: 0;
        }
    }

/* ============================================
   PREVENT FOUC - Book Images
   ============================================ */
/* Show book images once stylesheet loads (overrides inline critical CSS) */
.styles-loaded .btn-book-icon {
    display: inline-block !important;
}

.styles-loaded img[src*="3dbook"]:not(.btn-book-icon),
.styles-loaded img[src*="book_open"] {
    display: block !important;
}

/* Override section-dark color for disclaimer */
.tool-hero .response-disclaimer,
.section-dark .response-disclaimer,
.response-disclaimer {
    color: #4A4A4A !important;
    opacity: 1 !important;
}
