/* =========================================================================
   BPA PRIME — design system (KPMG-inspired edition)
   Direction: the visual language of a Big Four advisory firm — deep
   corporate blue on crisp white, a single electric cobalt accent, sharp
   zero-radius geometry, bold grotesque headlines, and diagonal "cut"
   shapes on dark panels. Original palette and type; no KPMG trademarks.
   ========================================================================= */

:root {
	/* Palette */
	--ink:    #0A1A3C;  /* deep navy — dark panels, footer */
	--pine:   #00338D;  /* primary corporate blue */
	--pine-2: #002569;  /* hover blue */
	--gold:   #1E49E2;  /* electric cobalt accent (rules, highlights, primary CTA) */
	--gold-2: #1636AD;  /* cobalt for text on white (AA) */
	--pink:   #E70865;  /* magenta — used once per view, for the "stamp" moments */
	--paper:  #FFFFFF;  /* crisp white ground */
	--paper-2:#F0F3F8;  /* cool grey-blue tinted section */
	--stone:  #46536B;  /* muted slate text (AA on white) */
	--line:   #D9DFEA;  /* hairline rules */
	--white:  #FFFFFF;

	/* Type — bold corporate grotesque, no serifs */
	--font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
	--font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
	--font-mono: "Inter", "Helvetica Neue", Arial, sans-serif;

	--step--1: clamp(.83rem, .8rem + .15vw, .9rem);
	--step-0:  clamp(1rem, .96rem + .2vw, 1.0625rem);
	--step-1:  clamp(1.2rem, 1.1rem + .5vw, 1.4rem);
	--step-2:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
	--step-3:  clamp(2rem, 1.6rem + 2vw, 3rem);
	--step-4:  clamp(2.6rem, 2rem + 3.2vw, 4.4rem);

	--wrap: 72rem;
	--radius: 0;              /* sharp Big-Four geometry throughout */
	--shadow: 0 1px 2px rgb(10 26 60 / .07), 0 10px 30px rgb(10 26 60 / .1);
	--focus: 3px solid var(--gold);
}

/* Dyslexia-friendly reading mode (toggled from the masthead, persisted). */
html.a11y-read body {
	--font-body: "Atkinson Hyperlegible", system-ui, sans-serif;
	--font-display: "Atkinson Hyperlegible", system-ui, sans-serif;
	letter-spacing: .01em;
	word-spacing: .06em;
	line-height: 1.75;
}

/* ------------------------------------------------------------------ base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--step-0);
	line-height: 1.65;
	color: var(--ink);
	background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -.02em;
	margin: 0 0 .5em;
	text-wrap: balance;
	color: var(--pine);
}
h1 { font-size: var(--step-4); font-weight: 800; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); font-weight: 600; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
a { color: var(--pine); text-underline-offset: .18em; }
a:hover { color: var(--pine-2); }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-weight: 600; letter-spacing: 0; }

:focus-visible { outline: var(--focus); outline-offset: 2px; border-radius: 2px; }
::selection { background: var(--gold); color: var(--white); }

/* The hidden attribute must always win — prevents overlays (search dialog,
   mega menus) from rendering on page load before a user opens them. */
[hidden] { display: none !important; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }
.wrap--narrow { max-width: 46rem; }

.visually-hidden {
	position: absolute !important; width: 1px; height: 1px;
	clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
	position: absolute; left: 1rem; top: -4rem; z-index: 200;
	background: var(--ink); color: var(--paper); padding: .7rem 1.2rem;
	border-radius: var(--radius); transition: top .15s;
}
.skip-link:focus { top: 1rem; }
.hp { position: absolute !important; left: -9999px; }

