@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Josefin+Sans:wght@300;400;600;700&display=swap');

:root {
    --bg-deep: #050810;
    --bg-dark: #0a0e1a;
    --bg-card: #0f1525;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dim: #8a6f30;
    --white: #F5F0E8;
    --white-dim: #b8b0a0;
    --indigo: #1E1B4B;
    --accent-blue: #1a2a5e;
}

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

body {
    background-color: var(--bg-deep);
    color: var(--white);
    font-family: "Josefin Sans", sans-serif;
    overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.container {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ─── HEADER / HERO ─── */
.container > header {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(ellipse at 70% 50%, #0f1f4a 0%, #050810 60%);
    padding: 0 6rem;
    position: relative;
    overflow: hidden;
}

/* Gold radial glow behind book */
.container > header::after {
    content: '';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* ─── NAV ─── */
header > nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    width: 100%;
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

header > nav > .logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

header > nav > ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

header > nav > ul > li > a {
    color: var(--white-dim);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

header > nav > ul > li > a:hover {
    color: var(--gold);
}

/* ─── HERO VIEW ─── */
.container > header > .view {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 0;
}

.container > header > .view > .hero {
    width: 52%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Gold top rule */
.hero::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.hero > .hero-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero > .hero-text > h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
}

.hero > .hero-text > h1:last-child {
    color: var(--gold);
    font-style: italic;
}

.hero > .subheadline {
    font-size: 14px;
    color: var(--white-dim);
    line-height: 1.8;
    letter-spacing: 0.5px;
    max-width: 480px;
}

/* ─── BUTTONS ─── */
.hero > .actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 8px;
}

.btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #050810;
    border: none;
    font-family: "Josefin Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

.btn-secondary {
    padding: 13px 32px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-family: "Josefin Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(201,168,76,0.1);
    transform: translateY(-2px);
}

/* ─── HERO IMAGE ─── */
.view > .image {
    width: 44%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 0.9s ease 0.2s both;
}

.view > .image > img {
    width: 100%;
    max-width: 420px;
    filter: drop-shadow(0 30px 60px rgba(201,168,76,0.25));
    transition: transform 0.4s ease;
}

.view > .image > img:hover {
    transform: translateY(-8px) rotate(1deg);
    filter: drop-shadow(0 40px 80px rgba(201,168,76,0.35));
}

/* ─── SECTION 2 — BOOK SHOWCASE ─── */
.sec2 {
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    position: relative;
    overflow: hidden;
}

/* Subtle diagonal gold accent */
.sec2::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.sec2 > .sec2-book {
    width: 38%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.sec2 > .sec2-book > img {
    width: 100%;
    max-width: 280px;
    filter: drop-shadow(0 20px 50px rgba(201,168,76,0.3));
    transition: transform 0.4s ease;
}

.sec2 > .sec2-book > img:hover {
    transform: translateY(-6px) scale(1.02);
}

.sec2 > .sec2-content {
    width: 62%;
    padding: 50px 60px 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sec2-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.sec2 > .sec2-content > .sec2-title > h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.sec2 > .sec2-content > .sec2-title > h1 > span {
    color: var(--gold);
}

.sec2 > .sec2-content > .sec2-title > p {
    font-size: 13px;
    color: var(--white-dim);
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.sec2-body > p {
    font-size: 15px;
    color: var(--white-dim);
    line-height: 1.8;
    margin-bottom: 16px;
}

.sec2-body > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sec2-body > ul > li {
    font-size: 14px;
    color: var(--white);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.sec2-body > ul > li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 8px;
    top: 5px;
}

.sec2-powerline {
    border-left: 2px solid var(--gold);
    padding-left: 20px;
    margin-top: 8px;
}

.sec2-powerline > p {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.6;
}

/* ─── SHARED LABEL ─── */
.section-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 14px;
}

/* ═══════════════════════════════════════
   SECTION 3 — WHO THIS BOOK IS FOR
═══════════════════════════════════════ */
.sec3 {
    width: 100%;
    padding: 100px 6rem;
    background: var(--bg-deep);
    position: relative;
}

.sec3::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.sec3-header {
    text-align: center;
    margin-bottom: 60px;
}

.sec3-header > h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    max-width: 600px;
    margin: 0 auto;
}

.sec3-header > h2 > span {
    color: var(--gold);
    font-style: italic;
}

.sec3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.sec3-card {
    background: var(--bg-card);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.sec3-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.4);
}

.sec3-card--featured {
    border-color: var(--gold);
    background: linear-gradient(145deg, #0f1a35 0%, #0a1020 100%);
}

.sec3-card--featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 16px; right: -28px;
    background: var(--gold);
    color: #050810;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 36px;
    transform: rotate(45deg);
}

.sec3-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.sec3-card > h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.sec3-card--featured > h3 {
    color: var(--gold);
}

.sec3-card > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sec3-card > ul > li {
    font-size: 13px;
    color: var(--white-dim);
    padding-left: 16px;
    position: relative;
    line-height: 1.6;
}

.sec3-card > ul > li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.sec3-card-glow {
    position: absolute;
    bottom: -40px; right: -40px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ═══════════════════════════════════════
   SECTION 4 — THE PROBLEM
═══════════════════════════════════════ */
.sec4 {
    width: 100%;
    padding: 100px 6rem;
    background: var(--bg-card);
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.sec4-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.sec4-content > h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.sec4-content > h2 > span {
    color: var(--gold);
    font-style: italic;
}

.sec4-intro {
    font-size: 15px;
    color: var(--white-dim);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

.sec4-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 48px;
}

.sec4-list > li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.sec4-list-icon {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.5;
    min-width: 36px;
    line-height: 1;
    padding-top: 2px;
}

.sec4-list > li > div > strong {
    display: block;
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.sec4-list > li > div > p {
    font-size: 13px;
    color: var(--white-dim);
    line-height: 1.7;
}

.sec4-strongline {
    border-left: 2px solid var(--gold);
    padding: 16px 20px;
    background: rgba(201,168,76,0.04);
}

.sec4-strongline > p {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-style: italic;
    color: var(--white-dim);
    line-height: 1.7;
}

.sec4-strongline > p > span {
    color: var(--gold-light);
    font-weight: 600;
}

/* Stat Cards */
.sec4-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 40px;
}

.sec4-stat-card {
    background: var(--bg-deep);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 28px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.sec4-stat-card:hover {
    border-color: rgba(201,168,76,0.4);
}

.sec4-stat-card--gold {
    background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.04) 100%);
    border-color: rgba(201,168,76,0.3);
}

.stat-number {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-unit {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white-dim);
    margin: 6px 0 12px;
}

.sec4-stat-card > p {
    font-size: 12px;
    color: var(--white-dim);
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   SECTION 5 — THE SOLUTION
═══════════════════════════════════════ */
.sec5 {
    width: 100%;
    padding: 100px 6rem;
    background: var(--bg-deep);
    position: relative;
}

.sec5::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.sec5-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.sec5-header {
    text-align: center;
    margin-bottom: 70px;
}

.sec5-header > h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.sec5-header > h2 > span {
    color: var(--gold);
    font-style: italic;
}

.sec5-sub {
    font-size: 14px;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* 2x2 grid of solution items */
.sec5-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-bottom: 60px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.1);
}

.sec5-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 40px 36px;
    background: var(--bg-dark);
    transition: background 0.3s ease;
}

.sec5-item:hover {
    background: var(--bg-card);
}

.sec5-item-icon {
    color: var(--gold);
    min-width: 44px;
    height: 44px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sec5-item-content > h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.sec5-item-content > p {
    font-size: 13px;
    color: var(--white-dim);
    line-height: 1.8;
}

/* Before vs After */
.sec5-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    border: 1px solid rgba(201,168,76,0.15);
    overflow: hidden;
}

.sec5-compare-col {
    padding: 40px;
}

.sec5-compare-before {
    background: rgba(255,60,60,0.04);
}

.sec5-compare-after {
    background: rgba(201,168,76,0.06);
}

.sec5-compare-col > h5 {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 24px;
}

.sec5-compare-before > h5 { color: #e05555; }
.sec5-compare-after > h5 { color: var(--gold); }

.sec5-compare-col > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sec5-compare-before > ul > li {
    font-size: 13px;
    color: var(--white-dim);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.sec5-compare-before > ul > li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #e05555;
    font-size: 11px;
}

.sec5-compare-after > ul > li {
    font-size: 13px;
    color: var(--white);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.sec5-compare-after > ul > li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.sec5-compare-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    background: var(--bg-card);
    border-left: 1px solid rgba(201,168,76,0.1);
    border-right: 1px solid rgba(201,168,76,0.1);
}

.sec5-compare-divider > span {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.6;
}

/* ═══════════════════════════════════════
   SECTION 6 — OUR STORY
═══════════════════════════════════════ */
.sec6 {
    width: 100%;
    padding: 100px 6rem;
    background: var(--bg-card);
    border-top: 1px solid rgba(201,168,76,0.1);
}

.sec6-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Image side */
.sec6-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.sec6-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) brightness(0.85);
    transition: transform 0.5s ease;
}

.sec6-image:hover > img {
    transform: scale(1.03);
}

.sec6-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,8,16,0.7) 0%,
        transparent 50%
    );
    pointer-events: none;
}

