/* =========================================================================
   Cosmic Blueprint — landing CSS
   Editorial light theme: cream + gold + dark navy
   ========================================================================= */

:root {
    --bg: #faf6ee;            /* warm ivory page background */
    --bg-card: #ffffff;       /* card background */
    --bg-tint: #f3ecdc;       /* soft cream accent (alternating sections) */
    --text-main: #1a1a2e;     /* dark navy — primary text */
    --text-body: #3a3a4a;     /* body copy */
    --text-dim: #6a6a7a;      /* secondary text */
    --text-faint: #9a9aaa;    /* tertiary text */
    --gold: #b5835a;          /* primary accent — same gold as PDF */
    --gold-soft: #c9a96e;     /* lighter gold */
    --gold-faint: rgba(181, 131, 90, 0.18);
    --line: rgba(181, 131, 90, 0.16);
    --line-strong: rgba(181, 131, 90, 0.35);
    --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.04);
    --shadow-md: 0 4px 16px rgba(26, 26, 46, 0.06);
    --shadow-lg: 0 12px 40px rgba(26, 26, 46, 0.08);
    --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ---------- Typography helpers ---------- */

.eyebrow {
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: inline-block;
    margin-bottom: 18px;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.15;
}

h1 em, h2 em { font-style: italic; color: var(--gold); font-weight: 500; }

/* ---------- Sticky nav ---------- */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 246, 238, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); font-style: italic; }
.nav-logo:hover { text-decoration: none; }

.nav-cta {
    padding: 10px 22px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.nav-cta:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* ---------- Hero ---------- */

.hero {
    text-align: center;
    padding: 100px 24px 80px;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.hero h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-sub {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-dim);
    max-width: 580px;
    margin: 0 auto 40px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    padding: 16px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid;
}

.btn-primary {
    background: var(--text-main);
    color: #fff;
    border-color: var(--text-main);
}
.btn-primary:hover {
    background: #2a2a3e;
    border-color: #2a2a3e;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
    border-color: var(--line-strong);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-stat { text-align: center; }
.hero-stat-num {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    color: var(--gold);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
}
.hero-stat-lbl {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-faint);
}

/* ---------- Trust strip ---------- */

.trust-strip {
    background: var(--bg-tint);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px;
}
.trust-strip-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}
.trust-item {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.trust-icon { color: var(--gold); font-size: 16px; }

/* ---------- Sections (generic) ---------- */

.section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 90px 24px;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 18px;
}

.section-sub {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-top: 8px;
}

/* ---------- Discover (6 planet cards) ---------- */

.discover {
    background: var(--bg-tint);
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.discover-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.discover-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.discover-symbol {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 18px;
}
.discover-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}
.discover-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dim);
}
.discover-card strong { color: var(--text-main); font-weight: 600; }

/* ---------- Sample preview ---------- */

.preview-section { background: var(--bg); }

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

.preview-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.preview-card img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid var(--line);
}
.preview-card figcaption {
    padding: 14px 18px;
    font-size: 13px;
    color: var(--text-dim);
    text-align: center;
    font-style: italic;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* ---------- How it works ---------- */

.how-it-works { background: var(--bg-tint); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    text-align: center;
    padding: 0 16px;
}
.step-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 64px;
    color: var(--gold-faint);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
}
.step-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}
.step-card p {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ---------- Pricing tiers ---------- */

.pricing-section {
    background: var(--bg);
}

/* OLD .tiers / .tier-card / .tier-features / .tier-btn styles removed —
   superseded by .tiers-grid + .tc-* classes in the "4-column comparison cards" section below. */

/* Guarantee box */
.guarantee {
    max-width: 720px;
    margin: 40px auto 0;
    padding: 22px 28px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 18px;
}
.guarantee-icon {
    font-size: 28px;
    color: var(--gold);
    flex-shrink: 0;
}
.guarantee-text {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.65;
}
.guarantee-text strong { color: var(--text-main); }

/* ---------- Why different ---------- */

.why-different { background: var(--bg-tint); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
}
.why-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--text-main);
}
.why-card p {
    font-size: 14.5px;
    color: var(--text-dim);
    line-height: 1.75;
}
.why-card em { color: var(--gold); font-style: italic; }

/* ---------- Testimonials ---------- */

.testimonials { background: var(--bg); }

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

