/* ==========================================================================
   LeadTrackEngine — Marketing Site Styles
   Warm, feminine, editorial. Built for Sarah (30-45 y/o NWM mum).
   ========================================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --cream: #F5F0E8;
    --cream-light: #FFFDF8;
    --gold: #C8A96E;
    --gold-hover: #B8954E;
    --gold-light: rgba(200, 169, 110, 0.12);
    --sage: #A8B5A0;
    --sage-dark: #8A9A82;
    --sage-light: rgba(168, 181, 160, 0.15);
    --terracotta: #C47D5A;
    --terracotta-light: rgba(196, 125, 90, 0.12);
    --rose: #D4A5A5;
    --rose-light: rgba(212, 165, 165, 0.15);
    --charcoal: #3D3D3D;
    --text: #3D3D3D;
    --text-soft: #5C554D;
    --text-muted: #A09688;
    --white: #FFFFFF;
    --border: #E8E0D4;
    --shadow: 0 4px 24px rgba(61, 61, 61, 0.06);
    --shadow-hover: 0 8px 40px rgba(61, 61, 61, 0.1);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-lg: 24px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.7;
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, button, textarea { font-family: inherit; border: none; outline: none; }

/* ===== LAYOUT ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container-narrow { padding: 0 40px; } }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--text); line-height: 1.15; }
h1 { font-size: 32px; font-weight: 700; letter-spacing: -0.3px; }
h2 { font-size: 28px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
@media (min-width: 768px) {
    h1 { font-size: 48px; letter-spacing: -0.8px; }
    h2 { font-size: 38px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
}
@media (min-width: 1024px) {
    h1 { font-size: 54px; }
    h2 { font-size: 42px; }
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    background: var(--gold-light);
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 40px;
    border-radius: 1px;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: 0.2px;
    text-align: center;
}
.btn-gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(200, 169, 110, 0.3);
}
.btn-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 169, 110, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--gold);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.btn-lg { padding: 18px 44px; font-size: 17px; }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: 72px;
    transition: box-shadow 0.3s;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(61, 61, 61, 0.06);
    border-bottom-color: var(--border);
}
.header-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
@media (min-width: 768px) { .header-inner { padding: 0 40px; } }
.logo {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--text);
}
.logo span { color: var(--gold); }
.nav-links { display: none; gap: 32px; align-items: center; }
.nav-links a {
    color: var(--text-soft);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active { font-weight: 600; color: var(--gold); }
@media (min-width: 768px) { .nav-links { display: flex; } }
.header-cta-wrap { display: flex; align-items: center; gap: 12px; }
.header-cta {
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: all 0.25s;
}
.header-cta:hover { background: var(--gold-hover); }
.hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    position: absolute;
    left: 5px;
    transition: all 0.3s;
    border-radius: 1px;
}
.hamburger span:nth-child(1) { top: 9px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 21px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg); top: 15px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg); top: 15px; }
@media (min-width: 768px) { .hamburger { display: none; } }
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 16px 24px 24px;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(61, 61, 61, 0.08);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
    display: block;
    color: var(--text);
    font-size: 17px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ===== HERO (homepage / persona) ===== */
.hero {
    padding-top: 72px;
    background: var(--cream);
    overflow: hidden;
}
.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 0 0;
}
.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: var(--gold-light);
    border-radius: 50px;
}
.hero h1 { margin-bottom: 24px; max-width: 600px; }
.hero-sub {
    font-size: 17px;
    color: var(--text-soft);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-cta-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}
.hero-micro {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 48px;
}
.hero-image {
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    box-shadow: 0 -8px 60px rgba(200, 169, 110, 0.12);
}
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
@media (min-width: 768px) {
    .hero-cta-row { flex-direction: row; justify-content: center; }
}
@media (min-width: 1024px) {
    .hero-inner {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 100px 0 0;
        gap: 60px;
    }
    .hero-content { flex: 1; max-width: 520px; }
    .hero h1 { max-width: none; }
    .hero-sub { margin: 0 0 36px; }
    .hero-cta-row { justify-content: flex-start; }
    .hero-micro { text-align: left; }
    .hero-image {
        flex: 1;
        max-width: 560px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        margin-bottom: -4px;
    }
}

