/* ===========================
   Steadfast Accounting — Styles
   StoryBrand Framework
   =========================== */

:root {
    /* Brand palette from logo */
    --olive: #5E6D3E;
    --olive-light: #748553;
    --olive-dark: #47522F;
    --brown: #A07855;
    --brown-light: #B89376;
    --brown-dark: #7E5D40;
    --cream: #F5F2EC;
    --cream-dark: #E8E2D6;
    --offwhite: #FAF8F4;
    --white: #FFFFFF;
    --text: #2D3327;
    --text-light: #5A6552;
    --text-lighter: #8A9482;
    --green: #5E6D3E;
    --green-light: #748553;
    --red: #B85A4A;
    --gold: #A07855;
    --gold-light: #B89376;
    --gold-dark: #7E5D40;
    --border: #E0DAD0;
    --shadow-sm: 0 2px 8px rgba(94, 109, 62, 0.06);
    --shadow-md: 0 6px 24px rgba(94, 109, 62, 0.1);
    --shadow-lg: 0 16px 48px rgba(94, 109, 62, 0.14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1140px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --navy: #47522F;
    --navy-light: #5E6D3E;
    --navy-dark: #2D3327;
}

/* ==================== RESET ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.7;
    background: var(--offwhite);
    overflow-x: hidden;
    max-width: 100vw;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ==================== CONTAINER ==================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== HEADER ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* ==================== LOGO ==================== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.logo-img {
    height: 52px;
    width: auto;
    transition: var(--transition);
}

.logo-icon-img {
    height: 44px;
    width: auto;
    transition: var(--transition);
    flex-shrink: 0;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--olive-dark);
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--brown);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 1px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    opacity: 0.9;
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-radius: 10px;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.logo-mark.small {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-accent {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ==================== NAV ==================== */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    transition: color var(--transition);
}

.main-nav a:hover { color: var(--gold-dark); }

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--navy-light);
    color: var(--gold) !important;
}

/* ==================== MOBILE MENU ==================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* ==================== NAV DROPDOWN ==================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    transition: color var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown:hover .nav-dropdown-trigger {
    color: var(--olive-dark);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    color: var(--text) !important;
    font-weight: 400 !important;
}

.nav-dropdown-menu a:hover {
    background: var(--cream);
}

.nav-dropdown-menu a strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 2px;
}

.nav-dropdown-menu a span {
    font-size: 0.8rem;
    color: var(--text-lighter);
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--olive), var(--olive-dark));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(94, 109, 62, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(94, 109, 62, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(94, 109, 62, 0.08), transparent 60%),
                radial-gradient(ellipse at bottom left, rgba(160, 120, 85, 0.04), transparent 60%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy-dark);
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--olive-dark), var(--olive));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.trust-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}

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

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

.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--navy-dark);
}

/* ==================== PROBLEM SECTION ==================== */
.problem-section {
    background: var(--white);
}

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

.problem-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-md);
    background: var(--cream);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-light);
    font-size: 0.98rem;
}

.problem-philosophy {
    text-align: center;
    font-size: 1.3rem;
    color: var(--navy);
    font-weight: 500;
}

/* ==================== GUIDE / ABOUT ==================== */
.guide-section {
    background: var(--cream);
}

.guide-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.section-eyebrow {
    margin-bottom: 16px;
}

.guide-left h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--navy-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.guide-body {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.guide-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.value-chip {
    padding: 18px 22px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
}

.value-chip strong {
    display: block;
    color: var(--navy);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.value-chip span {
    font-size: 0.92rem;
    color: var(--text-light);
}

.guide-cta { margin-top: 8px; }

.guide-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.verse-card {
    padding: 36px;
    background: linear-gradient(145deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-md);
    color: var(--white);
    text-align: center;
}

.verse-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
    opacity: 0.95;
}

.verse-ref {
    font-weight: 600;
    color: var(--gold-light);
}

.stat-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.stat-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 0;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-top: 4px;
}

.stat-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