/* Gold corner border effect */
.sec6-image::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    right: 30%;
    height: 3px;
    background: var(--gold);
    z-index: 2;
}

.sec6-image::after {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    bottom: 30%;
    width: 3px;
    background: var(--gold);
    z-index: 2;
}

.sec6-image-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 3;
}

.sec6-image-tag > span {
    background: var(--gold);
    color: #050810;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
}

/* Content side */
.sec6-content > h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 32px;
}

.sec6-content > h2 > span {
    color: var(--gold);
    font-style: italic;
}

.sec6-narrative {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.sec6-narrative > p {
    font-size: 15px;
    color: var(--white-dim);
    line-height: 1.8;
}

.sec6-narrative > p > strong {
    color: var(--white);
}

.sec6-narrative > p > em {
    color: var(--gold-light);
    font-style: italic;
}

.sec6-reveal {
    display: flex;
    gap: 16px;
    align-items: center;
    background: rgba(201,168,76,0.06);
    border-left: 3px solid var(--gold);
    padding: 20px 24px;
    margin-bottom: 28px;
}

.sec6-reveal-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.sec6-reveal > p {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    color: var(--white);
    line-height: 1.4;
}

.sec6-reveal > p > strong {
    color: var(--gold-light);
}

.sec6-cta {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.sec6-cta-note {
    font-size: 12px;
    color: var(--white-dim);
    line-height: 1.6;
    max-width: 340px;
}

/* ═══════════════════════════════════════
   SECTION 7 — OFFER STACK
═══════════════════════════════════════ */
.sec7 {
    width: 100%;
    padding: 100px 6rem;
    background: var(--bg-deep);
    position: relative;
}

.sec7::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.sec7-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.sec7-header {
    text-align: center;
    margin-bottom: 60px;
}

.sec7-header > h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
}

.sec7-header > h2 > span {
    color: var(--gold);
    font-style: italic;
}

.sec7-sub {
    font-size: 14px;
    color: var(--white-dim);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.sec7-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}

.sec7-card {
    background: var(--bg-card);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.sec7-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,76,0.35);
}

