/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
    --c-primary:       #10b981;
    --c-primary-dark:  #059669;
    --c-primary-light: #d1fae5;
    --c-text:          #111827;
    --c-muted:         #6b7280;
    --c-bg:            #f9fafb;
    --c-white:         #ffffff;
    --c-border:        #e5e7eb;
    --shadow:          0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:       0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
    --radius:          0.5rem;
    --radius-lg:       0.75rem;
    --font:            system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  { font-family: var(--font); color: var(--c-text); background: var(--c-bg);
        line-height: 1.6; -webkit-font-smoothing: antialiased; }
img   { max-width: 100%; display: block; }
a     { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-primary-dark); }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; }

/* ── Layout ─────────────────────────────────────────────────────────────────── */
.container        { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow{ width: 100%; max-width:  680px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 4rem 0; }
.section__header { text-align: center; margin-bottom: 2.5rem; }
.section__header h2 { font-size: 2rem; font-weight: 700; margin-bottom: .5rem; }
.section__header p  { color: var(--c-muted); font-size: 1.0625rem; }

/* ── Site header ─────────────────────────────────────────────────────────────── */
.site-header {
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    position: sticky; top: 0; z-index: 100;
    box-shadow: var(--shadow);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }

.site-logo { display: flex; align-items: center; gap: .5rem; font-size: 1.125rem; font-weight: 700; color: var(--c-text); }
.site-logo:hover { color: var(--c-text); }
.site-logo__icon {
    width: 32px; height: 32px;
    background: var(--c-primary); border-radius: 8px;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
}

.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a { font-size: .9375rem; color: var(--c-muted); transition: color .15s; }
.site-nav a:hover { color: var(--c-text); }
.site-nav .btn-primary, .site-nav a.btn-primary {
    background: var(--c-primary); color: var(--c-white);
    padding: .5rem 1rem; border-radius: var(--radius); font-weight: 600; font-size: .875rem;
}
.site-nav .btn-primary:hover, .site-nav a.btn-primary:hover { background: var(--c-primary-dark); color: var(--c-white); }
.site-nav__user { font-size: .9375rem; color: var(--c-muted); font-weight: 500; }

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .375rem;
    padding: .75rem 1.5rem; border-radius: var(--radius);
    font-size: 1rem; font-weight: 600; border: 2px solid transparent;
    transition: all .15s; line-height: 1;
}
.btn--primary { background: var(--c-primary);  color: var(--c-white); border-color: var(--c-primary); }
.btn--primary:hover { background: var(--c-primary-dark); border-color: var(--c-primary-dark); color: var(--c-white); }
.btn--outline { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,.5); }
.btn--outline:hover { background: rgba(255,255,255,.1); color: var(--c-white); }
.btn--white { background: var(--c-white); color: var(--c-primary-dark); border-color: var(--c-white); font-weight: 700; }
.btn--white:hover { background: var(--c-primary-light); }

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg,#065f46 0%,#047857 50%,#059669 100%);
    color: var(--c-white); padding: 5rem 0 4rem; text-align: center;
}
.hero__badge {
    display: inline-block;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px; padding: .3rem .875rem;
    font-size: .8125rem; font-weight: 600; margin-bottom: 1.25rem; letter-spacing: .01em;
}
.hero h1 { font-size: clamp(2rem,5vw,3.25rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; }
.hero h1 span { color: #a7f3d0; }
.hero__sub { font-size: 1.125rem; color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 2rem; line-height: 1.7; }
.hero__actions { display: flex; gap: .875rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero__trust { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; font-size: .875rem; color: rgba(255,255,255,.75); }

/* ── Calculator grid ─────────────────────────────────────────────────────────── */
.calc-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 1.25rem; }
.calc-card {
    background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg);
    padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem;
    color: var(--c-text); transition: all .2s; box-shadow: var(--shadow);
}
.calc-card:hover {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px var(--c-primary-light), var(--shadow-md);
    transform: translateY(-2px); color: var(--c-text);
}
.calc-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .25rem; }
.calc-card__icon  { font-size: 1.75rem; line-height: 1; }
.calc-card__arrow { font-size: 1.25rem; color: var(--c-muted); transition: transform .2s; }
.calc-card:hover .calc-card__arrow { transform: translateX(3px); color: var(--c-primary); }
.calc-card h3 { font-size: 1rem; font-weight: 700; }
.calc-card p  { font-size: .875rem; color: var(--c-muted); line-height: 1.5; }

/* ── CTA banner ──────────────────────────────────────────────────────────────── */
.cta-banner { background: var(--c-primary); color: var(--c-white); padding: 3.5rem 0; text-align: center; }
.cta-banner h2 { font-size: 1.875rem; font-weight: 700; margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.85); margin-bottom: 1.75rem; font-size: 1.0625rem; }

/* ── Calc page layout ────────────────────────────────────────────────────────── */
.calc-topbar { background: var(--c-white); border-bottom: 1px solid var(--c-border); padding: .75rem 0; font-size: .875rem; color: var(--c-muted); }
.calc-topbar a { color: var(--c-primary); }
.calc-topbar a:hover { color: var(--c-primary-dark); }
.calc-topbar__sep   { margin: 0 .5rem; }
.calc-topbar__title { color: var(--c-text); font-weight: 500; }
.calc-body { padding: 2.5rem 0 4rem; }

