:root {
	--navy: #0f264a;
	--navy-deep: #091a33;
	--steel: #708292;
	--ink: #111111;
	--muted: #5d6872!important;
	--line: #dfe4e8;
	--soft: #f5f7f8;
	--paper: #ffffff;
	--green: #2bb673;
	--dark-green: #1e8c4f;
	--radius: 18px;
	--shadow: 0 24px 80px rgba(15, 38, 74, 0.13);
	--container: min(1160px, calc(100vw - 48px));
}

* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family:
		'Inter Variable',
		ui-sans-serif,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
a {
	color: inherit;
	text-decoration: none;
}
button,
a {
	-webkit-tap-highlight-color: transparent;
}

.skip-link {
	position: fixed;
	left: 18px;
	top: 16px;
	z-index: 999;
	transform: translateY(-160%);
	padding: 10px 14px;
	background: var(--ink);
	color: #fff;
	border-radius: 8px;
}
.skip-link:focus {
	transform: none;
}

.container {
	width: var(--container);
	margin-inline: auto;
}
.narrow {
	max-width: 1040px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(15, 38, 74, 0.08);
	backdrop-filter: blur(12px);
}
.header-inner {
	min-height: 76px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 28px;
}
.brand img {
	width: 164px;
}
.nav {
	display: flex;
	gap: 28px;
	font-size: 14px;
	font-weight: 650;
	color: #4d5862;
}
.nav a,
.text-link,
.quiet-link,
.footer-login,
.site-footer nav a,
.site-footer nav button {
	transition: color 0.18s ease;
}
.nav a:hover,
.text-link:hover,
.quiet-link:hover {
	color: var(--navy);
}
.header-actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 18px;
}
.login-link {
	font-size: 14px;
	font-weight: 650;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 20px;
	border-radius: 12px;
	background: var(--dark-green);
	color: #fff;
	font-weight: 750;
	border: 1px solid var(--dark-green);
	box-shadow: 0 8px 22px rgba(15, 38, 74, 0.13);
	transition:
		transform 0.18s ease,
		background 0.18s ease,
		box-shadow 0.18s ease;
}
.button:hover {
	background: var(--dark-green);
	transform: translateY(-1px);
	box-shadow: 0 12px 28px rgba(15, 38, 74, 0.18);
}
.button:focus-visible,
a:focus-visible {
	outline: 3px solid #91b9ed;
	outline-offset: 3px;
}
.button-small {
	min-height: 40px;
	padding-inline: 16px;
	font-size: 14px;
}
.button-large {
	min-height: 52px;
	padding-inline: 24px;
}
.button-light {
	background: #fff;
	color: var(--navy);
	border-color: #fff;
	box-shadow: none;
}
.button-light:hover {
	background: #f1f4f7;
}

.hero {
	padding: 88px 0 78px;
	overflow: clip;
	min-height: 82vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hero-grid {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: 66px;
	align-items: center;
}
.hero-copy {
	min-width: 0;
}
.eyebrow {
	margin: 0 0 16px;
	color: var(--navy);
	font-size: 12px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-weight: 800;
}
.eyebrow.light {
	color: #b7c7d7;
}
h1,
h2,
h3,
p {
	margin-top: 0;
}
h1 {
	margin-bottom: 24px;
	font-size: clamp(42px, 4.8vw, 62px);
	line-height: 1.1;
	font-weight: 800;
}
.hero-lead {
	max-width: 640px;
	margin-bottom: 30px;
	color: #4d5963;
	font-size: 19px;
	line-height: 1.62;
}
.hero-actions {
	display: flex;
	align-items: center;
	gap: 22px;
}
.quiet-link {
	color: var(--navy);
	font-weight: 700;
	font-size: 14px;
}
.risk-note {
	margin: 14px 0 28px;
	font-size: 13px;
	color: #69747e;
}
.risk-note strong {
	color: #3c4853;
}
.hero-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 430px;
}
.hero-facts div {
	min-width: 0;
}
.hero-facts strong {
	display: block;
	color: var(--navy);
	font-size: 18px;
}
.hero-facts span {
	display: block;
	color: var(--muted);
	font-size: 12px;
	margin-top: 2px;
}