/* ==================== PLAN ==================== */
.plan-section {
    background: var(--white);
}

.plan-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    text-align: center;
    padding: 0 20px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 4px 16px rgba(200, 162, 75, 0.35);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.step p {
    color: var(--text-light);
    font-size: 0.98rem;
}

.step-connector {
    width: 48px;
    height: 2px;
    background: var(--border);
    margin-top: 32px;
    flex-shrink: 0;
}

/* ==================== SERVICES ==================== */
.services-section {
    background: var(--cream);
}

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

.service-card {
    padding: 36px 30px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card-featured {
    border-color: var(--gold);
    border-width: 2px;
    box-shadow: 0 8px 32px rgba(200, 162, 75, 0.12);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.service-icon {
    font-size: 2rem;
}

.service-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy-dark);
}

.service-desc {
    color: var(--text-light);
    font-size: 0.98rem;
    margin-bottom: 24px;
}

.service-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.94rem;
    display: flex;
    align-items: center;
}

.service-list li::before {
    content: "✓";
    color: var(--green);
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
}

.service-list li:last-child { border-bottom: none; }

.services-note {
    text-align: center;
    margin-top: 48px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.services-note a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: underline;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    background: var(--white);
}

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

.testimonial-card {
    padding: 36px 30px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: var(--gold);
    font-family: Georgia, serif;
    line-height: 0.8;
    margin-bottom: 12px;
    opacity: 0.4;
}

.testimonial-card blockquote {
    font-size: 1.02rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--navy-dark);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--text-lighter);
    font-size: 0.88rem;
}

/* ==================== STAKES ==================== */
.stakes-section {
    background: var(--navy-dark);
    color: var(--white);
}

.stakes-section .section-eyebrow { color: var(--gold-light); }
.stakes-section h2 { color: var(--white); }

.stakes-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stakes-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.stake-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.stake-x {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(192, 74, 61, 0.2);
    color: #E87B6E;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.stake-item strong {
    display: block;
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.stake-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.stakes-contrast {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contrast-card {
    padding: 28px 22px;
    border-radius: var(--radius-md);
}

.contrast-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contrast-card ul li {
    padding: 8px 0 8px 20px;
    font-size: 0.9rem;
    position: relative;
}

.contrast-card:not(.contrast-good) {
    background: rgba(255, 255, 255, 0.05);
}

.contrast-card:not(.contrast-good) h3 { color: rgba(255, 255, 255, 0.5); }

.contrast-bad li {
    color: rgba(255, 255, 255, 0.4);
    list-style: none;
    padding-left: 22px;
    position: relative;
}

.contrast-bad li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #E87B6E;
}

.contrast-good {
    background: linear-gradient(145deg, var(--green), var(--green-light));
}

.contrast-good h3 { color: var(--white); }

.contrast-good-list li {
    color: rgba(255, 255, 255, 0.9);
    padding-left: 22px;
    position: relative;
}

.contrast-good-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* ==================== SUCCESS ==================== */
.success-section {
    background: var(--cream);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.success-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.success-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}

.success-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.success-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.success-card p {
    font-size: 0.92rem;
    color: var(--text-light);
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    background: var(--cream);
    padding-bottom: 120px;
}

.cta-card {
    background: linear-gradient(145deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    padding: 72px 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 162, 75, 0.15), transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}

.cta-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 36px;
    position: relative;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    position: relative;
}

.cta-buttons .btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.cta-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    font-weight: 600;
}

.contact-item a, .contact-item span {
    color: var(--white);
    font-size: 0.98rem;
    font-weight: 500;
}

.contact-item a:hover { color: var(--gold-light); }

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 32px;
}

.footer-inner {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--white);
    font-weight: 600;
}

.footer-brand .logo-mark {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
}