.testi {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 30px;
    position: relative;
}
.testi-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}
.testi-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.65;
    color: var(--text-main);
    margin-bottom: 18px;
    font-weight: 400;
}
.testi-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}
.testi-meta {
    font-weight: 400;
    color: var(--text-faint);
    font-size: 12px;
}

/* ---------- FAQ ---------- */

.faq { background: var(--bg-tint); }

.faq .section-head { margin-bottom: 40px; }

.faq details {
    max-width: 760px;
    margin: 0 auto 12px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq details summary {
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 500;
    font-size: 15.5px;
    list-style: none;
    position: relative;
    padding-right: 50px;
    color: var(--text-main);
}
.faq details summary::-webkit-details-marker { display: none; }
.faq details summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--gold);
    font-weight: 300;
}
.faq details[open] summary::after { content: '–'; }
.faq details p {
    padding: 0 24px 20px;
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.75;
}

/* ---------- Order form ---------- */

.order-section { background: var(--bg); }

.form-wrap {
    max-width: 560px;
    margin: 0 auto;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
}

.input-group {
    margin-bottom: 22px;
}
.input-group label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
}

input[type="text"], input[type="email"], select {
    width: 100%;
    padding: 12px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: var(--text-main);
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.2s ease;
}
input:focus, select:focus { border-color: var(--gold); }
input::placeholder { color: var(--text-faint); }

.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.hint {
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-faint);
    line-height: 1.5;
}

/* Mini tier buttons in form */
.tier-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
.tier-mini {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-align: center;
    transition: all 0.2s ease;
}
.tier-mini:hover { border-color: var(--line-strong); }
.tier-mini.active {
    border-color: var(--gold);
    background: #fffaf0;
}
.tier-mini-name {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 4px;
}
.tier-mini-price {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    color: var(--gold);
}
.tier-mini-price s { color: var(--text-faint); font-size: 13px; }

/* City autocomplete */
.city-wrap { position: relative; }
.autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--line-strong);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 10;
    max-height: 220px;
    overflow-y: auto;
    display: none;
    box-shadow: var(--shadow-md);
}
.ac-item {
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    color: var(--text-body);
    border-bottom: 1px solid var(--line);
}
.ac-item:hover { background: var(--bg-tint); color: var(--text-main); }
.ac-item:last-child { border-bottom: none; }

/* Submit button */
.submit-btn {
    width: 100%;
    padding: 17px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: var(--text-main);
    border: 1px solid var(--text-main);
    border-radius: 32px;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.25s ease;
}
.submit-btn:hover {
    background: #2a2a3e;
    box-shadow: var(--shadow-md);
}
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-fineprint {
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-faint);
    text-align: center;
    letter-spacing: 0.05em;
}

.loading {
    display: none;
    margin-top: 16px;
    padding: 14px;
    background: var(--bg-tint);
    border-radius: var(--radius);
    text-align: center;
    color: var(--gold);
    font-size: 13px;
}
.loading span {
    display: block;
    font-size: 11px;
    color: var(--text-faint);
    margin-top: 4px;
}

.error {
    display: none;
    margin-top: 14px;
    padding: 12px 16px;
    background: #fce8e8;
    color: #a02828;
    border-radius: var(--radius);
    font-size: 13.5px;
}

/* ---------- Footer ---------- */

.footer {
    background: var(--bg-tint);
    border-top: 1px solid var(--line);
    padding: 50px 24px 40px;
    text-align: center;
}
.footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 500;
}
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-tag {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 16px;
    font-style: italic;
}
.footer-links {
    font-size: 13px;
    margin-bottom: 14px;
}
.footer-links a {
    color: var(--text-dim);
    margin: 0 6px;
    text-decoration: none;
}
.footer-links a:hover { color: var(--gold); text-decoration: underline; }
.footer-copy {
    font-size: 11px;
    color: var(--text-faint);
    letter-spacing: 0.04em;
}

/* ---------- "What is a natal chart?" educational primer ---------- */

.what-is {
    background: var(--bg-card);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.what-is-text p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 18px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
}

.what-is-text p:last-child { margin-bottom: 0; }
.what-is-text strong { color: var(--text-main); font-weight: 600; }
.what-is-text em { color: var(--gold); font-style: italic; }
.what-is-text .what-is-emo {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 17px;
    color: var(--gold);
    font-style: italic;
    line-height: 1.7;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.what-is-meta {
    background: var(--bg-tint);
    border-left: 3px solid var(--gold);
    padding: 28px 28px;
    border-radius: var(--radius);
}

.what-is-meta h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.what-is-meta ul { list-style: none; }
.what-is-meta li {
    padding: 9px 0;
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.55;
    display: flex;
    gap: 10px;
}
.what-is-meta li span {
    color: var(--gold);
    flex-shrink: 0;
}

/* ---------- 4-column comparison cards (primary selling tool) ---------- */

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto 24px;
}