.product-stage {
	position: relative;
}
.product-stage::before {
	content: '';
	position: absolute;
	width: 72%;
	aspect-ratio: 1;
	right: -18%;
	bottom: -18%;
	background: #edf2f7;
	border-radius: 50%;
	z-index: -1;
}
.product-window {
	border: 1px solid #d6dde4;
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	box-shadow: var(--shadow);
}
.window-bar {
	height: 42px;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 0 14px;
	background: #f6f7f8;
	border-bottom: 1px solid #e3e7ea;
}
.window-bar span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #c5ccd2;
}
.window-bar p {
	margin: 0 0 0 8px;
	color: #7a858e;
	font-size: 11px;
}
.product-window img {
	width: 100%; /*aspect-ratio: 952 / 850;*/
	object-fit: cover;
	object-position: top center;
}
.product-caption {
	margin: 14px 12px 0 0;
	text-align: right;
	color: #7b858e;
	font-size: 12px;
}

.promise-band {
	background: var(--navy);
	color: #fff;
}
.promise-band-inner {
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	font-size: 14px;
	font-weight: 700;
}
.promise-band-inner p {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}
.promise-icon {
	width: 17px;
	height: 17px;
	color: #b7c7d7;
	stroke-width: 2.2;
}

.section {
	padding: 148px 0;
}
.section-heading {
	margin-bottom: 52px;
}
.section-heading h2,
.final-cta h2 {
	margin-bottom: 16px;
	font-size: clamp(36px, 4vw, 54px);
	line-height: 1.05;
	font-weight: 800;
}
.section-heading > p,
.section-heading div + p {
	color: var(--muted);
	font-size: 18px;
}
.centered {
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.centered .eyebrow {
	text-align: center;
}

.flow-section {
	background: #fff;
}
.flow-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.flow-grid li {
	padding: 28px 26px 30px 0;
	position: relative;
}
.flow-grid li + li {
	padding-left: 26px;
	border-left: 1px solid var(--line);
}
.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-bottom: 42px;
	border-radius: 999px;
	background: var(--dark-green);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
}
.flow-grid h3 {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 1.2;
}
.flow-icon {
	width: 22px;
	height: 22px;
	color: var(--dark-green);
	stroke-width: 2.2;
	flex: 0 0 auto;
}
.flow-grid p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}
.section-cta {
	display: flex;
	justify-content: center;
	margin-top: 42px;
}
.section-cta-light {
	margin-top: 30px;
}

.trainings-section {
	background: var(--navy);
	color: #fff;
}
.split-heading {
	display: grid;
	grid-template-columns: 1fr 0.72fr;
	gap: 80px;
	align-items: end;
}
.split-heading h2 {
	margin-bottom: 0;
	max-width: 720px;
}
.split-heading > p {
	margin: 0;
	color: #c4d0db;
}
.training-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.training-card {
	border-radius: var(--radius);
	color: var(--ink);
	hyphens: auto;
}
.training-card img {
	width: 100%;
	aspect-ratio: 2.31 / 1;
	object-fit: cover;
	object-position: center;
	border-bottom: 1px solid #e5e8eb;
}
.training-card-body {
	padding: 28px 30px 32px;
}
.training-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
	color: var(--steel);
	font-size: 12px;
	font-weight: 750;
}
.training-card h3 {
	margin-bottom: 12px;
	font-size: 24px;
	line-height: 1.18;
}
.training-card p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}
.training-note {
	margin: 22px 0 0;
	color: #bdcbd8;
	font-size: 13px;
}