/* --------------------------------------------------------------- buttons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	font: 600 var(--step--1)/1 var(--font-body);
	padding: .85rem 1.5rem; border-radius: var(--radius);
	border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
	transition: background-color .15s, color .15s, border-color .15s, transform .12s;
	min-height: 44px; /* WCAG 2.2 target size */
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-2); color: var(--white); }
.btn--green { background: var(--pine); color: var(--paper); }
.btn--green:hover { background: var(--pine-2); color: var(--paper); }
.btn--ghost { background: transparent; color: var(--pine); border-color: currentColor; }
.btn--ghost:hover { background: rgb(0 51 141 / .08); }
.btn--paper { background: var(--paper); color: var(--ink); }
.btn--paper:hover { background: var(--white); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: var(--step-0); }
.btn--sm { padding: .55rem 1rem; min-height: 36px; }
.btn--block { width: 100%; }
.text-link { font-weight: 600; }

.chip {
	display: inline-block; font: 600 .72rem/1 var(--font-body);
	text-transform: uppercase; letter-spacing: .1em;
	background: rgb(0 51 141 / .08); color: var(--pine);
	padding: .45rem .7rem; border-radius: 0; text-decoration: none;
}
a.chip:hover { background: rgb(0 51 141 / .16); }
.chip--lg { font-size: .85rem; padding: .7rem 1.1rem; }
.chip--quiet { background: transparent; padding-inline: 0; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; padding: 0; margin: 1.5rem 0; }

.eyebrow {
	font: 700 .76rem/1 var(--font-body);
	text-transform: uppercase; letter-spacing: .14em;
	color: var(--gold-2); margin: 0 0 .9rem;
	display: flex; align-items: center; gap: .55rem;
}
.eyebrow::before { content: ""; width: 1.4rem; height: 3px; background: var(--gold); }

/* -------------------------------------------------------------- masthead */
.masthead {
	position: sticky; top: 0; z-index: 100;
	background: color-mix(in srgb, var(--paper) 92%, transparent);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow .2s;
}
.masthead.is-stuck { box-shadow: var(--shadow); }
.masthead__inner { display: flex; align-items: center; gap: 1.25rem; min-height: 4.25rem; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.brand__mark {
	font: 600 .9rem/1 var(--font-mono); color: var(--paper);
	background: var(--pine); border-bottom: 3px solid var(--gold);
	padding: .5rem .55rem; border-radius: 3px;
}
.brand__name { font: 600 1.02rem/1.2 var(--font-body); }

.nav { margin-left: auto; }
.nav__list { list-style: none; display: flex; gap: .25rem; margin: 0; padding: 0; }
.nav__item > a, .nav__toggle {
	display: inline-flex; align-items: center; gap: .35rem;
	font: 500 .95rem/1 var(--font-body); color: var(--ink);
	text-decoration: none; padding: .8rem .8rem; border: 0; background: none; cursor: pointer;
	border-radius: var(--radius);
}
.nav__item > a:hover, .nav__toggle:hover { background: rgb(0 51 141 / .06); color: var(--pine-2); }
.nav__caret { width: .5em; height: .5em; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-15%); }
.nav__toggle[aria-expanded="true"] .nav__caret { transform: rotate(-135deg) translateY(-15%); }

.mega {
	position: absolute; left: 0; right: 0; top: 100%;
	background: var(--white); border-bottom: 1px solid var(--line);
	box-shadow: var(--shadow);
}
.mega__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; padding-block: 1.75rem; }
.mega__col a { display: block; text-decoration: none; padding: .5rem 0; color: var(--ink); }
.mega__col a strong { display: block; font-weight: 600; }
.mega__col a span { display: block; font-size: .85rem; color: var(--stone); }
.mega__col a:hover strong { color: var(--pine); }
.mega__col--feature { background: var(--paper-2); border-radius: var(--radius); padding: 1.25rem; align-self: start; }

.masthead__actions { display: flex; align-items: center; gap: .5rem; }
.icon-btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: var(--radius);
	border: 1px solid var(--line); background: none; color: var(--ink); cursor: pointer;
}
.icon-btn:hover, .icon-btn[aria-pressed="true"] { background: rgb(0 51 141 / .08); border-color: var(--pine); }
.nav-burger { display: none; }