/* ===== HERO (inner pages - short) ===== */
.hero-inner-page {
    padding: 132px 0 60px;
    background: var(--cream);
    text-align: center;
}
.hero-inner-page h1 { margin-bottom: 20px; max-width: 720px; margin-left: auto; margin-right: auto; }
.hero-inner-page p {
    font-size: 18px;
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
@media (min-width: 768px) {
    .hero-inner-page { padding: 160px 0 80px; }
    .hero-inner-page p { font-size: 19px; }
}

/* ===== PAIN SECTION ===== */
.pain {
    background: var(--cream-light);
    padding: 80px 0;
}
@media (min-width: 768px) { .pain { padding: 100px 0; } }
.pain-inner {
    max-width: 680px;
    margin: 0 auto;
}
.pain h2 { margin-bottom: 48px; text-align: center; }
.pain-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pain-item {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.7;
    padding: 24px 0 24px 28px;
    border-left: 3px solid var(--gold);
    position: relative;
    margin-left: 20px;
}
.pain-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 28px;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--cream-light);
}
.pain-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.pain-item span { color: var(--text-soft); }
.pain-closing-wrap {
    text-align: center;
    margin-top: 56px;
    padding: 36px 32px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.pain-closing {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 20px;
    color: var(--text);
    line-height: 1.5;
}
.pain-closing-accent {
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}
@media (min-width: 768px) {
    .pain-closing { font-size: 23px; }
    .pain-item { font-size: 17px; padding: 28px 0 28px 32px; }
    .pain-item strong { font-size: 19px; }
}

/* ===== GENERIC SECTION (cream / cream-light alternation) ===== */
.section {
    padding: 80px 0;
    background: var(--cream);
}
.section-light { background: var(--cream-light); }
@media (min-width: 768px) { .section { padding: 100px 0; } }
.section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--text-soft); font-size: 17px; }

/* ===== 3-COLUMN CARD GRID ===== */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .card-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.card-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .card-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

.sol-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.sol-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.sol-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.sol-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.sol-card h3 { font-size: 19px; margin-bottom: 12px; }
.sol-card p { font-size: 15px; color: var(--text-soft); line-height: 1.65; }

/* ===== JOURNEY / ALTERNATING FEATURE ROWS ===== */
.journey-step {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 64px;
    align-items: center;
}
.journey-step:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
    .journey-step { flex-direction: row; gap: 56px; align-items: center; }
    .journey-step.reverse { flex-direction: row-reverse; }
}
.journey-visual {
    flex: 1;
    max-width: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.journey-visual img { width: 100%; height: auto; display: block; }
.journey-visual-phone {
    flex: 1;
    max-width: 260px;
    margin: 0 auto;
}
.journey-text { flex: 1; }
.step-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--sage-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    background: var(--sage-light);
    border-radius: 50px;
    margin-bottom: 16px;
}
.journey-text h3 { font-size: 24px; margin-bottom: 16px; line-height: 1.25; }
@media (min-width: 768px) { .journey-text h3 { font-size: 28px; } }
.journey-text p { font-size: 16px; color: var(--text-soft); line-height: 1.7; }

/* Phone mockup */
.phone-mockup {
    width: 220px;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15);
    margin: 0 auto;
}
.phone-mockup .phone-screen {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
}
.phone-mockup .phone-screen img { width: 100%; display: block; }
@media (min-width: 768px) {
    .phone-mockup { width: 260px; border-radius: 42px; padding: 12px; }
    .phone-mockup .phone-screen { border-radius: 32px; }
}