.sec7-card--featured {
    border-color: var(--gold);
    background: linear-gradient(160deg, #0f1e3e 0%, #080e1e 100%);
    transform: translateY(-10px);
}

.sec7-card--featured:hover {
    transform: translateY(-16px);
}

.sec7-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #050810;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 20px;
    white-space: nowrap;
}

.sec7-tier {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.sec7-card-top > h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.sec7-tier-sub {
    font-size: 12px;
    color: var(--white-dim);
    letter-spacing: 0.5px;
}

.sec7-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 16px 0;
}

.sec7-price-from {
    font-size: 12px;
    color: var(--white-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sec7-price-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.sec7-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.sec7-features > li {
    font-size: 13px;
    color: var(--white-dim);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.sec7-card--featured .sec7-features > li {
    color: var(--white);
}

.check {
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.sec7-btn {
    width: 100%;
    text-align: center;
}

.sec7-guarantee {
    text-align: center;
    font-size: 12px;
    color: var(--white-dim);
    letter-spacing: 0.5px;
    opacity: 0.7;
}

/* ═══════════════════════════════════════
   SECTION 8 — ABOUT THE AUTHOR
═══════════════════════════════════════ */
.sec8 {
    width: 100%;
    padding: 100px 6rem;
    background: var(--bg-card);
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.sec8-inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.sec8-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.sec8-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(15%) brightness(0.85);
    transition: transform 0.5s ease;
}

.sec8-image:hover > img {
    transform: scale(1.03);
}

.sec8-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,8,16,0.6) 0%, transparent 60%);
}

/* Gold corner — bottom right */
.sec8-image::before {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    left: 30%;
    height: 3px;
    background: var(--gold);
    z-index: 2;
}

.sec8-image::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    top: 30%;
    width: 3px;
    background: var(--gold);
    z-index: 2;
}