/* mobile nav */
@media (max-width: 62rem) {
	.masthead__cta { display: none; }
	.nav-burger {
		display: inline-flex; align-items: center; justify-content: center;
		width: 44px; height: 44px; background: none; border: 1px solid var(--line);
		border-radius: var(--radius); cursor: pointer;
	}
	.nav-burger__bar, .nav-burger__bar::before, .nav-burger__bar::after {
		content: ""; display: block; width: 18px; height: 2px; background: var(--ink);
		position: relative; transition: transform .2s;
	}
	.nav-burger__bar::before { position: absolute; top: -6px; }
	.nav-burger__bar::after { position: absolute; top: 6px; }
	.nav {
		position: fixed; inset: 4.25rem 0 0; background: var(--paper);
		transform: translateX(100%); transition: transform .25s ease;
		overflow-y: auto; padding: 1rem;
	}
	.nav.is-open { transform: none; }
	.nav__list { flex-direction: column; gap: 0; }
	.nav__item > a, .nav__toggle { width: 100%; font-size: 1.1rem; padding: 1rem .5rem; justify-content: space-between; }
	.mega { position: static; box-shadow: none; border: 0; background: transparent; }
	.mega__grid { grid-template-columns: 1fr; gap: 1rem; padding-block: .25rem 1rem; }
}