/* ===== SOCIAL PROOF ===== */
.testimonial-featured {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}
.testimonial-image {
    width: 100%;
    max-width: 720px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: var(--shadow);
}
.testimonial-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.testimonial-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
    padding: 0 16px;
}
@media (min-width: 768px) { .testimonial-quote { font-size: 24px; } }
.testimonial-attr { font-size: 15px; color: var(--text-soft); font-weight: 500; }
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
}
.testimonial-card p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 16px;
    font-style: italic;
}
.testimonial-card .tc-attr {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* ===== OWNERSHIP (dark overlay section) ===== */
.ownership {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: var(--white);
}
@media (min-width: 768px) { .ownership { padding: 140px 0; } }
.ownership-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ownership-bg img { width: 100%; height: 100%; object-fit: cover; }
.ownership-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 61, 61, 0.82), rgba(196, 125, 90, 0.7));
}
.ownership-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.ownership h2 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 30px;
}
@media (min-width: 768px) { .ownership h2 { font-size: 42px; } }
.ownership-body {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
}
.ownership-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .ownership-pillars { grid-template-columns: repeat(3, 1fr); }
}
.pillar {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 28px 20px;
    backdrop-filter: blur(8px);
}
.pillar h4 {
    font-family: var(--font-serif);
    font-size: 19px;
    color: var(--white);
    margin-bottom: 8px;
}
.pillar p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 920px;
    margin: 0 auto;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}
.price-card:hover { box-shadow: var(--shadow-hover); }
.price-card.featured {
    border-color: var(--gold);
    border-width: 2px;
    box-shadow: 0 12px 48px rgba(200, 169, 110, 0.2);
    padding: 44px 32px;
    z-index: 1;
}
@media (min-width: 768px) {
    .price-card.featured { transform: scale(1.06); }
    .price-card.featured:hover {
        transform: scale(1.08);
        box-shadow: 0 16px 56px rgba(200, 169, 110, 0.28);
    }
}
.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.price-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}
.price-desc { font-size: 14px; color: var(--text-soft); margin-bottom: 20px; }
.price-amount { margin-bottom: 24px; }
.price-amount .num {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 700;
    color: var(--text);
}
.price-amount .per { font-size: 15px; color: var(--text-soft); }
.price-features {
    margin-bottom: 28px;
    flex-grow: 1;
}
.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-soft);
    padding: 8px 0;
}
.price-features li svg { flex-shrink: 0; margin-top: 3px; stroke: var(--sage-dark); }
.price-trial { text-align: center; margin-top: 10px; }
.trial-pill {
    display: inline-block;
    background: var(--sage-light);
    color: var(--sage-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
}
.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    color: var(--text-soft);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PATHWAYS (image cards with overlay) ===== */
.pathways-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) { .pathways-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.pathway-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
}
.pathway-card:hover { transform: translateY(-4px); }
.pathway-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pathway-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 61, 61, 0.78) 0%, rgba(61, 61, 61, 0.12) 60%, transparent 100%);
}
.pathway-content {
    position: relative;
    z-index: 1;
    padding: 28px 24px;
    color: var(--white);
}
.pathway-content h3 { color: var(--white); font-size: 22px; margin-bottom: 8px; }
.pathway-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}
.pathway-content .arrow {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 680px;
    margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
    width: 100%;
    background: none;
    padding: 22px 0;
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-q svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    transition: transform 0.3s;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
    padding-bottom: 22px;
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
@media (min-width: 768px) { .final-cta { padding: 120px 0; } }
.final-cta-bg { position: absolute; inset: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.88), rgba(196, 125, 90, 0.8));
}
.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.final-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 30px;
}
@media (min-width: 768px) { .final-cta h2 { font-size: 40px; } }
.final-cta .cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
    line-height: 1.7;
}
.cta-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cta-form input {
    width: 100%;
    height: 52px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text);
}
.cta-form input::placeholder { color: var(--text-muted); }
.cta-form .btn { width: 100%; }
.cta-micro {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

/* ===== PROSE (for about, legal, long-form copy) ===== */
.prose {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 0 60px;
}
.prose h2 {
    margin-top: 48px;
    margin-bottom: 20px;
    font-size: 30px;
}
.prose h3 {
    margin-top: 36px;
    margin-bottom: 14px;
}
.prose p {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 20px;
}
.prose p.lead {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 32px;
}
.prose strong { color: var(--text); font-weight: 600; }
.prose ul {
    margin: 20px 0 24px 24px;
}
.prose ul li {
    font-size: 17px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
    list-style: none;
}
.prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}
.prose blockquote {
    border-left: 3px solid var(--gold);
    padding: 8px 0 8px 28px;
    margin: 32px 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    color: var(--text);
    line-height: 1.5;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text);
    font-family: var(--font-sans);
    transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .field { margin-bottom: 8px; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--charcoal);
    padding: 64px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.footer-col h4 {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 16px;
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255, 255, 255, 0.9); }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ===== FEATURE DETAIL GROUPS (features page) ===== */
.feature-group {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.feature-group:last-child { border-bottom: none; }
.feature-group-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}
.feature-group-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--sage-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    background: var(--sage-light);
    border-radius: 50px;
    margin-bottom: 16px;
}
.feature-group-head h2 { margin-bottom: 12px; }
.feature-group-head p { color: var(--text-soft); font-size: 17px; }