.tier-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 30px 24px 26px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    transition: all 0.25s ease;
}
.tier-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-strong);
}
.tier-card.active {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(181,131,90,0.16);
}
.tier-card.recommended {
    border-color: var(--gold);
    border-width: 2px;
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
    /* Slightly taller — visual hierarchy pulls eye here */
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(181,131,90,0.16);
}
.tier-card.recommended:hover {
    transform: translateY(-11px);
}
.tier-card.premium {
    background: linear-gradient(180deg, #fcf7eb 0%, #ffffff 100%);
}

.tc-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(181,131,90,0.25);
}

.tc-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #c93838;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.tc-head { margin-bottom: 22px; }

.tc-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-faint);
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

.tc-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}
.tc-was {
    font-size: 15px;
    color: var(--text-faint);
    text-decoration: line-through;
}
.tc-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1;
}

.tc-meta {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}

.tc-payment-note {
    margin-top: 6px;
    font-size: 11px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tc-features {
    list-style: none;
    flex: 1;
    margin-bottom: 22px;
}
.tc-features li {
    padding: 7px 0 7px 18px;
    font-size: 13px;
    color: var(--text-body);
    border-bottom: 1px solid var(--line);
    line-height: 1.55;
    position: relative;
}
.tc-features li:last-child { border-bottom: none; }
.tc-features li:before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--gold);
    font-size: 9px;
}

.tc-cta {
    width: 100%;
    padding: 13px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-main);
    background: transparent;
    border: 1px solid var(--text-main);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.tc-cta:hover {
    background: var(--text-main);
    color: #fff;
}
.tc-cta.primary {
    background: var(--text-main);
    color: #fff;
}
.tc-cta.primary:hover {
    background: #2a2a3e;
    box-shadow: var(--shadow-sm);
}
.tc-cta.soon, .tier-block-cta.soon {
    background: var(--bg-tint);
    color: var(--text-faint);
    border-color: var(--line);
    cursor: not-allowed;
    font-style: italic;
}
.tc-cta.soon:hover, .tier-block-cta.soon:hover {
    background: var(--bg-tint);
    color: var(--text-faint);
    transform: none;
    box-shadow: none;
}
.tier-mini.disabled {
    opacity: 0.45;
    cursor: not-allowed;
}
.tier-mini.disabled:hover { border-color: var(--line); }
.tier-mini.disabled .tier-mini-price { color: var(--text-faint); }

/* Bridge text between cards and detailed blocks */
.tiers-bridge {
    text-align: center;
    margin: 40px auto 32px;
    max-width: 600px;
}
.tiers-bridge p {
    font-size: 14px;
    color: var(--text-dim);
    font-style: italic;
    line-height: 1.6;
}

/* ---------- Detailed tier blocks (full-width per tier) ---------- */

.tier-block {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 44px;
    margin: 0 auto 28px;
    max-width: 980px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.tier-block.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
    box-shadow: 0 8px 28px rgba(181, 131, 90, 0.12);
}

.tier-block.premium {
    background: linear-gradient(180deg, #fcf7eb 0%, #ffffff 100%);
}

.tier-block-banner {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 14px;
    white-space: nowrap;
}

.tier-block-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 28px;
}

.tier-block-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.tier-block-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 12px;
}

.tier-block-best {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.65;
    max-width: 540px;
}

.tier-block-price-box {
    text-align: right;
    flex-shrink: 0;
    min-width: 160px;
}

.tier-block-was {
    font-size: 14px;
    color: var(--text-faint);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.tier-block-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 6px;
}

.tier-block-meta {
    font-size: 11.5px;
    letter-spacing: 0.06em;
    color: var(--text-faint);
    margin-bottom: 8px;
}

.tier-block-discount {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 10px;
}

.tier-block-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.tier-block-body h4 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.qa-list, .section-list {
    list-style: none;
}

.qa-list li {
    padding: 8px 0 8px 22px;
    position: relative;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-body);
    border-bottom: 1px dashed var(--line);
}
.qa-list li:last-child { border-bottom: none; }
.qa-list li:before {
    content: '?';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--gold);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1;
}
.qa-list li strong { color: var(--text-main); font-weight: 600; }
.qa-list li em { color: var(--gold); font-style: italic; }