/* ------------------------------------------------------------------ hero */
.hero { background: var(--ink); color: var(--paper); padding-block: clamp(3rem, 8vw, 6rem) 0; position: relative; overflow: hidden; }
.hero { background: linear-gradient(120deg, var(--ink) 0%, var(--pine) 100%); }
.hero::after { /* signature diagonal cut, Big-Four style */
	content: ""; position: absolute; top: 0; right: -12%; width: 55%; height: 130%;
	background: linear-gradient(120deg, rgb(30 73 226 / .35), rgb(30 73 226 / 0) 60%);
	clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
	pointer-events: none;
}
.hero::before {
	content: ""; position: absolute; bottom: -1px; right: 0; width: 34%; height: 10px;
	background: var(--gold); clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
	z-index: 2;
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; z-index: 1; }
.hero__trust { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: #9DB4FF; display: flex; align-items: center; gap: .5rem; }
.hero__trust .dot { width: 9px; height: 9px; border-radius: 0; background: var(--pink); }
.hero h1 { color: var(--white); margin-top: .75rem; }
.hero__sub { font-size: var(--step-1); color: rgb(255 255 255 / .85); max-width: 34rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.75rem 0 1.25rem; }
.hero .btn--ghost { color: var(--paper); }
.hero .btn--ghost:hover { background: rgb(255 255 255 / .14); }
.hero__proof { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; padding: 0; margin: 0; font-size: .85rem; color: rgb(255 255 255 / .72); }
.hero__proof li::before { content: "✓ "; color: #9DB4FF; }

/* Signature: the Funding Readiness Statement */
.ledger {
	background: var(--paper); color: var(--ink); border-radius: var(--radius);
	box-shadow: 0 24px 60px rgb(0 0 0 / .35); padding: 1.5rem;
	border-top: 6px solid var(--gold);
}
.ledger__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; border-bottom: 2px solid var(--ink); padding-bottom: .8rem; margin-bottom: 1rem; font-size: .72rem; letter-spacing: .12em; }
.ledger__stamp {
	font: 700 .68rem/1 var(--font-body); text-transform: uppercase; letter-spacing: .1em;
	color: var(--pink); border: 2px solid var(--pink); border-radius: 0; padding: .35rem .6rem;
}
.ledger__row { display: grid; grid-template-columns: 1fr 2fr auto; gap: .8rem; align-items: center; padding: .55rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.ledger__bar { height: 6px; background: var(--paper-2); border-radius: 0; overflow: hidden; }
.ledger__bar i { display: block; height: 100%; width: var(--w, 0%); background: var(--gold); border-radius: 0; }
.ledger__total { display: flex; justify-content: space-between; padding-top: .9rem; margin-top: .3rem; border-top: 2px solid var(--gold); font-weight: 600; }

.hero__stats {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
	margin-top: clamp(2.5rem, 6vw, 4rem); padding-block: 1.75rem;
	border-top: 1px solid rgb(255 255 255 / .18); position: relative; z-index: 1;
}
.figure { display: grid; gap: .15rem; }
.figure__value { font: 700 var(--step-2)/1.1 var(--font-display); color: var(--white); border-bottom: 2px solid var(--gold); padding-bottom: .35rem; margin-bottom: .35rem; width: fit-content; }
.figure__label { font-size: .82rem; color: rgb(255 255 255 / .78); }
.section .figure__label, .section--tint .figure__label { color: var(--stone); }

@media (max-width: 56rem) {
	.hero__grid { grid-template-columns: 1fr; }
	.hero__ledger { max-width: 26rem; }
	.hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* -------------------------------------------------------------- trustbar */
.trustbar { border-bottom: 1px solid var(--line); background: var(--paper); padding-block: 1.4rem; }
.trustbar__label { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: var(--stone); margin: 0 0 .6rem; }
.trustbar__logos { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem 2.25rem; margin: 0; padding: 0; }
.trustbar__logos li { font: 700 .95rem/1 var(--font-display); color: var(--pine); opacity: .75; letter-spacing: .02em; }

/* -------------------------------------------------------------- sections */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--flush { padding-top: 1.5rem; }
.section--tint { background: var(--paper-2); }
.section--dark { background: linear-gradient(120deg, var(--ink), var(--pine)); color: var(--white); }
.section--dark h2 { color: var(--white); }
.section__lede { max-width: 42rem; color: var(--stone); font-size: var(--step-1); }
.section--dark .section__lede, .section--dark p { color: rgb(255 255 255 / .82); }
.section__head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.section__head h2 { margin-bottom: 0; }

.grid { display: grid; gap: 1.25rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 56rem) { .grid--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 38rem) { .grid--3 { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------- cards */
.card {
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem;
	transition: border-color .15s, box-shadow .15s, transform .15s;
}
.card:hover { border-color: var(--pine); box-shadow: var(--shadow); transform: translateY(-2px); }
.card__title { margin: 0; font-size: 1.15rem; }
.card__title, .card__title a { color: var(--ink); }
.card__title a { color: var(--ink); text-decoration: none; }
.card__title a:hover { color: var(--pine); }
.card__title a::after { content: ""; position: absolute; inset: 0; } /* whole-card link */
.card { position: relative; }
.card__excerpt { color: var(--stone); font-size: .92rem; margin: 0; flex: 1; }
.card__meta { display: flex; justify-content: space-between; align-items: center; gap: .5rem; font-size: .78rem; color: var(--stone); margin: 0; }
.card__specs { font-size: .75rem; color: var(--stone); }
.card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: .4rem; }
.card__foot .btn { position: relative; z-index: 1; }
.card .chip { position: relative; z-index: 1; width: fit-content; }
.price { font-weight: 700; color: var(--gold-2); border-bottom: 2px solid var(--gold); padding-bottom: .15rem; }
.card__metric { font: 600 var(--step-1)/1 var(--font-mono); color: var(--pine); margin: 0; border-bottom: 2px solid var(--gold); width: fit-content; padding-bottom: .3rem; }
.card__arrow { color: var(--gold-2); font-size: 1.2rem; }

/* --------------------------------------------------------------- process */
.process { list-style: none; counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 0; margin: 2rem 0 0; }
.process li { counter-increment: step; border-top: 2px solid var(--gold); padding-top: 1rem; position: relative; }
.process li::before {
	content: counter(step, decimal-leading-zero);
	font: 800 1rem/1 var(--font-display); color: var(--gold-2);
	display: block; margin-bottom: .6rem;
}
.process h3 { margin-bottom: .3rem; }
.process p { color: var(--stone); font-size: .92rem; margin: 0; }
@media (max-width: 56rem) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 38rem) { .process { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- quotes */
.quote { margin: 0; background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 1.5rem; }
.quote blockquote { margin: 0 0 1rem; font: 600 var(--step-1)/1.35 var(--font-display); color: var(--ink); }
.quote figcaption { font-size: .85rem; color: var(--stone); }
.quote figcaption strong { color: var(--ink); display: block; }

/* ------------------------------------------------------------ calculator */
.calc__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 56rem) { .calc__grid { grid-template-columns: 1fr; } }
.calc { background: var(--paper); color: var(--ink); border-radius: var(--radius); padding: 1.75rem; display: grid; gap: 1rem; box-shadow: 0 20px 50px rgb(0 0 0 / .3); }
.calc__field { display: grid; gap: .35rem; }
.calc__result { display: flex; gap: 2rem; border-top: 2px solid var(--gold); padding-top: 1rem; }
.calc__price, .calc__days { font-size: var(--step-2); font-weight: 600; display: block; }
.calc__unit { font-size: .78rem; color: var(--stone); }

/* ----------------------------------------------------------- forms, misc */
input, select, textarea {
	font: inherit; color: var(--ink); background: var(--white);
	border: 1.5px solid var(--line); border-radius: var(--radius);
	padding: .8rem .9rem; width: 100%; min-height: 44px;
}
input:focus, select:focus, textarea:focus { outline: var(--focus); outline-offset: 1px; border-color: var(--pine); }
label { font-weight: 600; font-size: .9rem; }
.form-msg { min-height: 1.2em; font-size: .88rem; color: var(--pine); margin: .4rem 0 0; }
.form-msg.is-error { color: #9B2C1F; }
.stack-form { display: grid; gap: .6rem; max-width: 30rem; }
.searchform { display: flex; gap: .5rem; max-width: 30rem; margin-inline: auto; }

.pricing-strip { display: flex; flex-wrap: wrap; gap: .75rem 2.5rem; border-block: 2px solid var(--gold); padding-block: 1.25rem; font-size: .95rem; }

/* --------------------------------------------------------------- pricing */
.pricing-grid { align-items: stretch; }
.tier { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: .4rem; position: relative; }
.tier--featured { border: 2px solid var(--pine); box-shadow: var(--shadow); }
.tier__badge { position: absolute; top: -0.85rem; left: 1.5rem; background: var(--pink); color: var(--white); font: 700 .72rem/1 var(--font-body); text-transform: uppercase; letter-spacing: .08em; padding: .4rem .7rem; border-radius: 0; margin: 0; }
.tier h2 { font-weight: 700; font-size: 1.15rem; margin: 0; color: var(--ink); }
.tier__price { font-size: var(--step-2); font-weight: 600; color: var(--pine); margin: 0; }
.tier__for { color: var(--stone); font-size: .9rem; }
.tier ul { list-style: none; padding: 0; margin: .5rem 0 1.25rem; flex: 1; }
.tier li { padding: .45rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.tier li::before { content: "✓ "; color: var(--pine); font-weight: 700; }

/* ------------------------------------------------------------- page hero */
.page-hero { background: var(--paper-2); border-bottom: 1px solid var(--line); padding-block: clamp(2.25rem, 5vw, 4rem); }
.page-hero__lede { max-width: 44rem; color: var(--stone); font-size: var(--step-1); margin-top: .5rem; }
.page-hero__specs { color: var(--stone); font-size: .85rem; }
.page-hero--landing { background: linear-gradient(120deg, var(--ink), var(--pine)); color: var(--paper); border: 0; text-align: center; padding-block: clamp(3.5rem, 8vw, 6rem); }
.page-hero--landing h1 { color: var(--white); }
.page-hero--landing .page-hero__lede { margin-inline: auto; color: rgb(255 255 255 / .82); }

.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; padding: 0; margin: 0 0 1.1rem; font-size: .8rem; color: var(--stone); }
.crumbs li:not(:last-child)::after { content: "›"; margin-left: .35rem; color: var(--line); }
.crumbs a { color: var(--stone); text-decoration: none; }
.crumbs a:hover { color: var(--pine); text-decoration: underline; }

/* --------------------------------------------------------------- dashboard */
.dashboard__filters { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1.75rem; display: grid; gap: .9rem; }
.dashboard__row { display: flex; flex-wrap: wrap; gap: .6rem 1rem; align-items: center; }
.dashboard__row label { font-size: .82rem; }
.dashboard__row select { width: auto; min-width: 12rem; }
.dashboard__count { font-size: .78rem; color: var(--stone); margin: 0; }

/* --------------------------------------------------------- plan single */
.plan-layout { display: grid; grid-template-columns: 1.4fr .8fr; gap: 3rem; padding-block: clamp(2.5rem, 5vw, 4rem); }
@media (max-width: 56rem) { .plan-layout { grid-template-columns: 1fr; } }
.plan-aside__card { position: sticky; top: 5.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; display: grid; gap: 1rem; }
.plan-aside__price { font-size: var(--step-2); font-weight: 600; color: var(--pine); border-bottom: 2px solid var(--gold); margin: 0; padding-bottom: .4rem; }
.plan-aside__list { list-style: none; padding: 0; margin: 0; font-size: .88rem; }
.plan-aside__list li { padding: .4rem 0; border-bottom: 1px solid var(--line); }
.plan-aside__list li::before { content: "✓ "; color: var(--pine); font-weight: 700; }
.gate { border-top: 2px solid var(--gold); padding-top: 1rem; display: grid; gap: .5rem; }
.gate__label { font-weight: 600; margin: 0; }

/* ------------------------------------------------------------ multi-step */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: start; }
@media (max-width: 56rem) { .contact-grid { grid-template-columns: 1fr; } }
.msf { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }
.msf fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: .7rem; }
.msf legend { font: 700 var(--step-2)/1.15 var(--font-display); color: var(--pine); margin-bottom: 1rem; padding: 0; }
.msf__progress { list-style: none; display: flex; gap: 1.5rem; padding: 0 0 1.5rem; margin: 0 0 1.5rem; border-bottom: 1px solid var(--line); counter-reset: msf; font-size: .82rem; color: var(--stone); }
.msf__progress li { counter-increment: msf; display: flex; align-items: center; gap: .45rem; }
.msf__progress li::before {
	content: counter(msf); display: grid; place-items: center;
	width: 1.6rem; height: 1.6rem; border-radius: 50%;
	border: 1.5px solid var(--line); font: 700 .75rem/1 var(--font-body);
}
.msf__progress li[aria-current="step"] { color: var(--ink); font-weight: 600; }
.msf__progress li[aria-current="step"]::before { background: var(--pine); border-color: var(--pine); color: var(--paper); }
.msf__progress li.is-done::before { background: var(--gold); border-color: var(--gold); color: var(--white); content: "✓"; }
.msf__options { display: grid; gap: .5rem; }
.msf__option { display: flex; align-items: center; gap: .7rem; border: 1.5px solid var(--line); border-radius: var(--radius); padding: .9rem 1rem; cursor: pointer; font-weight: 500; }
.msf__option:hover { border-color: var(--pine); }
.msf__option:has(input:checked) { border-color: var(--pine); background: rgb(0 51 141 / .05); }
.msf__option input { width: auto; min-height: 0; accent-color: var(--pine); }
.msf__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: .5rem; }
.msf__privacy { font-size: .78rem; color: var(--stone); }
.contact-alt { display: grid; gap: .75rem; align-content: start; }

/* ------------------------------------------------------------------- faq */
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
	cursor: pointer; padding: 1.1rem 2rem 1.1rem 0; font-weight: 600; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--gold-2); }