.feature-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .feature-detail-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.3s;
}
.feature-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.feature-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.feature-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.feature-card h3 { margin-bottom: 10px; font-size: 20px; }
.feature-card p { font-size: 15px; color: var(--text-soft); line-height: 1.65; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 48px; }

/* ============================================================================
   BLOG STYLES
   ============================================================================ */

/* ===== BLOG INDEX ===== */
.blog-hero {
    padding: 64px 0 60px;
    background: var(--cream);
    text-align: center;
}
@media (min-width: 768px) { .blog-hero { padding: 80px 0 80px; } }
.blog-hero h1 { margin-bottom: 20px; max-width: 720px; margin-left: auto; margin-right: auto; }
.blog-hero p { font-size: 18px; color: var(--text-soft); max-width: 600px; margin: 0 auto; }

.blog-cluster-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}
.blog-cluster-section:last-child { border-bottom: none; }
.blog-cluster-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.blog-cluster-head .eyebrow { margin-bottom: 16px; }
.blog-cluster-head h2 { margin-bottom: 12px; }
.blog-cluster-head p { color: var(--text-soft); font-size: 17px; line-height: 1.7; }

.blog-post-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .blog-post-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (min-width: 1024px) {
    .blog-post-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.blog-card-image {
    height: 180px;
    overflow: hidden;
    background: var(--cream);
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-meta {
    display: flex;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.blog-card-meta .tier-badge {
    background: var(--gold-light);
    color: var(--gold);
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
}
.blog-card-body h3 {
    font-size: 19px;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 12px;
}
.blog-card-body p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.65;
    flex: 1;
}
.blog-card-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.blog-card-footer .reading-time {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 13px;
}

/* ===== ARTICLE BREADCRUMBS (separates content from fixed header) ===== */
.article-breadcrumbs {
    background: var(--cream);
    padding: 100px 0 0;
    border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .article-breadcrumbs { padding: 112px 0 0; } }
.article-breadcrumbs-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}
@media (min-width: 768px) {
    .article-breadcrumbs-inner { padding: 28px 40px; font-size: 14px; }
}
.article-breadcrumbs-inner a {
    color: var(--text-soft);
    transition: color 0.2s;
}
.article-breadcrumbs-inner a:hover { color: var(--gold); }
.article-breadcrumbs-inner .separator {
    color: var(--border);
    font-size: 12px;
}
.article-breadcrumbs-inner .current {
    color: var(--text);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 360px;
}

/* ===== ARTICLE PAGE ===== */
.article-hero {
    padding: 64px 0 48px;
    background: var(--cream);
    text-align: center;
}
@media (min-width: 768px) { .article-hero { padding: 80px 0 64px; } }
.article-hero .container { max-width: 780px; }
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.article-meta a { color: var(--gold); }
.article-hero h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 28px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .article-hero h1 { font-size: 42px; line-height: 1.15; }
}
@media (min-width: 1024px) {
    .article-hero h1 { font-size: 48px; }
}
.article-hero .lead {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 19px;
    color: var(--text-soft);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .article-hero .lead { font-size: 21px; }
}