.proof-section {
	background: #f6f7f8;
}
.proof-grid {
	display: grid;
	grid-template-columns: 1fr 0.78fr;
	gap: 90px;
	align-items: center;
}
.proof-copy h2 {
	margin-bottom: 18px;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.06;
	font-weight: 800;
}
.proof-copy > p {
	max-width: 660px;
	color: var(--muted);
	font-size: 18px;
}
.check-list {
	list-style: none;
	padding: 0;
	margin: 32px 0 0;
	display: grid;
	gap: 13px;
}
.check-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	font-weight: 700;
}
.check-list-icon {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	color: var(--dark-green);
	stroke-width: 2.4;
}
.trust-panel {
	padding: 36px;
	border-radius: var(--radius);
	background: #fff;
	border: 1px solid #e0e5e9;
	box-shadow: 0 18px 60px rgba(15, 38, 74, 0.07);
}
.trust-kicker {
	margin-bottom: 10px;
	color: var(--steel);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.trust-panel h3 {
	font-size: 28px;
	line-height: 1.1;
}
.trust-panel > p:not(.trust-kicker) {
	color: var(--muted);
}
.trust-items {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.trust-items span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	max-width: 100%;
	padding: 8px 10px;
	border-radius: 999px;
	background: #edf2f6;
	color: var(--navy);
	font-size: 12px;
	font-weight: 750;
	line-height: 1.25;
}
.trust-item-icon {
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
	stroke-width: 2.3;
}

.matrix-section {
	background: #fff;
	overflow: clip;
}
.matrix-grid {
	display: grid;
	grid-template-columns: 0.82fr 1fr;
	gap: 82px;
	align-items: center;
}
.matrix-copy h2 {
	margin-bottom: 18px;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.06;
	font-weight: 800;
}
.matrix-copy > p:not(.eyebrow) {
	max-width: 640px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.65;
}
.matrix-cta {
	display: flex;
	margin-top: 30px;
}
.matrix-product-stage {
	position: relative;
}
.matrix-product-stage::before {
	content: '';
	position: absolute;
	width: 70%;
	aspect-ratio: 1;
	right: -14%;
	bottom: -18%;
	background: #edf2f7;
	border-radius: 50%;
	z-index: -1;
}

.price-section {
	background: var(--navy-deep);
	color: #fff;
}
.price-shell {
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 92px;
	align-items: center;
}
.price-copy h2 {
	margin-bottom: 16px;
	font-size: clamp(36px, 4vw, 54px);
	line-height: 1.05;
	font-weight: 800;
}
.price-copy > p:not(.eyebrow):not(.button-note) {
	max-width: 640px;
	margin-bottom: 24px;
	color: #c4d0dd;
	font-size: 18px;
}
.price-benefits {
	list-style: none;
	padding: 0;
	margin: 0 0 22px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 18px;
	max-width: 620px;
}
.price-benefits li {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #e1edf6;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}
.price-benefits svg {
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
	color: #88d4b7;
	stroke-width: 2.4;
}
.price-included {
	margin-bottom: 28px !important;
	color: #d2dee9 !important;
	font-size: 15px !important;
	line-height: 1.55;
}
.button-note {
	margin: 12px 0 0;
	color: #94a6b9;
	font-size: 12px;
}
.price-card {
	padding: 36px;
	border-radius: 20px;
	background: #fff;
	color: var(--ink);
}
.price-card-label {
	margin-bottom: 12px;
	color: var(--steel);
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.price-main {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}
.price-main-dynamic {
	display: block;
	min-height: 56px;
}
.price-number {
	font-size: 56px;
	line-height: 1;
	font-weight: 850;
}
.price-number.is-custom-price {
	display: block;
	font-size: 46px;
	white-space: nowrap;
}
.price-card > p {
	margin: 8px 0 4px;
	color: var(--muted);
}
.price-card > p.is-hidden {
	display: none;
}
.quantity-control {
	margin-top: 30px;
	padding-top: 26px;
	border-top: 1px solid #e3e8ed;
}
.quantity-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}
.quantity-header label {
	color: var(--navy);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
}
.quantity-header input {
	width: 88px;
	min-height: 42px;
	padding: 8px 10px;
	border: 1px solid #d8e0e7;
	border-radius: 10px;
	background: #fff;
	color: var(--navy);
	font: inherit;
	font-size: 18px;
	font-weight: 850;
	text-align: center;
}
.quantity-header input:focus-visible {
	outline: 3px solid #91b9ed;
	outline-offset: 2px;
}
.quantity-range {
	width: 100%;
	accent-color: var(--dark-green);
	cursor: pointer;
}
.quantity-range::-webkit-slider-runnable-track {
	height: 8px;
	border-radius: 999px;
	background: #dfe7ed;
}
.quantity-range::-webkit-slider-thumb {
	width: 22px;
	height: 22px;
	margin-top: -7px;
	border-radius: 999px;
	background: var(--dark-green);
	box-shadow: 0 4px 12px rgba(15, 38, 74, 0.2);
}
.quantity-range::-moz-range-track {
	height: 8px;
	border-radius: 999px;
	background: #dfe7ed;
}
.quantity-range::-moz-range-thumb {
	width: 22px;
	height: 22px;
	border: 0;
	border-radius: 999px;
	background: var(--dark-green);
	box-shadow: 0 4px 12px rgba(15, 38, 74, 0.2);
}
.quantity-marks {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
	color: var(--steel);
	font-size: 10px;
	font-weight: 800;
}
.tier-note {
	display: grid;
	gap: 4px;
	margin-top: 26px;
	padding: 14px;
	border-radius: 12px;
	background: #f1f6f4;
}
.tier-note strong {
	color: var(--dark-green);
	font-size: 14px;
	line-height: 1.2;
}
.tier-note span {
	color: var(--muted);
	font-size: 12px;
	line-height: 1.45;
}
.price-tiers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-top: 12px;
}
.price-tiers button {
	padding: 13px 10px 14px;
	text-align: center;
	border-radius: 10px;
	border: 1px solid transparent;
	background: #f1f4f6;
	color: inherit;
	font: inherit;
	cursor: pointer;
	user-select: none;
	transition:
		border-color 160ms ease,
		background-color 160ms ease,
		box-shadow 160ms ease;
}
.price-tiers button.is-active {
	border-color: rgba(28, 122, 107, 0.35);
	background: #eef8f4;
	box-shadow: inset 0 0 0 1px rgba(28, 122, 107, 0.08);
}
.price-tiers button.is-popping {
	animation: price-tier-pop 220ms ease-out;
}
.price-tiers button:focus-visible {
	outline: 3px solid #91b9ed;
	outline-offset: 2px;
}
.price-tiers span,
.price-tiers strong,
.price-tiers small {
	display: block;
}
.price-tiers span {
	color: var(--muted);
	font-size: 10px;
	line-height: 1.2;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.price-tiers strong {
	margin-top: 4px;
	color: var(--dark-green);
	font-size: 18px;
	line-height: 1;
}
.price-tiers small {
	margin-top: 5px;
	color: var(--steel);
	font-size: 10px;
	line-height: 1.2;
}
.price-savings,
.price-savings-muted {
	margin-top: 18px !important;
	font-size: 13px !important;
	line-height: 1.45;
}
.price-savings {
	color: var(--dark-green) !important;
	font-weight: 800;
}
.price-savings-muted {
	color: var(--muted) !important;
}

@keyframes price-tier-pop {
	0%,
	100% {
		transform: scale(1);
	}
	45% {
		transform: scale(1.04);
	}
}

.certificate-section {
	background: #f6f7f8;
}
.certificate-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.82fr) 1fr;
	gap: 88px;
	align-items: center;
}
.certificate-preview {
	max-width: 460px;
	margin: 0 auto;
}
.certificate-image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 24px 80px rgba(15, 38, 74, 0.16);
}
.certificate-copy {
	min-width: 0;
}
.certificate-lead {
	margin-bottom: 28px;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.65;
}
.certificate-lead strong {
	display: block;
	margin-bottom: 8px;
	color: var(--navy);
	font-size: 21px;
	line-height: 1.25;
}
.certificate-trust-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 16px;
}
.certificate-trust-list li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 14px;
	align-items: flex-start;
	padding: 18px;
	border: 1px solid #e0e5e9;
	border-radius: var(--radius);
	background: #fff;
}
.certificate-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: rgba(28, 122, 107, 0.1);
	color: var(--dark-green);
}
.certificate-icon svg {
	width: 20px;
	height: 20px;
	stroke-width: 2.2;
}
.certificate-trust-list h3 {
	margin-bottom: 5px;
	color: var(--navy);
	font-size: 16px;
	line-height: 1.25;
}
.certificate-trust-list p,
.certificate-closing {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}
.certificate-closing {
	margin-top: 24px;
}
.certificate-cta {
	display: flex;
	margin-top: 28px;
}