/* ── Calculator card wrapper ─────────────────────────────────────────────────── */
.hg-calc { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }
.calc-title { font-size: 1.5rem; font-weight: 700; margin-bottom: .375rem; }
.calc-desc  { color: var(--c-muted); font-size: .9375rem; margin-bottom: 1.75rem; }

/* ── Unit toggle ─────────────────────────────────────────────────────────────── */
.unit-toggle {
    display: inline-flex; background: var(--c-bg);
    border: 1px solid var(--c-border); border-radius: var(--radius);
    padding: 3px; margin-bottom: 1.75rem; gap: 2px;
}
.unit-btn {
    background: transparent; border: none;
    padding: .4rem 1rem; border-radius: calc(var(--radius) - 2px);
    font-size: .875rem; font-weight: 500; color: var(--c-muted); transition: all .15s;
}
.unit-btn:hover { color: var(--c-text); }
.unit-btn.active { background: var(--c-white); color: var(--c-text); font-weight: 600; box-shadow: 0 1px 2px rgba(0,0,0,.10); }

/* ── Form ────────────────────────────────────────────────────────────────────── */
.calc-form { display: flex; flex-direction: column; gap: 1.125rem; }
.field     { display: flex; flex-direction: column; gap: .375rem; }

.field-label { font-size: .9375rem; font-weight: 600; color: var(--c-text); }
.field-hint  { font-size: .8125rem; color: var(--c-muted); }

.field-control { position: relative; display: flex; align-items: center; }
.field-input {
    width: 100%; padding: .65rem .875rem;
    border: 1.5px solid var(--c-border); border-radius: var(--radius);
    font-size: 1rem; color: var(--c-text); background: var(--c-white);
    transition: border-color .15s, box-shadow .15s;
    -moz-appearance: textfield;
}
.field-input::-webkit-outer-spin-button,
.field-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.field-input:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(16,185,129,.15); }
.field-input.has-unit { padding-right: 2.75rem; }

.field-unit { position: absolute; right: .75rem; font-size: .875rem; color: var(--c-muted); pointer-events: none; font-weight: 500; }

.field-row { display: flex; gap: .625rem; }
.field-row .field-control { flex: 1; }

select.field-input {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .75rem center; padding-right: 2.5rem; cursor: pointer;
}

/* ── Submit ──────────────────────────────────────────────────────────────────── */
.calc-submit {
    margin-top: .5rem; padding: .8125rem 1.5rem;
    background: var(--c-primary); color: var(--c-white); border: none; border-radius: var(--radius);
    font-size: 1rem; font-weight: 700; transition: background .15s, transform .1s; align-self: flex-start;
}
.calc-submit:hover  { background: var(--c-primary-dark); }
.calc-submit:active { transform: scale(.98); }