/* Hero image — constrained banner, not a huge square */
.article-hero-image {
    max-width: 760px;
    margin: 48px auto 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(200, 169, 110, 0.15);
    aspect-ratio: 16 / 7;
}
.article-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.article-body {
    padding: 72px 0 96px;
    background: var(--cream);
}
@media (min-width: 768px) { .article-body { padding: 88px 0 120px; } }
.article-body .container { max-width: 720px; }

.article-prose {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-soft);
}
@media (min-width: 768px) {
    .article-prose { font-size: 19px; line-height: 1.95; }
}
.article-prose p {
    margin-bottom: 32px;
}
.article-prose p.drop {
    font-family: var(--font-serif);
    font-size: 22px;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 44px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
    .article-prose p.drop { font-size: 24px; }
}
.article-prose h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
    margin-top: 72px;
    margin-bottom: 28px;
}
.article-prose h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin-top: 56px;
    margin-bottom: 20px;
}
@media (min-width: 768px) {
    .article-prose h2 { font-size: 32px; margin-top: 80px; }
    .article-prose h3 { font-size: 24px; margin-top: 60px; }
}
.article-prose strong { color: var(--text); font-weight: 600; }
.article-prose em { color: var(--text); }
.article-prose a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(200, 169, 110, 0.4);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
}
.article-prose a:hover { text-decoration-color: var(--gold); }
.article-prose ul, .article-prose ol {
    margin: 0 0 36px 8px;
    padding-left: 16px;
}
.article-prose ul li, .article-prose ol li {
    margin-bottom: 18px;
    padding-left: 12px;
    list-style: none;
    position: relative;
}
.article-prose ul li::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}
.article-prose ol {
    counter-reset: article-list;
}
.article-prose ol li {
    counter-increment: article-list;
    padding-left: 36px;
}
.article-prose ol li::before {
    content: counter(article-list);
    position: absolute;
    left: -4px;
    top: 0;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    width: 28px;
    text-align: center;
}
.article-prose blockquote {
    border-left: 3px solid var(--gold);
    padding: 16px 0 16px 36px;
    margin: 56px 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 24px;
    color: var(--text);
    line-height: 1.55;
}
.article-prose blockquote p { margin-bottom: 0; }
.article-prose hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 48px auto;
    width: 80px;
}
.article-prose .callout {
    background: var(--gold-light);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: 28px 32px;
    margin: 40px 0;
}
.article-prose .callout h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--text);
    margin-bottom: 10px;
}
.article-prose .callout p {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 17px;
}
.article-prose .template {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
    margin: 28px 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-soft);
    font-style: italic;
    position: relative;
}
.article-prose .template::before {
    content: 'Template';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--cream);
    padding: 0 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: normal;
}

/* ===== ARTICLE FOOTER (related + CTA) ===== */
.article-footer {
    background: var(--cream-light);
    padding: 80px 0;
}
.article-footer .container { max-width: 1140px; }
.article-related-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}
.article-related-head h2 {
    font-size: 28px;
    margin-bottom: 12px;
}
.article-related-head p { color: var(--text-soft); }
.article-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .article-related-grid { grid-template-columns: repeat(3, 1fr); }
}