.footer-tagline {
    font-size: 1rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .menu-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .main-nav.nav-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .main-nav a {
        width: 100%;
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
    }

    .nav-dropdown { width: 100%; }
    .nav-dropdown-trigger { width: 100%; justify-content: flex-start; padding: 16px 24px; border-bottom: 1px solid var(--border); }
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        min-width: 100%;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 400px;
        padding: 8px 24px;
    }
    .nav-dropdown-menu a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border) !important;
    }

    .nav-cta {
        border-radius: 0;
        text-align: center;
    }

    .hero { padding: 110px 0 60px; }

    .problem-grid,
    .services-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .guide-layout,
    .stakes-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .success-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .step-connector {
        width: 2px;
        height: 32px;
        margin: 0;
    }

    .cta-card { padding: 40px 20px; }
    .cta-card h2 { font-size: 1.5rem; }
    .cta-sub { font-size: 0.98rem; }

    .cta-contact-grid { gap: 24px; flex-direction: column; }
    .contact-item { text-align: center; }

    .lead-magnet-card {
        grid-template-columns: 1fr;
        padding: 28px 20px;
        gap: 28px;
    }
    .lead-magnet-right { display: none; }
    .lead-magnet-preview { display: none; }
    .lead-magnet-right { display: none; }
    .lead-magnet-preview { display: none; }

    .story-timeline {
        grid-template-columns: 1fr;
    }

    .story-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
        width: auto;
        max-width: 40px;
        overflow: hidden;
        align-self: center;
        justify-self: center;
    }

    .guarantee-card { padding: 32px 20px; }
}

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

    .stakes-contrast { grid-template-columns: 1fr; }

    /* Prevent horizontal scroll */
    body { overflow-x: hidden; }
    .container { padding: 0 16px; }
    html { font-size: 15px; }

    /* Section spacing */
    section { padding: 60px 0; }
    .problem-section, .guide-section, .plan-section, .services-section,
    .testimonials-section, .stakes-section, .success-section,
    .free-tools-section, .guarantee-section, .industries-section, .faq-section,
    .lead-magnet-section, .story-section { padding: 56px 0; }
    .section-header { margin-bottom: 36px; }
    .section-header h2 { font-size: 1.4rem; line-height: 1.3; }
    .section-eyebrow { font-size: 0.78rem; }

    /* Header */
    .header-inner { height: 60px; }
    .main-nav { top: 60px; }
    .logo-icon-img { height: 36px; }
    .logo-title { font-size: 1rem; }
    .logo-subtitle { font-size: 0.6rem; }

    /* Hero */
    .hero-content { padding: 0 4px; }

    /* Problem cards */
    .problem-card { padding: 28px 20px; }
    .problem-card h3 { font-size: 1.05rem; }
    .problem-card p { font-size: 0.9rem; }
    .problem-icon { font-size: 2rem; }
    .problem-philosophy { font-size: 1.05rem; }

    /* Guide */
    .guide-left h2 { font-size: 1.4rem; }
    .guide-body { font-size: 0.95rem; }
    .value-chip { padding: 14px 16px; }
    .value-chip strong { font-size: 0.95rem; }
    .value-chip span { font-size: 0.85rem; }
    .verse-card { padding: 24px 20px; }
    .verse-text { font-size: 0.98rem; }
    .stat-card { padding: 24px 20px; }
    .stat-number { font-size: 1.3rem; }

    /* Plan */
    .step { padding: 0 8px; }
    .step-number { width: 52px; height: 52px; font-size: 1.2rem; }
    .step h3 { font-size: 1.1rem; }
    .step p { font-size: 0.9rem; }

    /* Services */
    .service-card { padding: 28px 22px; }
    .service-header h3 { font-size: 1.2rem; }
    .service-list li { font-size: 0.88rem; }
    .service-desc { font-size: 0.92rem; }

    /* Testimonials */
    .testimonial-card { padding: 28px 22px; }
    .testimonial-card blockquote { font-size: 0.95rem; }

    /* Story */
    .story-point { padding: 24px 20px; }
    .story-point h3 { font-size: 1.05rem; }
    .story-point ul li { font-size: 0.88rem; }

    /* Stakes */
    .stake-item strong { font-size: 0.98rem; }
    .stake-item p { font-size: 0.86rem; }
    .contrast-card { padding: 20px 16px; }
    .contrast-card h3 { font-size: 0.92rem; }
    .contrast-card ul li { font-size: 0.84rem; }

    /* Success */
    .success-card { padding: 28px 18px; }
    .success-card h3 { font-size: 1rem; }
    .success-card p { font-size: 0.86rem; }
    .success-emoji { font-size: 2rem; }

    /* Tools */
    .tool-card { padding: 28px 22px; }
    .tool-card h3 { font-size: 1.1rem; }
    .tool-card p { font-size: 0.9rem; }

    /* Guarantee */
    .guarantee-card { padding: 28px 18px; }
    .guarantee-card h2 { font-size: 1.3rem; }
    .guarantee-body { font-size: 0.98rem; }
    .guarantee-icon { font-size: 2.5rem; }

    /* Industries */
    .industry-card { padding: 28px 22px; }
    .industry-card h3 { font-size: 1.05rem; }
    .industry-card p { font-size: 0.88rem; }
    .industry-tags li { font-size: 0.72rem; }

    /* FAQ */
    .faq-question { padding: 18px 20px; font-size: 0.95rem; }
    .faq-answer { padding: 0 20px; }
    .faq-answer p { font-size: 0.9rem; }
    .faq-toggle { font-size: 1.2rem; }

    /* Lead magnet */
    .lead-magnet-left h2 { font-size: 1.25rem; }
    .lead-magnet-desc { font-size: 0.92rem; }
    .lead-magnet-features li { font-size: 0.88rem; }

    /* CTA contact grid */
    .cta-contact-grid { gap: 20px; }
    .contact-item .contact-label { font-size: 0.72rem; }
    .contact-item a, .contact-item span { font-size: 0.9rem; }

    /* Footer */
    .footer-links { gap: 16px; }
    .footer-links a { font-size: 0.85rem; }
    .footer-tagline { font-size: 0.9rem; }
    .footer-copyright { font-size: 0.75rem; }
    .footer-logo-img { height: 60px; }

    /* CTA buttons inside cards */
    .cta-buttons { flex-direction: column; gap: 12px; }
}