/* ── Result ──────────────────────────────────────────────────────────────────── */
.calc-result {
    margin-top: 1.75rem; padding: 1.5rem;
    background: var(--c-bg); border: 1px solid var(--c-border);
    border-radius: var(--radius-lg); border-left: 4px solid var(--c-primary);
}
.result-main  { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .75rem; }
.result-value { font-size: 3rem; font-weight: 800; color: var(--c-text); line-height: 1; }
.result-unit  { font-size: 1.25rem; font-weight: 600; color: var(--c-muted); }
.result-badge {
    display: inline-block; padding: .3rem .875rem; border-radius: 999px;
    font-size: .875rem; font-weight: 700; margin-bottom: .875rem;
}
.result-badge--green  { background: #dcfce7; color: #15803d; }
.result-badge--yellow { background: #fef9c3; color: #a16207; }
.result-badge--orange { background: #ffedd5; color: #c2410c; }
.result-badge--red    { background: #fee2e2; color: #b91c1c; }
.result-badge--blue   { background: #dbeafe; color: #1d4ed8; }

.result-interp { font-size: .9375rem; color: var(--c-muted); line-height: 1.65; }

/* ── Result grid (macros, water, etc.) ───────────────────────────────────────── */
.result-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(120px,1fr)); gap: .875rem; margin-bottom: .875rem; }
.result-stat { text-align: center; padding: .875rem; background: var(--c-white); border-radius: var(--radius); border: 1px solid var(--c-border); }
.result-stat__value { display: block; font-size: 1.625rem; font-weight: 800; color: var(--c-text); line-height: 1; margin-bottom: .25rem; }
.result-stat__label { font-size: .75rem; font-weight: 600; color: var(--c-muted); text-transform: uppercase; letter-spacing: .05em; }

/* ── Heart rate zones table ──────────────────────────────────────────────────── */
.result-table { width: 100%; border-collapse: collapse; font-size: .875rem; margin-top: 1rem; }
.result-table th { background: var(--c-border); padding: .5rem .75rem; text-align: left; font-weight: 600; }
.result-table td { padding: .5rem .75rem; border-bottom: 1px solid var(--c-border); }
.result-table tr:last-child td { border-bottom: none; }
.result-table tr:nth-child(even) td { background: rgba(0,0,0,.02); }
.zone-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: .375rem; vertical-align: middle; }

/* ── Hamburger toggle ────────────────────────────────────────────────────────── */
.nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; background: none; border: none;
    padding: 8px; cursor: pointer; border-radius: var(--radius);
}
.nav-toggle:hover { background: var(--c-bg); }
.nav-toggle__bar {
    display: block; width: 22px; height: 2px;
    background: var(--c-text); border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}

/* ── Mobile nav ──────────────────────────────────────────────────────────────── */
.mobile-nav {
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--c-white); z-index: 99;
    transform: translateX(100%); transition: transform .25s ease;
    overflow-y: auto; display: flex; flex-direction: column;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__inner  { padding: 1.5rem; display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav__link   {
    display: block; padding: .875rem 1rem;
    font-size: 1.0625rem; font-weight: 500; color: var(--c-text);
    border-radius: var(--radius); transition: background .15s;
}
.mobile-nav__link:hover { background: var(--c-bg); color: var(--c-text); }
.mobile-nav__divider { height: 1px; background: var(--c-border); margin: .75rem 0; }
.mobile-nav__cta {
    display: block; margin-top: .5rem; padding: .875rem 1rem;
    background: var(--c-primary); color: var(--c-white);
    font-size: 1.0625rem; font-weight: 600; border-radius: var(--radius);
    text-align: center;
}
.mobile-nav__cta:hover { background: var(--c-primary-dark); color: var(--c-white); }
.mobile-nav__scrim {
    display: none; position: fixed; inset: 0; z-index: 98;
    background: rgba(0,0,0,.3);
}
.mobile-nav__scrim.is-open { display: block; }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer-main   { background: #0f172a; padding: 4rem 0 3rem; }
.footer-bottom { background: #0a1020; padding: 1.25rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); text-align: center; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.4fr 1fr 1fr;
    gap: 3rem;
}

/* Brand col */
.footer-col--brand { display: flex; flex-direction: column; gap: 1rem; }

.footer-logo {
    display: flex; align-items: center; gap: .5rem;
    font-size: 1.0625rem; font-weight: 700; color: #fff;
}
.footer-logo:hover { color: #fff; }
.footer-logo__icon {
    width: 30px; height: 30px; background: var(--c-primary);
    border-radius: 7px; display: flex; align-items: center;
    justify-content: center; font-size: .875rem; flex-shrink: 0;
}

.footer-tagline { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.65; max-width: 220px; }

.footer-cta {
    display: inline-block; font-size: .875rem; font-weight: 600;
    color: var(--c-primary); text-decoration: underline;
    text-underline-offset: 3px; margin-top: .25rem;
}
.footer-cta:hover { color: #34d399; }

/* Nav cols */
.footer-col__heading {
    font-size: .6875rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.35);
    margin-bottom: 1.125rem;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: .625rem; }
.footer-nav a {
    font-size: .9rem; color: rgba(255,255,255,.6);
    transition: color .15s;
}
.footer-nav a:hover { color: #fff; }

/* ── Hero split layout ───────────────────────────────────────────────────────── */
.hero--split { text-align: left; padding: 4rem 0 3.5rem; }
.hero--split .container { display: flex; align-items: center; gap: 3.5rem; }
.hero--split .hero__content { flex: 1; min-width: 0; }
.hero--split .hero__visual  { flex: 0 0 300px; }
.hero--split .hero__sub     { margin: 0 0 2rem; max-width: 100%; }
.hero--split .hero__actions { justify-content: flex-start; }
.hero--split .hero__trust   { justify-content: flex-start; }

/* ── Health Planner phone mockup (hero) ──────────────────────────────────────── */
.hp-mockup {
    background: #F7F6F2;
    border-radius: 28px;
    padding: 0 14px 20px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.22), 0 0 0 1px rgba(0,0,0,0.08);
    width: 100%; max-width: 300px; margin: 0 auto;
    font-family: -apple-system, 'Inter', system-ui, sans-serif;
}
.hp-mockup__phone-bar {
    display: flex; justify-content: center; align-items: center;
    height: 36px; font-size: 12px; font-weight: 600; color: #1A1A1A;
}
.hp-mockup__header { padding: 0 8px 14px; border-bottom: 1px solid rgba(26,26,26,.08); margin-bottom: 10px; }
.hp-mockup__date  { display: block; font-size: 11px; color: #8A8A8A; margin-bottom: 4px; }
.hp-mockup__title { display: block; font-size: 15px; font-weight: 500; color: #1A1A1A; }
.hp-mockup__cards { display: flex; flex-direction: column; gap: 9px; }
.hp-mockup__card  {
    background: #fff; border-radius: 13px; padding: 12px 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.hp-mockup__card--done { background: #EEF2F9; box-shadow: none; }
.hp-mockup__pillar {
    display: block; font-size: 9px; font-weight: 700;
    letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 5px;
}
.hp-mockup__pillar--move { color: #4A6FA5; }
.hp-mockup__pillar--eat  { color: #5A8A6A; }
.hp-mockup__pillar--live { color: #B5654A; }
.hp-mockup__action { display: block; font-size: 16px; font-weight: 700; color: #1A1A1A; line-height: 1.2; margin-bottom: 4px; }
.hp-mockup__action--done { opacity: .42; text-decoration: line-through; }
.hp-mockup__sub   { display: block; font-size: 10px; color: #8A8A8A; }
.hp-mockup__footer { padding: 14px 8px 0; }
.hp-mockup__why   { font-size: 12px; font-weight: 500; color: #4A6FA5; text-decoration: underline; text-underline-offset: 2px; }

/* ── Stats bar ───────────────────────────────────────────────────────────────── */
.stats-bar { background: var(--c-white); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); padding: 2.25rem 0; }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.stat-item { text-align: center; }
.stat-item__num   { display: block; font-size: 2.25rem; font-weight: 800; color: var(--c-text); line-height: 1; margin-bottom: .375rem; }
.stat-item__label { display: block; font-size: .8125rem; color: var(--c-muted); font-weight: 500; }

/* ── Steps / How it works ────────────────────────────────────────────────────── */
.steps-section { background: var(--c-bg); }
.steps { display: flex; align-items: flex-start; gap: 0; }
.step  { flex: 1; text-align: center; padding: 0 1.5rem; }
.step__num {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--c-primary); color: var(--c-white);
    font-size: 1.25rem; font-weight: 800; display: flex;
    align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
}
.step h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: .625rem; }
.step p  { font-size: .9375rem; color: var(--c-muted); line-height: 1.65; }
.step__arrow {
    font-size: 1.5rem; color: var(--c-border); flex-shrink: 0;
    align-self: center; padding-bottom: 3.5rem;
}

/* ── Dark feature section ────────────────────────────────────────────────────── */
.feature-dark { background: #0f172a; color: #fff; padding: 5rem 0; }
.feature-dark__inner { display: flex; align-items: center; gap: 5rem; }
.feature-dark__copy  { flex: 1; min-width: 0; }
.feature-dark__visual { flex: 0 0 360px; }
.feature-dark__eyebrow {
    display: inline-block; font-size: .8125rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--c-primary); margin-bottom: 1rem;
}
.feature-dark h2 { font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; }
.feature-dark p  { color: rgba(255,255,255,.7); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 1.75rem; }

.feature-dark__list { list-style: none; display: flex; flex-direction: column; gap: .875rem; margin-bottom: 2rem; }
.feature-dark__list li { display: flex; align-items: center; gap: .75rem; font-size: .9375rem; color: rgba(255,255,255,.85); }
.fdc-pill {
    display: inline-block; font-size: .625rem; font-weight: 700;
    letter-spacing: 1.4px; text-transform: uppercase;
    padding: .2rem .55rem; border-radius: 4px; flex-shrink: 0;
}
.fdc-pill--move { background: rgba(74,111,165,.25); color: #93b4df; }
.fdc-pill--eat  { background: rgba(90,138,106,.25); color: #92c4a4; }
.fdc-pill--live { background: rgba(181,101,74,.25); color: #dfa585; }

.feature-dark__actions { display: flex; align-items: center; gap: 1.5rem; }
.feature-dark__link { font-size: .9375rem; color: rgba(255,255,255,.55); text-decoration: underline; text-underline-offset: 3px; }
.feature-dark__link:hover { color: #fff; }

/* Scoring mockup (inside dark section) */
.fd-mockup {
    background: #1e293b; border-radius: 20px; padding: 2rem;
    box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.fd-mockup__row { display: flex; align-items: center; justify-content: space-between; margin-bottom: .625rem; }
.fd-score-label { display: flex; align-items: center; gap: .625rem; font-size: .9375rem; font-weight: 500; color: rgba(255,255,255,.85); }
.fd-score-val   { font-size: .9375rem; font-weight: 600; color: #fff; font-variant-numeric: tabular-nums; }
.fd-score-val small { color: rgba(255,255,255,.4); font-weight: 400; }
.fd-bar-track   { height: 3px; background: rgba(255,255,255,.08); border-radius: 2px; margin-bottom: .5rem; }
.fd-bar-fill    { height: 100%; border-radius: 2px; }
.fd-score-alt   { font-size: .8125rem; color: rgba(255,255,255,.4); margin-bottom: 0; }
.fd-divider     { height: 1px; background: rgba(255,255,255,.06); margin: 1.25rem 0; }
.fd-footnote    { font-size: .75rem; color: rgba(255,255,255,.3); text-align: center; margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.06); padding-top: 1rem; }
.fd-pill {
    display: inline-block; font-size: .5625rem; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    padding: .15rem .45rem; border-radius: 3px;
}
.fd-pill--move { background: rgba(74,111,165,.3);  color: #93b4df; }
.fd-pill--eat  { background: rgba(90,138,106,.3);  color: #92c4a4; }
.fd-pill--live { background: rgba(181,101,74,.3);  color: #dfa585; }

/* ── Features 3-col ──────────────────────────────────────────────────────────── */
.features-section { background: var(--c-white); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.feature-card { padding: 2rem; border: 1px solid var(--c-border); border-radius: var(--radius-lg); background: var(--c-bg); }
.feature-card__icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.feature-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: .625rem; }
.feature-card p  { font-size: .9375rem; color: var(--c-muted); line-height: 1.65; }

/* ── Final CTA ───────────────────────────────────────────────────────────────── */
.cta-final { background: #0f172a; color: #fff; padding: 5rem 0; text-align: center; }
.cta-final h2 { font-size: clamp(1.625rem,3vw,2.25rem); font-weight: 800; margin-bottom: .875rem; }
.cta-final p  { color: rgba(255,255,255,.65); font-size: 1.0625rem; margin-bottom: 2rem; }

/* ── Search results ──────────────────────────────────────────────────────────── */
.search-form { margin-top: 1.5rem; }
.search-form__inner { display: flex; gap: .5rem; max-width: 560px; }
.search-form__input {
    flex: 1; padding: .75rem 1rem; border-radius: var(--radius);
    border: 1.5px solid rgba(255,255,255,.35); background: rgba(255,255,255,.15);
    color: #fff; font-size: 1rem; font-family: inherit;
    transition: border-color .15s;
}
.search-form__input::placeholder { color: rgba(255,255,255,.55); }
.search-form__input:focus { outline: none; border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.2); }
.search-form__btn {
    padding: .75rem 1.5rem; background: var(--c-white); color: var(--c-primary-dark);
    border: none; border-radius: var(--radius); font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: opacity .15s; white-space: nowrap;
}
.search-form__btn:hover { opacity: .9; }
.search-no-results { padding: 1rem 0 2rem; }
.search-no-results__msg { font-size: 1.0625rem; color: var(--c-muted); margin-bottom: 2rem; }

/* ── Legal pages ─────────────────────────────────────────────────────────────── */
.legal-page { font-size: 1rem; line-height: 1.75; }
.legal-page h2 { font-size: 1.25rem; font-weight: 700; margin: 2.25rem 0 .75rem; padding-top: .25rem; border-top: 1px solid var(--c-border); }
.legal-page h3 { font-size: 1rem; font-weight: 700; margin: 1.5rem 0 .5rem; color: var(--c-text); }
.legal-page p  { margin-bottom: 1rem; color: var(--c-text); }
.legal-page ul { margin: .5rem 0 1rem 1.5rem; }
.legal-page li { margin-bottom: .5rem; }
.legal-page a  { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }
.legal-page a:hover { color: var(--c-primary-dark); }
.legal-page strong { font-weight: 600; }
.legal-page code { font-size: .875em; background: var(--c-bg); padding: .15em .4em; border-radius: 3px; border: 1px solid var(--c-border); }
.legal-updated { font-size: .875rem; color: var(--c-muted); margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--c-border); }

/* ── Ad slots ────────────────────────────────────────────────────────────────── */
.hg-ad {
    width: 100%; overflow: hidden; text-align: center;
    /* Empty slots collapse to nothing */
}
.hg-ad:empty { display: none; }
.hg-ad--calc { margin: 2rem 0; }
.hg-ad--blog-sidebar { margin-bottom: 1.25rem; }
.hg-ad--blog-content { margin: 1.5rem 0; }

/* ── Cookie consent banner ───────────────────────────────────────────────────── */
.hg-cookie-banner {
    position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
    width: calc(100% - 3rem); max-width: 680px;
    background: #1e293b; color: #e2e8f0;
    border-radius: var(--radius-lg); padding: 1.125rem 1.5rem;
    display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
    z-index: 9999; box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.hg-cookie-banner[hidden] { display: none !important; }
.hg-cookie-banner__text { flex: 1; min-width: 200px; font-size: .875rem; line-height: 1.55; margin: 0; }
.hg-cookie-banner__actions { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }
.hg-cookie-banner__btn {
    padding: .5rem 1.125rem; border-radius: var(--radius);
    font-size: .875rem; font-weight: 600; border: none; cursor: pointer;
    transition: opacity .15s;
}
.hg-cookie-banner__btn:hover { opacity: .85; }
.hg-cookie-banner__btn--accept { background: var(--c-primary); color: #fff; }
.hg-cookie-banner__btn--decline { background: rgba(255,255,255,.12); color: #e2e8f0; }
.hg-cookie-banner__link { font-size: .8125rem; color: rgba(255,255,255,.5); text-decoration: underline; text-underline-offset: 2px; white-space: nowrap; }
.hg-cookie-banner__link:hover { color: rgba(255,255,255,.8); }

/* ── 404 page ────────────────────────────────────────────────────────────────── */
.not-found { padding: 5rem 0; }
.not-found__hero { text-align: center; margin-bottom: 3.5rem; }
.not-found__code { font-size: 6rem; font-weight: 900; color: var(--c-primary); line-height: 1; margin-bottom: .5rem; }
.not-found__title { font-size: 2rem; font-weight: 800; margin-bottom: .75rem; }
.not-found__sub   { color: var(--c-muted); font-size: 1.0625rem; max-width: 440px; margin: 0 auto 1.75rem; line-height: 1.65; }
.not-found__tools { }
.not-found__tools-label { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-muted); margin-bottom: 1.25rem; text-align: center; }

/* ── FAQ accordion ───────────────────────────────────────────────────────────── */
.calc-faq { padding: 2.5rem 0 1rem; border-top: 1px solid var(--c-border); }
.calc-faq__heading { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.25rem; }
.calc-faq__list { display: flex; flex-direction: column; gap: .5rem; }
.calc-faq__item {
    background: var(--c-white); border: 1px solid var(--c-border);
    border-radius: var(--radius); overflow: hidden;
}
.calc-faq__item[open] { border-color: var(--c-primary); }
.calc-faq__q {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.25rem; font-size: .9375rem; font-weight: 600;
    cursor: pointer; list-style: none; user-select: none;
    gap: 1rem;
}
.calc-faq__q::-webkit-details-marker { display: none; }
.calc-faq__q::after {
    content: '+'; flex-shrink: 0; font-size: 1.25rem; font-weight: 400;
    color: var(--c-primary); transition: transform .2s;
}
.calc-faq__item[open] .calc-faq__q::after { content: '−'; }
.calc-faq__a {
    padding: 0 1.25rem 1rem; font-size: .9375rem; color: var(--c-muted);
    line-height: 1.7; border-top: 1px solid var(--c-border);
    padding-top: .875rem;
}


/* ── Calculator related tools ────────────────────────────────────────────────── */
.calc-related { padding: 2.5rem 0 1rem; border-top: 1px solid var(--c-border); }
.calc-related__heading {
    font-size: .6875rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--c-muted); margin-bottom: 1rem;
}
.calc-related__grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.calc-related__card {
    display: flex; align-items: center; gap: .875rem;
    padding: .875rem 1rem; background: var(--c-white);
    border: 1px solid var(--c-border); border-radius: var(--radius);
    color: var(--c-text); transition: border-color .15s, box-shadow .15s;
}
.calc-related__card:hover {
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px var(--c-primary-light);
    color: var(--c-text);
}
.calc-related__icon  { font-size: 1.375rem; flex-shrink: 0; line-height: 1; }
.calc-related__info  { min-width: 0; flex: 1; }
.calc-related__title { display: block; font-size: .9375rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.calc-related__desc  { display: block; font-size: .8125rem; color: var(--c-muted); line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.calc-related__arrow { margin-left: auto; flex-shrink: 0; color: var(--c-muted); transition: transform .15s, color .15s; }
.calc-related__card:hover .calc-related__arrow { transform: translateX(3px); color: var(--c-primary); }

.calc-planner-cta { padding: 1.5rem 0 3rem; }
.calc-planner-cta__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    background: linear-gradient(135deg,#065f46,#047857); color: #fff;
    border-radius: var(--radius-lg); padding: 2rem 2.5rem;
}
.calc-planner-cta__text h3 { font-size: 1.1875rem; font-weight: 700; margin-bottom: .375rem; color: #fff; }
.calc-planner-cta__text p  { font-size: .9375rem; color: rgba(255,255,255,.8); margin: 0; }

/* ── Blog topbar ─────────────────────────────────────────────────────────────── */
.blog-topbar { background: var(--c-white); border-bottom: 1px solid var(--c-border); padding: .75rem 0; font-size: .875rem; color: var(--c-muted); }
.blog-topbar a { color: var(--c-primary); }
.blog-topbar a:hover { color: var(--c-primary-dark); }
.blog-topbar__sep { margin: 0 .5rem; }

/* ── Blog 2-col layout ───────────────────────────────────────────────────────── */
.blog-layout { padding: 3rem 0 5rem; }
.blog-layout__inner { display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem; align-items: start; }

/* ── Blog article ────────────────────────────────────────────────────────────── */
.blog-article__hero { margin-bottom: 2rem; border-radius: var(--radius-lg); overflow: hidden; }
.blog-article__hero-img { width: 100%; display: block; }
.blog-article__title { font-size: clamp(1.625rem,3vw,2.25rem); font-weight: 800; line-height: 1.2; margin-bottom: .875rem; }
.blog-article__meta {
    display: flex; align-items: center; flex-wrap: wrap; gap: .5rem;
    font-size: .875rem; color: var(--c-muted);
    margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--c-border);
}
.blog-article__sep { color: var(--c-border); }
.blog-article__cat { color: var(--c-primary); font-weight: 600; }
.blog-article__cat:hover { color: var(--c-primary-dark); }
.blog-article__body { font-size: 1.0625rem; line-height: 1.8; }
.blog-article__body h2 { font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 .875rem; }
.blog-article__body h3 { font-size: 1.1875rem; font-weight: 700; margin: 2rem 0 .75rem; }
.blog-article__body p  { margin-bottom: 1.25rem; }
.blog-article__body ul,
.blog-article__body ol { margin: 0 0 1.25rem 1.5rem; }
.blog-article__body li { margin-bottom: .5rem; }
.blog-article__body a  { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }
.blog-article__body blockquote {
    border-left: 4px solid var(--c-primary); padding: 1rem 1.5rem;
    background: var(--c-bg); border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0; font-style: italic; color: var(--c-muted);
}

/* ── Post nav ────────────────────────────────────────────────────────────────── */
.blog-post-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--c-border); }
.blog-post-nav__link { display: flex; flex-direction: column; gap: .25rem; max-width: 45%; }
.blog-post-nav__link--next { text-align: right; }
.blog-post-nav__dir   { font-size: .8125rem; color: var(--c-muted); }
.blog-post-nav__title { font-size: .9375rem; font-weight: 600; color: var(--c-primary); }
.blog-post-nav__title:hover { color: var(--c-primary-dark); }

/* ── Blog sidebar ────────────────────────────────────────────────────────────── */
.blog-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 1.25rem; }
.blog-sidebar__widget { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 1.5rem; }
.blog-sidebar__widget--cta { background: #0f172a; border-color: #0f172a; color: #fff; }
.blog-sidebar__eyebrow { font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-primary); margin-bottom: .5rem; }
.blog-sidebar__cta-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: .5rem; color: #fff; }
.blog-sidebar__cta-sub   { font-size: .875rem; color: rgba(255,255,255,.65); margin-bottom: 1.25rem; line-height: 1.55; }
.blog-sidebar__heading { font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: .875rem; }
.blog-sidebar__calc-list { list-style: none; display: flex; flex-direction: column; }
.blog-sidebar__calc-list a {
    display: flex; align-items: center; gap: .625rem;
    padding: .5rem .625rem; border-radius: var(--radius);
    font-size: .875rem; color: var(--c-text); transition: background .15s;
}
.blog-sidebar__calc-list a:hover { background: var(--c-bg); color: var(--c-primary); }
.blog-sidebar__calc-icon { font-size: 1.0625rem; }
.blog-sidebar__recent { list-style: none; display: flex; flex-direction: column; gap: .875rem; }
.blog-sidebar__recent li { display: flex; flex-direction: column; gap: .2rem; }
.blog-sidebar__recent a { font-size: .875rem; font-weight: 600; color: var(--c-text); }
.blog-sidebar__recent a:hover { color: var(--c-primary); }
.blog-sidebar__recent time { font-size: .8125rem; color: var(--c-muted); }

/* ── Blog archive / home ─────────────────────────────────────────────────────── */
.blog-list-hero { background: linear-gradient(135deg,#065f46,#047857); color: #fff; padding: 3rem 0; }
.blog-list-hero__title { font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 800; margin-bottom: .5rem; }
.blog-list-hero__sub   { color: rgba(255,255,255,.75); font-size: 1.0625rem; margin: 0; }
.blog-list-body { padding: 3rem 0 5rem; }

.blog-post-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; margin-bottom: 3rem; }
.blog-post-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s; }
.blog-post-card:hover { box-shadow: var(--shadow-md); }
.blog-post-card__img-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-post-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; display: block; }
.blog-post-card:hover .blog-post-card__img { transform: scale(1.03); }
.blog-post-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .625rem; flex: 1; }
.blog-post-card__cat { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-primary); }
.blog-post-card__title { font-size: 1.0625rem; font-weight: 700; line-height: 1.35; }
.blog-post-card__title a { color: var(--c-text); }
.blog-post-card__title a:hover { color: var(--c-primary); }
.blog-post-card__excerpt { font-size: .9rem; color: var(--c-muted); line-height: 1.6; flex: 1; }
.blog-post-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; }
.blog-post-card__date { font-size: .8125rem; color: var(--c-muted); }
.blog-post-card__read { font-size: .875rem; font-weight: 600; color: var(--c-primary); }
.blog-post-card__read:hover { color: var(--c-primary-dark); }
.blog-empty { text-align: center; color: var(--c-muted); padding: 4rem 0; font-size: 1.0625rem; }

.blog-pagination { display: flex; justify-content: center; }
.blog-pagination .nav-links { display: flex; gap: .5rem; align-items: center; }
.blog-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 .625rem;
    border-radius: var(--radius); border: 1px solid var(--c-border);
    font-size: .9375rem; color: var(--c-text); transition: all .15s;
}
.blog-pagination .page-numbers:hover { border-color: var(--c-primary); color: var(--c-primary); }
.blog-pagination .page-numbers.current { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* ── Blog share buttons ──────────────────────────────────────────────────────── */
.blog-share { display: flex; align-items: center; gap: .625rem; flex-wrap: wrap; margin: 2rem 0 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--c-border); }
.blog-share__label { font-size: .875rem; font-weight: 600; color: var(--c-muted); margin-right: .25rem; }
.blog-share__btn {
    display: inline-flex; align-items: center; gap: .375rem;
    padding: .4rem .875rem; border-radius: var(--radius);
    font-size: .8125rem; font-weight: 600;
    cursor: pointer; border: 1px solid var(--c-border);
    background: #fff; color: var(--c-text);
    text-decoration: none; transition: all .15s;
}
.blog-share__btn:hover { border-color: var(--c-primary); color: var(--c-primary); }
.blog-share__btn--x:hover { border-color: #000; color: #000; }
.blog-share__btn--fb:hover { border-color: #1877f2; color: #1877f2; }

/* ── Blog author bio ─────────────────────────────────────────────────────────── */
.blog-author { display: flex; align-items: flex-start; gap: 1.25rem; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; margin: 1.5rem 0; }
.blog-author__img { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.blog-author__name { font-size: .9375rem; font-weight: 700; margin: 0 0 .25rem; color: var(--c-heading); }
.blog-author__bio { font-size: .9rem; color: var(--c-muted); line-height: 1.65; margin: 0; }

/* ── Copy result button ──────────────────────────────────────────────────────── */
.result-copy {
    display: inline-flex; align-items: center; gap: .375rem;
    margin-top: 1rem;
    padding: .4rem .875rem;
    background: transparent; border: 1px solid var(--c-border);
    border-radius: var(--radius); font-size: .8125rem; color: var(--c-muted);
    cursor: pointer; transition: all .15s;
}
.result-copy:hover { border-color: var(--c-primary); color: var(--c-primary); }
.result-copy::before { content: '⎘'; font-size: .9rem; }

/* ── About page ──────────────────────────────────────────────────────────────── */
.about-page { max-width: 780px; }
.about-page h2 { font-size: 1.375rem; font-weight: 700; margin: 2.5rem 0 1rem; color: var(--c-heading); }
.about-page h2:first-child { margin-top: 0; }
.about-mission p { font-size: 1.0625rem; line-height: 1.75; color: var(--c-text); }
.about-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: .5rem; }
.about-pillar { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 1.5rem; }
.about-pillar__icon { font-size: 1.75rem; display: block; margin-bottom: .75rem; }
.about-pillar h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; color: var(--c-heading); }
.about-pillar p { font-size: .9rem; line-height: 1.65; color: var(--c-muted); }
.about-table { width: 100%; border-collapse: collapse; font-size: .9125rem; }
.about-table th, .about-table td { padding: .625rem .875rem; border-bottom: 1px solid var(--c-border); text-align: left; }
.about-table th { background: var(--c-surface); font-weight: 600; color: var(--c-heading); }
.about-table tr:last-child td { border-bottom: none; }
.about-disclaimer { background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; }
.about-disclaimer h2 { margin-top: 0; font-size: 1rem; }
.about-disclaimer p { font-size: .9rem; line-height: 1.65; color: #78350f; margin: 0; }
.about-disclaimer a { color: #92400e; }

/* ── Contact page ────────────────────────────────────────────────────────────── */
.contact-page { max-width: 720px; }
.contact-page > p { font-size: 1.0625rem; line-height: 1.75; color: var(--c-text); margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.contact-method { display: flex; align-items: flex-start; gap: 1rem; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; }
.contact-method__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.contact-method h3 { font-size: 1rem; font-weight: 700; margin: 0 0 .25rem; color: var(--c-heading); }
.contact-method p { font-size: .9375rem; color: var(--c-muted); margin: 0; line-height: 1.6; }
.contact-method a { color: var(--c-primary); }
.contact-faq h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--c-heading); }
.contact-faq__item { border: 1px solid var(--c-border); border-radius: var(--radius); margin-bottom: .5rem; overflow: hidden; }
.contact-faq__q { font-size: .9375rem; font-weight: 600; padding: 1rem 1.25rem; cursor: pointer; color: var(--c-heading); list-style: none; display: flex; align-items: center; justify-content: space-between; }
.contact-faq__q::after { content: '+'; font-size: 1.125rem; color: var(--c-muted); flex-shrink: 0; }
.contact-faq__item[open] .contact-faq__q::after { content: '−'; }
.contact-faq__a { padding: 0 1.25rem 1rem; font-size: .9rem; color: var(--c-muted); line-height: 1.7; }
.contact-faq__a p { margin: 0; }

/* ── Back to top ─────────────────────────────────────────────────────────────── */
.back-top {
    position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
    width: 2.5rem; height: 2.5rem;
    background: var(--c-primary); color: #fff;
    border: none; border-radius: 50%;
    font-size: 1.125rem; line-height: 1;
    cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,.18);
    transition: background .15s, transform .15s;
}
.back-top:hover { background: var(--c-primary-dark); transform: translateY(-2px); }

/* ── Footer cookie settings button ───────────────────────────────────────────── */
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-cookie-btn {
    background: none; border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.55); font-size: .8rem;
    padding: .25rem .625rem; border-radius: var(--radius);
    cursor: pointer; transition: all .15s;
}
.footer-cookie-btn:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ── Print styles ────────────────────────────────────────────────────────────── */
@media print {
    .site-header, .site-footer, .unit-toggle, .calc-submit, .result-copy,
    .calc-related, .calc-planner-cta, .calc-faq, .hg-ad, .hg-cookie-banner,
    .blog-sidebar, .nav-toggle { display: none !important; }
    body { font-size: 12pt; color: #000; background: #fff; }
    .container { max-width: 100%; padding: 0; }
    .hg-calc { box-shadow: none; border: 1px solid #ccc; padding: 1rem; }
    .calc-result { border: 1px solid #ccc; padding: 1rem; }
    a { color: #000; text-decoration: underline; }
}

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .feature-dark__inner { gap: 3rem; }
    .feature-dark__visual { flex: 0 0 300px; }
    .blog-layout__inner { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; display: grid; grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .hero { padding: 3.5rem 0 3rem; }
    .hero--split { padding: 3rem 0; }
    .hero--split .container { flex-direction: column; gap: 2.5rem; }
    .hero--split .hero__content { text-align: center; }
    .hero--split .hero__actions { justify-content: center; }
    .hero--split .hero__trust   { justify-content: center; }
    .hero--split .hero__visual  { flex: none; width: 100%; max-width: 280px; }
    .hero h1 { font-size: 2rem; }
    .site-nav a:not(.btn-primary) { display: none; }
    .nav-toggle { display: flex; }
    .calc-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 3rem 0; }
    .hg-calc { padding: 1.5rem; }
    .result-value { font-size: 2.25rem; }
    .stats-bar__grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
    .steps { flex-direction: column; align-items: center; gap: 2rem; }
    .step__arrow { transform: rotate(90deg); padding-bottom: 0; }
    .feature-dark__inner { flex-direction: column; gap: 2.5rem; }
    .feature-dark__visual { flex: none; width: 100%; max-width: 420px; }
    .features-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-col--brand { grid-column: 1 / -1; }
    .footer-tagline { max-width: 100%; }
    .calc-related__grid { grid-template-columns: 1fr; }
    .calc-planner-cta__inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .blog-post-grid { grid-template-columns: 1fr; }
    .blog-sidebar { grid-template-columns: 1fr; }
    .about-pillars { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .calc-grid { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__trust { gap: 1rem; }
    .result-grid { grid-template-columns: repeat(2,1fr); }
    .stats-bar__grid { grid-template-columns: repeat(2,1fr); }
    .feature-dark__actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; }
}