.faq[open] summary::after { content: "–"; }
.faq p { color: var(--stone); padding-bottom: 1.1rem; margin: 0; max-width: 42rem; }

/* --------------------------------------------------------------- CTA band */
.cta-band { background: linear-gradient(120deg, var(--pine), var(--gold)); color: var(--white); padding-block: clamp(2.5rem, 6vw, 4.5rem); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; top: 0; right: 0; width: 30%; height: 100%; background: rgb(255 255 255 / .06); clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%); pointer-events: none; }
.cta-band__inner { position: relative; z-index: 1;  display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin-bottom: .35rem; }
.cta-band p { color: rgb(255 255 255 / .88); margin: 0; }
.cta-band__actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ------------------------------------------------------------- newsletter */
.newsletter { background: var(--paper-2); border-top: 1px solid var(--line); padding-block: 3rem; }
.newsletter__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: center; }
@media (max-width: 56rem) { .newsletter__inner { grid-template-columns: 1fr; } }
.newsletter h2 { font-size: var(--step-2); }
.newsletter__form { display: flex; gap: .6rem; flex-wrap: wrap; }
.newsletter__form input[type="email"] { flex: 1; min-width: 14rem; }

/* ---------------------------------------------------------------- footer */
.footer { background: var(--ink); border-top: 6px solid var(--gold); color: rgb(255 255 255 / .82); padding-block: 3.5rem 0; }
.footer a { color: rgb(255 255 255 / .88); text-decoration: none; }
.footer a:hover { color: #9DB4FF; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 56rem) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 38rem) { .footer__grid { grid-template-columns: 1fr; } }
.footer h3 { font-family: var(--font-body); font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: #9DB4FF; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: .3rem 0; }
.brand--footer { color: var(--paper); margin-bottom: .75rem; }
.footer__legal { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgb(255 255 255 / .18); margin-top: 3rem; padding-block: 1.5rem; font-size: .82rem; }
.footer__legal-menu { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }

/* ------------------------------------------------------------ float CTAs */
.float-ctas { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90; display: grid; gap: .6rem; justify-items: end; }
.float-ctas__wa {
	display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
	background: #25D366; color: #fff; box-shadow: var(--shadow);
}
.float-ctas__wa:hover { color: #fff; transform: scale(1.06); }
.float-ctas__main { box-shadow: var(--shadow); }

/* ------------------------------------------------------------------ prose */
.prose { font-size: 1.05rem; }
.prose h2 { font-size: var(--step-2); margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose blockquote { border-left: 4px solid var(--gold); margin: 1.5rem 0; padding: .25rem 0 .25rem 1.25rem; font: 600 var(--step-1)/1.4 var(--font-display); color: var(--ink); }
.prose img { border-radius: var(--radius); }
.prose table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.prose th, .prose td { text-align: left; padding: .6rem .7rem; border-bottom: 1px solid var(--line); }
.prose th { font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--pine); }

/* ------------------------------------------------------------- pagination */
.pagination { margin-top: 2rem; text-align: center; }
.pagination .page-numbers { display: inline-grid; place-items: center; min-width: 2.6rem; height: 2.6rem; padding-inline: .5rem; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; margin: 0 .15rem; }
.pagination .current { background: var(--pine); color: var(--paper); border-color: var(--pine); }

/* --------------------------------------------------------------- motion */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
	[data-reveal] { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------ print */
@media print {
	.masthead, .footer, .newsletter, .float-ctas, .cta-band { display: none !important; }
	body { background: #fff; color: #000; }
}