/* ==================== SCARCITY BANNER (HERO) ==================== */

/* ==================== FREE TOOLS SECTION ==================== */
.free-tools-section {
    background: var(--cream);
    padding: 100px 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    overflow: hidden;
}

.tool-card {
    display: flex;
    flex-direction: column;
    padding: 40px 36px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tool-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.tool-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.tool-link {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 1rem;
    align-self: flex-start;
}

.tool-card:hover .tool-link {
    color: var(--navy);
}

.tool-featured {
    border-color: var(--gold);
    border-width: 2px;
    position: relative;
}

.tool-featured::before {
    content: "🔥 Most Used";
    position: absolute;
    top: -10px;
    left: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 16px;
}

.tools-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: var(--text-light);
}

.tools-note a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: underline;
}

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

.hero-scarcity-banner {
    display: inline-block;
    background: linear-gradient(135deg, rgba(200, 162, 75, 0.15), rgba(200, 162, 75, 0.08));
    border: 1px solid rgba(200, 162, 75, 0.3);
    color: var(--gold-dark);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    max-width: 100%;
    box-sizing: border-box;
}

/* ==================== LEAD MAGNET SECTION ==================== */
.lead-magnet-section {
    background: var(--white);
    padding: 80px 0;
}

.lead-magnet-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient(145deg, var(--cream), var(--cream-dark));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.lead-magnet-left h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.lead-magnet-desc {
    color: var(--text-light);
    font-size: 1.02rem;
    margin-bottom: 24px;
    line-height: 1.8;
}

.lead-magnet-features {
    margin-bottom: 28px;
}