.final-cta {
	padding: 90px 0;
}
.final-cta-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 80px;
	align-items: center;
}
.final-cta h2 {
	max-width: 820px;
	margin-bottom: 14px;
}
.final-cta p:not(.eyebrow) {
	max-width: 760px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 17px;
}
.final-cta-action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	min-width: 220px;
}
.final-cta-action span {
	color: var(--muted);
	font-size: 11px;
}

.faq-section {
	background: #fff;
}
.faq-heading {
	margin-bottom: 42px;
}
.faq-list {
	max-width: 920px;
	margin: 0 auto;
	border-top: 1px solid var(--line);
}
.faq-item {
	border-bottom: 1px solid var(--line);
}
.faq-item h3 {
	margin: 0;
}
.faq-trigger {
	width: 100%;
	padding: 24px 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 16px;
	align-items: center;
	border: 0;
	background: transparent;
	color: var(--navy);
	text-align: left;
	font: inherit;
	cursor: pointer;
}
.faq-trigger:focus-visible {
	outline: 3px solid #91b9ed;
	outline-offset: 4px;
}
.faq-toggle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: #edf2f6;
}
.faq-toggle-icon svg {
	width: 17px;
	height: 17px;
	stroke-width: 2.4;
	transition: transform 180ms ease;
}
.faq-item.is-open .faq-toggle-icon svg {
	transform: rotate(45deg);
}
.faq-question {
	font-size: 19px;
	line-height: 1.3;
	font-weight: 800;
}
.faq-answer-wrap {
	display: grid;
	grid-template-rows: 0fr;
	transition:
		grid-template-rows 220ms ease,
		opacity 180ms ease;
	opacity: 0;
}
.faq-item.is-open .faq-answer-wrap {
	grid-template-rows: 1fr;
	opacity: 1;
}
.faq-answer {
	overflow: hidden;
}
.faq-answer p {
	max-width: 760px;
	margin: 0;
	padding: 0 0 26px 46px;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.65;
}
.faq-cta {
	display: flex;
	justify-content: center;
	margin-top: 38px;
}