.section-list li {
    padding: 8px 0 8px 22px;
    position: relative;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-body);
    border-bottom: 1px solid var(--line);
}
.section-list li:last-child { border-bottom: none; }
.section-list li:before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--gold);
    font-size: 11px;
}
.section-list li strong { color: var(--text-main); font-weight: 600; }

.tier-block-note {
    margin-top: 16px;
    padding: 12px 14px;
    background: var(--bg-tint);
    border-left: 2px solid var(--gold);
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
    font-style: italic;
}
.tier-block-note strong { color: var(--text-main); font-style: normal; }

.tier-block-cta {
    width: 100%;
    padding: 16px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-main);
    background: transparent;
    border: 1px solid var(--text-main);
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.tier-block-cta:hover {
    background: var(--text-main);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.tier-block-cta.btn-primary {
    background: var(--text-main);
    color: #fff;
}
.tier-block-cta.btn-primary:hover {
    background: #2a2a3e;
}

/* ---------- Mid-page CTAs (between sections) ---------- */

.mid-cta {
    text-align: center;
    margin-top: 56px;
}

.mid-cta .btn {
    min-width: 280px;
}

/* ---------- Lightbox for preview images ---------- */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 14, 30, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 32px;
    cursor: zoom-out;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lightbox.show { display: flex; }

.lightbox img {
    max-width: 100%;
    max-height: 95vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }

.preview-card { cursor: zoom-in; }
.preview-card figcaption em { color: var(--gold); font-style: italic; }

/* ---------- Mobile sticky-bottom CTA bar ---------- */

.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(250, 246, 238, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--line-strong);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    z-index: 90;
    box-shadow: 0 -2px 12px rgba(26, 26, 46, 0.08);
}
.mobile-cta-btn {
    width: 100%;
    min-width: 0;
    padding: 14px 24px;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
    .discover-grid, .why-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .preview-grid { grid-template-columns: 1fr 1fr; }
    .preview-grid .preview-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
    .tiers-grid { grid-template-columns: 1fr 1fr; }
    .tier-card.recommended { transform: none; }
    .tier-card.recommended:hover { transform: translateY(-3px); }
    .tier-strip { grid-template-columns: 1fr 1fr; }
    .what-is-grid { grid-template-columns: 1fr; gap: 36px; }
    .tier-block { padding: 32px 28px; }
    .tier-block-head { flex-direction: column; gap: 20px; }
    .tier-block-price-box { text-align: left; min-width: 0; }
    .tier-block-body { grid-template-columns: 1fr; gap: 28px; }
    .testi-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 32px; }
}

@media (max-width: 600px) {
    .nav-inner { padding: 14px 20px; }
    .nav-cta { padding: 8px 16px; font-size: 11px; }
    .hero { padding: 60px 20px 50px; }
    .hero h1 { font-size: clamp(28px, 8vw, 40px); }
    .hero-sub { font-size: 15px; }
    .section { padding: 56px 20px; }
    .section-head { margin-bottom: 36px; }
    .discover-grid, .why-grid, .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .preview-grid { grid-template-columns: 1fr; }
    .preview-grid .preview-card:last-child { grid-column: auto; max-width: 100%; }
    .tiers-grid { grid-template-columns: 1fr; }
    .tier-strip { grid-template-columns: 1fr; }
    .tier-strip-item { padding: 14px 16px; }
    .tier-block { padding: 24px 20px; }
    .tier-block-title { font-size: 24px; }
    .tier-block-price { font-size: 40px; }
    .form-card { padding: 28px 20px; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .hero-stat-num { font-size: 28px; }
    .tier-mini-grid { grid-template-columns: 1fr 1fr; }
    .btn { padding: 14px 28px; font-size: 12px; }
    .mid-cta .btn { min-width: 0; width: 100%; }

    /* Show sticky bottom CTA on mobile */
    .mobile-cta-bar { display: block; }
    /* Pad body so bottom bar doesn't cover footer */
    .footer { padding-bottom: calc(96px + env(safe-area-inset-bottom)); }

    /* Hide nav CTA on mobile — bottom bar is more visible */
    .nav-cta { display: none; }

    /* Lightbox close button further from edge on mobile */
    .lightbox { padding: 16px; }
    .lightbox-close { top: 12px; right: 12px; }
}