.lead-magnet-features li {
    padding: 8px 0;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.lm-check {
    color: var(--green);
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
}

.lead-magnet-note {
    font-size: 0.82rem;
    color: var(--text-lighter);
    margin-top: 16px;
    font-style: italic;
}

.lead-magnet-preview {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.lm-preview-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    padding: 18px 24px;
    font-weight: 700;
    font-size: 1rem;
}

.lm-preview-body {
    padding: 16px 24px;
}

.lm-preview-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--text);
}

.lm-preview-row:last-child { border-bottom: none; }

.lm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
}

.lm-dot.urgent { background: var(--red); }

.lm-preview-more {
    color: var(--gold-dark);
    font-weight: 600;
    border-bottom: none !important;
}

/* ==================== GUARANTEE SECTION ==================== */
.guarantee-section {
    background: var(--cream);
    padding: 60px 0;
}

.guarantee-card {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    box-shadow: 0 8px 40px rgba(200, 162, 75, 0.12);
    position: relative;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.guarantee-card h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.guarantee-body {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.guarantee-fineprint {
    font-size: 0.92rem;
    color: var(--text-lighter);
    font-style: italic;
}

/* ==================== STORY SECTION ==================== */
.story-section {
    background: var(--white);
}

.story-card {
    max-width: 900px;
    margin: 0 auto;
}

.story-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
}

.story-point {
    padding: 36px 28px;
    border-radius: var(--radius-md);
}

.story-before {
    background: rgba(192, 74, 61, 0.06);
    border: 1px solid rgba(192, 74, 61, 0.15);
}

.story-after {
    background: rgba(45, 134, 89, 0.06);
    border: 1px solid rgba(45, 134, 89, 0.2);
}

.story-label {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.story-label.green { background: var(--green); }

.story-point h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 20px;
}

.story-point ul li {
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

.story-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
}

.story-attribution {
    text-align: center;
    margin-top: 32px;
    color: var(--text-lighter);
    font-size: 0.9rem;
}

/* ==================== TESTIMONIALS NOTE ==================== */
.testimonials-note {
    text-align: center;
    margin-top: 40px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text);
}

.testimonials-note a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: underline;
}

/* ==================== CTA SCARCITY ==================== */
.cta-scarcity {
    display: inline-block;
    background: rgba(200, 162, 75, 0.15);
    border: 1px solid rgba(200, 162, 75, 0.3);
    color: var(--gold-light);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
}

/* ==================== ANIMATIONS ==================== */

/* ==================== INDUSTRIES SECTION ==================== */
.industries-section {
    background: var(--white);
    padding: 100px 0;
}

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

.industry-card {
    padding: 36px 28px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--olive-light);
}

.industry-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.industry-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.industry-tags li {
    font-size: 0.76rem;
    font-weight: 600;
    padding: 4px 12px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    color: var(--olive-dark);
    list-style: none;
}

.industries-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: var(--text-light);
}

.industries-note a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: underline;
}

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

/* ==================== FAQ SECTION ==================== */
.faq-section {
    background: var(--cream);
    padding: 100px 0;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    box-shadow: var(--shadow-sm);
    border-color: var(--olive-light);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--navy-dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--olive-dark);
}

.faq-toggle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold-dark);
    flex-shrink: 0;
    margin-left: 16px;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 28px;
}

.faq-answer p {
    padding: 4px 0 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--gold-dark);
    text-decoration: underline;
    font-weight: 600;
}

.faq-answer strong {
    color: var(--text);
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
    animation: fadeUp 0.6s ease-out backwards;
}
.hero-eyebrow { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.3s; }
.hero-ctas { animation-delay: 0.4s; }
.hero-trust { animation-delay: 0.5s; }

/* =========================== MID-PAGE CTA BANDS =========================== */
.cta-band {
    background: var(--olive);
    color: var(--white);
    padding: 56px 24px;
    text-align: center;
}
.cta-band h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.cta-band-btn {
    display: inline-block;
    background: var(--white);
    color: var(--olive-dark);
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.cta-band-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