.site-footer {
	background: #08182e;
	color: #fff;
}
.footer-top {
	min-height: 122px;
	display: grid;
	grid-template-columns: 1fr 1.6fr 1fr;
	align-items: center;
	gap: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand img {
	width: 154px;
}
.footer-top p {
	margin: 0;
	text-align: center;
	color: #aebccb;
	font-size: 13px;
}
.footer-login {
	justify-self: end;
	font-size: 13px;
	font-weight: 750;
}
.footer-login:hover,
.site-footer nav a:hover,
.site-footer nav button:hover {
	color: #cbd9e7;
}
.footer-bottom {
	min-height: 82px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	color: #8fa0b2;
	font-size: 11px;
}
.footer-bottom p {
	margin: 0;
}
.footer-bottom nav {
	display: flex;
	gap: 20px;
}
.footer-bottom nav button {
	appearance: none;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	text-align: left;
	cursor: pointer;
}
.footer-bottom nav button:focus-visible {
	outline: 3px solid #91b9ed;
	outline-offset: 3px;
}

.consent-banner {
	position: fixed;
	bottom: clamp(16px, 3vw, 32px);
	right: calc((100vw - var(--container)) / 2);
	z-index: 60;
	width: min(500px, var(--container));
	padding: 22px 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	background: rgb(4, 38, 75);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
	color: #fff;
	backdrop-filter: blur(16px);
}
.consent-copy h2 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0;
}
.consent-copy p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	line-height: 1.55;
}
.consent-copy a {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.consent-copy a:hover {
	text-decoration: none;
}
.consent-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(180px, 220px));
	justify-content: end;
	gap: 10px;
	margin-top: 20px;
}
.consent-button {
	min-height: 42px;
	padding: 0 14px;
	border-radius: 12px;
	font: inherit;
	font-size: 13px;
	font-weight: 750;
	cursor: pointer;
	transition:
		transform 0.18s ease,
		background 0.18s ease,
		border-color 0.18s ease,
		box-shadow 0.18s ease;
}
.consent-button:hover {
	transform: translateY(-1px);
}
.consent-button:focus-visible {
	outline: 3px solid #91b9ed;
	outline-offset: 3px;
}
.consent-button-secondary {
	border: 1px solid rgba(255, 255, 255, 0.65);
	background: transparent;
	color: #fff;
}
.consent-button-secondary:hover {
	border-color: rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.08);
}
.consent-button-primary {
	border: 1px solid var(--dark-green);
	background: var(--dark-green);
	color: #fff;
	box-shadow: 0 8px 22px rgba(15, 38, 74, 0.13);
}
.consent-button-primary:hover {
	box-shadow: 0 12px 28px rgba(15, 38, 74, 0.18);
}
.consent-button-accept {
	order: 2;
}
.consent-button-decline {
	order: 1;
}
#faq {
	padding-top: 20px;
}
@media (max-width: 1180px) {
	.price-benefits {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 980px) {
	:root {
		--container: min(100% - 36px, 900px);
	}
	.header-inner {
		grid-template-columns: 1fr auto;
	}
	.nav {
		display: none;
	}
	.hero {
		padding-top: 68px;
	}
	.hero-grid,
	.proof-grid,
	.matrix-grid,
	.price-shell,
	.certificate-grid {
		grid-template-columns: 1fr;
	}
	.hero-grid {
		gap: 0;
	}
	.hero-copy {
		display: contents;
	}
	.product-stage {
		order: 3;
		width: 100%;
		max-width: min(540px, 100%);
		margin: 0 0 30px;
		padding: 0 5px;
	}
	.hero-copy .eyebrow {
		order: 1;
	}
	.hero-copy h1 {
		order: 2;
	}
	.hero-lead {
		order: 4;
	}
	.hero-actions {
		order: 5;
	}
	.risk-note {
		order: 6;
	}
	.hero-facts {
		order: 7;
	}
	.flow-grid {
		grid-template-columns: 1fr 1fr;
	}
	.flow-grid li:nth-child(3) {
		border-left: 0;
		border-top: 1px solid var(--line);
	}
	.flow-grid li:nth-child(4) {
		border-top: 1px solid var(--line);
	}
	.split-heading {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.proof-grid {
		gap: 48px;
	}
	.matrix-grid {
		gap: 44px;
	}
	.matrix-product-stage {
		max-width: 720px;
	}
	.price-shell {
		gap: 48px;
	}
	.certificate-grid {
		gap: 52px;
	}
	.certificate-preview {
		max-width: 420px;
	}
	.price-card {
		max-width: 560px;
	}
	.final-cta-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.final-cta-action {
		align-items: flex-start;
	}
}

@media (max-width: 700px) {
	:root {
		--container: calc(100vw - 28px);
	}
	.site-header {
		position: static;
	}
	.header-inner {
		min-height: 68px;
		gap: 12px;
	}
	.brand img {
		width: 140px;
	}
	.login-link {
		display: none;
	}
	.button-small {
		padding-inline: 12px;
		font-size: 13px;
	}

	.hero {
		padding: 54px 0 56px;
	}
	.hero-grid {
		gap: 0;
	}
	h1 {
		font-size: clamp(43px, 13vw, 62px);
	}
	.hero-lead {
		font-size: 17px;
	}
	.hero-actions {
		align-items: flex-start;
		flex-direction: column;
		gap: 14px;
	}
	.hero-actions .button {
		width: 100%;
	}
	.hero-facts {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.hero-facts div {
		padding-right: 0;
	}
	.hero-facts strong {
		font-size: 15px;
	}
	.hero-facts span {
		font-size: 10px;
	}
	.product-window {
		border-radius: 12px;
	}
	.window-bar {
		height: 34px;
	}
	.product-caption {
		text-align: left;
		margin-left: 4px;
	}

	.promise-band-inner {
		min-height: 0;
		padding: 18px 0;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px 16px;
		font-size: 12px;
	}
	.promise-band-inner p {
		align-items: flex-start;
		white-space: normal;
	}
	.section {
		padding: 76px 0;
	}
	.section-heading {
		margin-bottom: 36px;
	}
	.section-heading h2,
	.final-cta h2 {
		font-size: 38px;
	}
	.section-heading > p,
	.section-heading div + p {
		font-size: 16px;
	}
	.centered {
		text-align: left;
	}
	.centered .eyebrow {
		text-align: left;
	}

	.flow-grid {
		grid-template-columns: 1fr;
		border-bottom: 0;
	}
	.flow-grid li,
	.flow-grid li + li {
		padding: 24px 0;
		border-left: 0;
		border-bottom: 1px solid var(--line);
	}
	.flow-grid li:nth-child(3),
	.flow-grid li:nth-child(4) {
		border-top: 0;
	}
	.step-number {
		margin-bottom: 18px;
	}

	.training-grid {
		grid-template-columns: 1fr;
	}
	.training-card-body {
		padding: 24px;
	}
	.training-meta {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}
	.training-card h3 {
		font-size: 21px;
	}

	.proof-copy > p {
		font-size: 16px;
	}
	.matrix-copy > p:not(.eyebrow) {
		font-size: 16px;
	}
	.trust-panel {
		padding: 26px;
	}
	.certificate-lead {
		font-size: 16px;
	}
	.certificate-trust-list li {
		padding: 16px;
	}

	.price-section {
		padding: 76px 0;
	}
	.price-copy h2 {
		font-size: 48px;
	}
	.price-benefits {
		grid-template-columns: 1fr;
	}
	.price-card {
		padding: 26px;
	}
	.price-number {
		font-size: 48px;
	}
	.quantity-header {
		align-items: flex-start;
		flex-direction: column;
	}
	.quantity-header input {
		width: 100%;
	}
	.price-tiers {
		gap: 5px;
	}
	.price-tiers button {
		padding-inline: 6px;
	}
	.price-tiers strong {
		font-size: 16px;
	}

	.final-cta {
		padding: 70px 0;
	}
	.final-cta-action {
		width: 100%;
	}
	.final-cta-action .button {
		width: 100%;
	}
	.faq-heading {
		margin-bottom: 28px;
	}
	.faq-trigger {
		gap: 12px;
		padding: 20px 0;
	}
	.faq-question {
		font-size: 16px;
	}
	.faq-answer p {
		padding: 0 0 22px 42px;
		font-size: 15px;
	}

	.footer-top {
		padding: 28px 0;
		grid-template-columns: 1fr auto;
	}
	.footer-top p {
		display: none;
	}
	.footer-bottom {
		padding: 24px 0;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 14px;
	}
	.footer-bottom nav {
		flex-wrap: wrap;
	}
	.consent-banner {
		bottom: 14px;
		right: 14px;
		left: 14px;
		width: auto;
	}
}

@media (max-width: 420px) {
	.consent-actions {
		grid-template-columns: 1fr;
	}
	.consent-button-accept {
		order: 1;
	}
	.consent-button-decline {
		order: 2;
	}
}

@media (max-width: 560px) {
	.hero h1 {
		font-size: clamp(17px, 8.75vw, 36px);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.price-tiers button.is-popping {
		animation: none;
	}
	*,
	*::before,
	*::after {
		transition-duration: 0.001ms !important;
	}
}