.sec8-credentials {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0;
    z-index: 3;
}

.sec8-credentials > span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #050810;
    background: var(--gold);
    padding: 5px 16px;
    border-right: 1px solid rgba(5,8,16,0.2);
}

.sec8-credentials > span:last-child {
    border-right: none;
}

.sec8-content > h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 8px;
}

.sec8-content > h2 > span {
    color: var(--gold);
    font-style: italic;
}

.sec8-title-tag {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 28px;
    display: block;
}

.sec8-bio {
    font-size: 15px;
    color: var(--white-dim);
    line-height: 1.9;
    margin-bottom: 36px;
    max-width: 480px;
}

.sec8-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 36px;
}

.sec8-pillar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-deep);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 14px 18px;
    transition: border-color 0.3s ease;
}

.sec8-pillar:hover {
    border-color: rgba(201,168,76,0.35);
}

.sec8-pillar-icon {
    font-size: 18px;
}

.sec8-pillar > span:last-child {
    font-size: 12px;
    color: var(--white);
    letter-spacing: 0.5px;
    font-weight: 600;
}

.sec8-mission {
    border-left: 2px solid var(--gold);
    padding: 16px 20px;
    background: rgba(201,168,76,0.04);
}

.sec8-mission > p {
    font-size: 12px;
    color: var(--white-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.sec8-mission > blockquote {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-style: italic;
    color: var(--gold-light);
    line-height: 1.5;
}

/* ═══════════════════════════════════════
   SECTION 9 — FINAL CTA
═══════════════════════════════════════ */
.sec9 {
    width: 100%;
    padding: 120px 6rem;
    background: var(--bg-deep);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sec9-bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Top gold line */
.sec9::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold);
}

.sec9-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.sec9-inner > h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
}

.sec9-inner > h2 > span {
    color: var(--gold);
    font-style: italic;
    display: block;
}

.sec9-checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 28px 40px;
    width: 100%;
}

.sec9-checklist > p {
    font-size: 15px;
    color: var(--white-dim);
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
}

.sec9-checklist > p::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.sec9-sub {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-style: italic;
    color: var(--gold-light);
}

.sec9-actions {
    margin-top: 8px;
}

.sec9-btn {
    padding: 18px 56px;
    font-size: 14px;
    letter-spacing: 3px;
}

.sec9-options {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--white-dim);
}

.sec9-options > span > strong {
    color: var(--gold);
}

.sec9-dot {
    color: var(--gold);
    opacity: 0.4;
}

.sec9-lock {
    font-size: 11px;
    color: var(--white-dim);
    letter-spacing: 0.5px;
    opacity: 0.6;
}

/* ─── FOOTER ─── */
footer {
    width: 100%;
    padding: 30px 6rem;
    background: #030508;
    border-top: 1px solid rgba(201,168,76,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer > p {
    font-size: 11px;
    color: var(--white-dim);
    opacity: 0.5;
    letter-spacing: 0.5px;
}

footer > .footer-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 2px;
    opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════
   MEDIA QUERIES — TABLET (max-width: 1024px)
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

    /* Header / Hero */
    .container > header { padding: 0 3rem; }
    .hero > .hero-text > h1 { font-size: 40px; }
    .view > .image > img { max-width: 320px; }

    /* Sec 2 */
    .sec2 > .sec2-content { padding: 40px 30px 40px 10px; }
    .sec2 > .sec2-content > .sec2-title > h1 { font-size: 32px; }

    /* Sec 3 */
    .sec3 { padding: 80px 3rem; }
    .sec3-header > h2 { font-size: 34px; }

    /* Sec 4 */
    .sec4 { padding: 80px 3rem; }
    .sec4-inner { grid-template-columns: 1fr 300px; gap: 40px; }
    .sec4-content > h2 { font-size: 34px; }

    /* Sec 5 */
    .sec5 { padding: 80px 3rem; }
    .sec5-header > h2 { font-size: 34px; }

    /* Sec 6 */
    .sec6 { padding: 80px 3rem; }
    .sec6-inner { gap: 50px; }
    .sec6-content > h2 { font-size: 34px; }

    /* Sec 7 */
    .sec7 { padding: 80px 3rem; }
    .sec7-header > h2 { font-size: 34px; }
    .sec7-card--featured { transform: translateY(-6px); }
    .sec7-card--featured:hover { transform: translateY(-12px); }

    /* Sec 8 */
    .sec8 { padding: 80px 3rem; }
    .sec8-inner { grid-template-columns: 320px 1fr; gap: 50px; }
    .sec8-content > h2 { font-size: 34px; }

    /* Sec 9 */
    .sec9 { padding: 80px 3rem; }
    .sec9-inner > h2 { font-size: 40px; }

    /* Footer */
    footer { padding: 24px 3rem; }
}

/* ═══════════════════════════════════════════════════════
   MEDIA QUERIES — MOBILE (max-width: 768px)
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ─── HERO ─── */
    .container > header {
        padding: 0 1.5rem;
        min-height: auto;
        padding-bottom: 3rem;
    }

    header > nav > ul { display: none; }

    .container > header > .view {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding: 2.5rem 0;
    }

    .container > header > .view > .hero {
        width: 100%;
        gap: 20px;
    }

    .hero > .hero-text > h1 { font-size: 34px; line-height: 1.2; }

    .hero > .subheadline { font-size: 13px; max-width: 100%; }

    .hero > .actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }

    .view > .image {
        width: 100%;
        justify-content: center;
    }

    .view > .image > img {
        max-width: 260px;
    }

    /* ─── SECTION 2 ─── */
    .sec2 {
        flex-direction: column;
        padding: 60px 1.5rem;
        min-height: auto;
    }

    .sec2 > .sec2-book {
        width: 100%;
        padding: 0 0 30px;
        justify-content: center;
    }

    .sec2 > .sec2-book > img { max-width: 200px; }

    .sec2 > .sec2-content {
        width: 100%;
        padding: 0;
        gap: 20px;
    }

    .sec2 > .sec2-content > .sec2-title > h1 { font-size: 30px; }
    .sec2-powerline > p { font-size: 17px; }

    /* ─── SECTION 3 ─── */
    .sec3 { padding: 70px 1.5rem; }
    .sec3-header > h2 { font-size: 28px; }

    .sec3-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sec3-card--featured {
        transform: none;
        order: -1;
    }

    .sec3-card--featured::before {
        right: 16px;
        top: 16px;
        transform: none;
        padding: 4px 10px;
    }

    /* ─── SECTION 4 ─── */
    .sec4 { padding: 70px 1.5rem; }

    .sec4-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sec4-content > h2 { font-size: 28px; }
    .sec4-intro { font-size: 14px; }

    .sec4-visual {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px;
        position: static;
    }

    .sec4-stat-card {
        flex: 1;
        min-width: calc(50% - 7px);
        padding: 20px 16px;
    }

    .stat-number { font-size: 42px; }

    /* ─── SECTION 5 ─── */
    .sec5 { padding: 70px 1.5rem; }
    .sec5-header > h2 { font-size: 28px; }
    .sec5-sub { font-size: 12px; }

    .sec5-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .sec5-item { padding: 28px 24px; }

    .sec5-compare {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .sec5-compare-divider {
        width: 100%;
        height: 48px;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(201,168,76,0.1);
        border-bottom: 1px solid rgba(201,168,76,0.1);
    }

    .sec5-compare-col { padding: 28px 24px; }

    /* ─── SECTION 6 ─── */
    .sec6 { padding: 70px 1.5rem; }

    .sec6-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sec6-image {
        aspect-ratio: 4/3;
        max-height: 320px;
    }

    .sec6-content > h2 { font-size: 28px; }
    .sec6-reveal > p { font-size: 18px; }

    .sec6-cta { align-items: stretch; }
    .sec6-cta > .btn-primary { text-align: center; }

    /* ─── SECTION 7 ─── */
    .sec7 { padding: 70px 1.5rem; }
    .sec7-header > h2 { font-size: 28px; }
    .sec7-sub { font-size: 13px; }

    .sec7-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sec7-card--featured {
        transform: none;
        order: -1;
    }

    .sec7-card--featured:hover { transform: translateY(-6px); }

    .sec7-badge {
        top: -13px;
        font-size: 9px;
    }

    .sec7-price-num { font-size: 40px; }
    .sec7-guarantee { font-size: 11px; }

    /* ─── SECTION 8 ─── */
    .sec8 { padding: 70px 1.5rem; }

    .sec8-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sec8-image {
        aspect-ratio: 4/3;
        max-height: 360px;
    }

    .sec8-content > h2 { font-size: 28px; margin-bottom: 6px; }

    .sec8-pillars { grid-template-columns: 1fr; gap: 10px; }

    .sec8-mission > blockquote { font-size: 17px; }

    /* ─── SECTION 9 ─── */
    .sec9 { padding: 80px 1.5rem; }
    .sec9-inner > h2 { font-size: 32px; }
    .sec9-sub { font-size: 18px; }

    .sec9-checklist {
        padding: 22px 24px;
        gap: 12px;
    }

    .sec9-checklist > p { font-size: 14px; }

    .sec9-btn {
        padding: 16px 32px;
        font-size: 13px;
        width: 100%;
    }

    .sec9-options {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .sec9-dot { display: none; }
    .sec9-lock { font-size: 10px; text-align: center; }

    /* ─── FOOTER ─── */
    footer {
        flex-direction: column;
        gap: 10px;
        padding: 24px 1.5rem;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════
   MEDIA QUERIES — SMALL MOBILE (max-width: 420px)
═══════════════════════════════════════════════════════ */
@media (max-width: 420px) {

    .hero > .hero-text > h1 { font-size: 28px; }
    .sec2 > .sec2-content > .sec2-title > h1 { font-size: 26px; }

    .sec3-header > h2,
    .sec4-content > h2,
    .sec5-header > h2,
    .sec6-content > h2,
    .sec7-header > h2,
    .sec8-content > h2 { font-size: 24px; }

    .sec9-inner > h2 { font-size: 26px; }

    /* Stack stat cards vertically on very small screens */
    .sec4-visual { flex-direction: column; }
    .sec4-stat-card { min-width: 100%; }

    .sec9-checklist { padding: 18px 16px; }
    .sec9-btn { letter-spacing: 1px; }
}

/* ═══════════════════════════════════════
   GLOBAL FONT SIZE INCREASE
═══════════════════════════════════════ */
body { font-size: 16px; }

.hero > .subheadline         { font-size: 16px; }
.sec2-body > p               { font-size: 17px; }
.sec2-body > ul > li         { font-size: 16px; }
.sec2-powerline > p          { font-size: 22px; }
.sec3-card > ul > li         { font-size: 15px; }
.sec4-intro                  { font-size: 17px; }
.sec4-list > li > div > strong { font-size: 16px; }
.sec4-list > li > div > p    { font-size: 15px; }
.sec4-strongline > p         { font-size: 22px; }
.sec4-stat-card > p          { font-size: 14px; }
.sec5-item-content > p       { font-size: 15px; }
.sec6-narrative > p          { font-size: 17px; }
.sec6-reveal > p             { font-size: 24px; }
.sec7-features > li          { font-size: 15px; }
.sec7-sub                    { font-size: 16px; }
.sec7-guarantee              { font-size: 14px; }
.sec8-bio                    { font-size: 16px; }
.sec8-pillar > span:last-child { font-size: 14px; }
.sec8-mission > blockquote   { font-size: 22px; }
.sec9-checklist > p          { font-size: 17px; }
.sec9-sub                    { font-size: 26px; }
.sec9-options                { font-size: 15px; }

/* ═══════════════════════════════════════
   BESTSELLER BADGE — SECTION 2
═══════════════════════════════════════ */
.sec2-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.sec2-bestseller {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 8px 14px;
}

.sec2-bestseller > img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.sec2-bestseller > span {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.5px;
    line-height: 1.5;
    font-weight: 600;
}

/* ═══════════════════════════════════════
   VIDEO MODAL
═══════════════════════════════════════ */
.video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5,8,16,0.92);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.video-modal-box {
    width: 100%;
    max-width: 820px;
    background: var(--bg-card);
    border: 1px solid rgba(201,168,76,0.25);
    position: relative;
    transform: translateY(24px);
    transition: transform 0.3s ease;
}

.video-modal-overlay.active .video-modal-box {
    transform: translateY(0);
}

.video-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: #050810;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s ease;
}

.video-modal-close:hover { background: var(--gold-light); }

.video-modal-title {
    padding: 20px 28px 16px;
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.video-modal-title > span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.video-modal-title > h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.video-modal-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.video-modal-player > video,
.video-modal-player > iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

@media (max-width: 768px) {
    .video-modal-overlay { padding: 16px; align-items: flex-end; }
    .video-modal-box { max-width: 100%; }
    .video-modal-title { padding: 16px 20px 12px; }
    .video-modal-title > h3 { font-size: 20px; }
    .video-modal-close { top: -16px; right: -8px; }
    .sec2-top-row { flex-direction: column; align-items: flex-start; }
}
