:root {
	--bg: #f5efe6;
	--bg-strong: #f0e7db;
	--surface: rgba(255, 249, 243, 0.82);
	--surface-strong: #fffaf4;
	--surface-dark: #0d2035;
	--ink: #142337;
	--ink-soft: #314357;
	--muted: #647286;
	--line: rgba(20, 35, 55, 0.10);
	--line-strong: rgba(20, 35, 55, 0.18);
	--brand: #ff7a59;
	--brand-deep: #d34f2a;
	--accent: #166d68;
	--accent-strong: #0f5551;
	--accent-soft: rgba(22, 109, 104, 0.12);
	--success: #159a62;
	--warn: #f59b5d;
	--white: #ffffff;
	--shadow: 0 30px 80px rgba(20, 35, 55, 0.14);
	--shadow-soft: 0 18px 44px rgba(20, 35, 55, 0.10);
	--radius-xl: 36px;
	--radius-lg: 30px;
	--radius-md: 24px;
	--radius-sm: 18px;
	--max-width: 1180px;
}

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Manrope', sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at top left, rgba(255, 122, 89, 0.16), transparent 28%),
		radial-gradient(circle at 85% 10%, rgba(22, 109, 104, 0.14), transparent 24%),
		linear-gradient(180deg, #fff8f1 0%, #f8f1e8 44%, #f3ebdf 100%);
	overflow-x: hidden;
}

body::before,
body::after {
	content: '';
	position: fixed;
	border-radius: 999px;
	pointer-events: none;
	filter: blur(10px);
	z-index: 0;
}

body::before {
	width: 320px;
	height: 320px;
	left: -120px;
	top: 120px;
	background: rgba(255, 122, 89, 0.16);
}

body::after {
	width: 420px;
	height: 420px;
	right: -140px;
	top: 260px;
	background: rgba(22, 109, 104, 0.12);
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

section[id] {
	scroll-margin-top: 108px;
}

.site-shell {
	position: relative;
	z-index: 1;
	overflow: clip;
}

.site-shell::before {
	content: '';
	position: absolute;
	inset: 140px auto auto 50%;
	width: 760px;
	height: 760px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 68%);
	pointer-events: none;
	z-index: 0;
}

.container {
	position: relative;
	z-index: 1;
	width: min(var(--max-width), calc(100% - 40px));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	backdrop-filter: blur(18px);
	background: rgba(251, 245, 237, 0.74);
	border-bottom: 1px solid var(--line);
}

.header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 84px;
	position: relative;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0;
	font-family: 'Sora', sans-serif;
	font-size: 26px;
	line-height: 1;
	letter-spacing: -0.05em;
	white-space: nowrap;
}

.brand-logo-image {
	display: block;
	width: clamp(146px, 18vw, 210px);
	height: auto;
	flex: 0 0 auto;
}

.brand span {
	color: var(--brand);
	font-weight: 800;
}

.brand strong {
	color: var(--ink);
	font-weight: 600;
}

.header-panel {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	flex: 1 1 auto;
}

.header-lang-toggle {
	flex: 0 0 auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.site-nav a {
	position: relative;
	padding: 8px 2px;
	font-size: 14px;
	font-weight: 700;
	color: var(--ink-soft);
	transition: color 0.2s ease;
}

.site-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--brand), var(--accent));
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.site-nav a:hover {
	color: var(--ink);
}

.site-nav a:hover::after {
	transform: scaleX(1);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.nav-toggle {
	display: none;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid var(--line-strong);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.7);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
}

.nav-toggle span {
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: var(--ink);
	transition: background 0.2s ease;
}

.nav-toggle[aria-expanded='true'] {
	background: rgba(20, 35, 55, 0.08);
	border-color: rgba(20, 35, 55, 0.14);
}

.lang-toggle,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.lang-toggle:hover,
.btn:hover {
	transform: translateY(-1px);
}

.lang-toggle {
	background: rgba(22, 109, 104, 0.08);
	border-color: rgba(22, 109, 104, 0.20);
	color: var(--accent-strong);
}

.lang-toggle-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(22, 109, 104, 0.14);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.btn-nav {
	min-height: 46px;
	padding: 0 16px;
}

.btn-muted {
	background: rgba(255, 255, 255, 0.76);
	border-color: var(--line);
	color: var(--ink);
}

.btn-brand {
	background: linear-gradient(135deg, #0f615c 0%, #1a7f79 100%);
	border-color: transparent;
	color: var(--white);
	box-shadow: 0 18px 34px rgba(22, 109, 104, 0.22);
}

.btn-primary {
	background: linear-gradient(135deg, var(--brand) 0%, #ff936b 100%);
	border-color: transparent;
	color: var(--white);
	box-shadow: 0 18px 34px rgba(255, 122, 89, 0.28);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.76);
	border-color: var(--line);
	color: var(--ink);
}

.btn-dark {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.16);
	color: var(--white);
}

main {
	position: relative;
	z-index: 1;
}

.section {
	padding: 92px 0;
}

.hero {
	padding: 68px 0 34px;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
	gap: 34px;
	align-items: center;
}

.eyebrow,
.section-kicker,
.strip-label,
.plan-ribbon,
.scene-label,
.scene-note-kicker,
.side-kicker,
.metric-card span {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.eyebrow,
.section-kicker,
.scene-label,
.scene-note-kicker,
.strip-label,
.side-kicker,
.metric-card span {
	color: var(--accent-strong);
}

.section-kicker.light {
	color: #9fd5cf;
}

.hero-copy h1,
.section-head h2,
.sales-copy h2,
.cta-card h2,
.strip-card h2,
.scene-primary h2,
.plan-card h3,
.compare-head h3,
.side-card h3,
.faq-card h3,
.feature-card h3,
.sales-point h3 {
	font-family: 'Sora', sans-serif;
	letter-spacing: -0.04em;
}

.hero-copy h1 {
	margin: 14px 0 0;
	font-size: clamp(42px, 5.8vw, 68px);
	line-height: 1.02;
	max-width: 12ch;
	overflow-wrap: anywhere;
}

.eyebrow {
	overflow-wrap: anywhere;
}

.hero-lede {
	margin: 18px 0 0;
	max-width: 660px;
	font-size: 18px;
	line-height: 1.72;
	color: var(--ink-soft);
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.hero-badges span {
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.74);
	border: 1px solid rgba(20, 35, 55, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
	font-size: 13px;
	font-weight: 800;
	color: var(--ink-soft);
}

.hero-actions,
.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.hero-proof {
	list-style: none;
	padding: 0;
	margin: 22px 0 0;
	display: grid;
	gap: 12px;
	max-width: 660px;
}

.hero-proof li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 20px;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.66);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.62;
	color: var(--ink-soft);
}

.hero-proof li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: var(--accent);
	margin-top: 2px;
	flex: 0 0 auto;
}

.hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 32px;
}

.metric-card {
	padding: 18px 18px 20px;
	border-radius: 26px;
	border: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 250, 245, 0.62) 100%);
	box-shadow: var(--shadow-soft);
	display: grid;
	gap: 8px;
}

.metric-card strong {
	font-size: 20px;
	line-height: 1.28;
	font-family: 'Sora', sans-serif;
	letter-spacing: -0.03em;
}

.metric-card.warn {
	background: linear-gradient(180deg, rgba(255, 244, 237, 0.92) 0%, rgba(255, 252, 248, 0.78) 100%);
	border-color: rgba(245, 155, 93, 0.28);
}

.hero-visual {
	display: grid;
	gap: 18px;
	position: relative;
}

.scene-card,
.strip-card,
.feature-card,
.plan-card,
.side-card,
.compare-card,
.faq-card,
.cta-card {
	border-radius: var(--radius-lg);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
}

.scene-card {
	padding: 26px;
	backdrop-filter: blur(18px);
}

.scene-primary {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 245, 237, 0.88) 100%);
	animation: float-panel 7s ease-in-out infinite;
}

.scene-note {
	background: linear-gradient(145deg, rgba(13, 32, 53, 0.98) 0%, rgba(21, 61, 87, 0.94) 100%);
	color: var(--white);
	position: relative;
	overflow: hidden;
	animation: float-panel 7s ease-in-out infinite reverse;
}

.scene-note::after {
	content: '';
	position: absolute;
	width: 180px;
	height: 180px;
	right: -60px;
	bottom: -74px;
	border-radius: 50%;
	background: rgba(255, 122, 89, 0.16);
}

.scene-note > * {
	position: relative;
	z-index: 1;
}

.scene-chrome {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
}

.scene-chrome span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(20, 35, 55, 0.22);
}

.scene-chrome span:first-child {
	background: rgba(255, 122, 89, 0.72);
}

.scene-chrome span:nth-child(2) {
	background: rgba(245, 155, 93, 0.72);
}

.scene-chrome span:last-child {
	background: rgba(22, 109, 104, 0.72);
}

.scene-grid {
	display: grid;
	gap: 20px;
}

.scene-primary h2 {
	margin: 10px 0 12px;
	font-size: 30px;
	line-height: 1.14;
}

.scene-primary p,
.scene-note p,
.plan-copy,
.plan-note,
.side-card p,
.faq-card p,
.feature-card p,
.sales-copy p,
.sales-point p,
.section-head p,
.cta-card p {
	line-height: 1.72;
	color: var(--muted);
	margin: 0;
}

.section-head .section-kicker,
.compare-head .section-kicker,
.strip-card .strip-label,
.scene-copy .scene-label,
.side-card .side-kicker,
.metric-card span {
	color: var(--accent-strong);
}

.scene-note .scene-note-kicker,
.sales-copy .section-kicker.light {
	color: #9fd5cf;
}

.scene-note h3 {
	margin: 8px 0 10px;
	font-size: 26px;
	line-height: 1.18;
	font-family: 'Sora', sans-serif;
	letter-spacing: -0.04em;
}

.scene-note p {
	color: rgba(255, 255, 255, 0.78);
}

.scene-stack {
	display: grid;
	gap: 14px;
}

.mini-pane {
	padding: 18px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(20, 35, 55, 0.08);
	display: grid;
	gap: 8px;
}

.mini-pane.accent {
	background: linear-gradient(135deg, rgba(13, 32, 53, 0.96) 0%, rgba(17, 73, 101, 0.98) 100%);
	border-color: rgba(255, 255, 255, 0.08);
	color: var(--white);
}

.mini-pane-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	min-height: 28px;
	padding: 0 12px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent-strong);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.mini-pane.accent .mini-pane-tag {
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.9);
}

.mini-pane strong {
	font-size: 18px;
	letter-spacing: -0.02em;
}

.mini-pane p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.mini-pane.accent p {
	color: rgba(255, 255, 255, 0.78);
}

.value-strip {
	padding-top: 14px;
	padding-bottom: 20px;
}

.strip-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.strip-card {
	padding: 28px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.76) 0%, rgba(248, 252, 255, 0.72) 100%);
}

.strip-card h2 {
	margin: 10px 0 0;
	font-size: 24px;
	line-height: 1.26;
}

.section-head {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 40px;
}

.section-head h2,
.sales-copy h2,
.cta-card h2 {
	margin: 10px 0 12px;
	font-size: clamp(34px, 5vw, 50px);
	line-height: 1.06;
}

.section-head p,
.sales-copy p,
.cta-card p {
	font-size: 18px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.feature-card {
	padding: 26px;
	background: rgba(255, 255, 255, 0.76);
}

.feature-card i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(22, 109, 104, 0.12) 0%, rgba(20, 35, 55, 0.06) 100%);
	color: var(--accent);
	font-size: 20px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.feature-card h3 {
	margin: 18px 0 10px;
	font-size: 22px;
	line-height: 1.2;
}

.section-contrast {
	background: linear-gradient(145deg, #0d2035 0%, #123a53 100%);
	position: relative;
	overflow: hidden;
}

.section-contrast::before,
.section-contrast::after {
	content: '';
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
	filter: blur(8px);
}

.section-contrast::before {
	width: 380px;
	height: 380px;
	left: -120px;
	top: 20px;
	background: rgba(255, 122, 89, 0.18);
}

.section-contrast::after {
	width: 320px;
	height: 320px;
	right: -80px;
	bottom: 40px;
	background: rgba(117, 241, 215, 0.14);
}

.sales-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 24px;
	align-items: start;
}

.sales-copy,
.sales-point {
	color: var(--white);
}

.sales-copy p {
	color: rgba(255, 255, 255, 0.76);
}

.sales-board {
	display: grid;
	gap: 16px;
}

.sales-point {
	padding: 24px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(16px);
	box-shadow: 0 24px 48px rgba(6, 17, 29, 0.20);
}

.sales-point span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	font-weight: 800;
	letter-spacing: 0.08em;
	font-size: 12px;
	text-transform: uppercase;
}

.sales-point h3 {
	margin: 18px 0 10px;
	font-size: 24px;
	line-height: 1.16;
}

.sales-point p {
	color: rgba(255, 255, 255, 0.72);
}

.plans-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
	gap: 18px;
	align-items: stretch;
}

.plan-card {
	padding: 28px;
	background: rgba(255, 255, 255, 0.82);
	display: flex;
	flex-direction: column;
}

.plan-card.featured {
	background: linear-gradient(155deg, #0c1f34 0%, #103049 52%, #15516d 100%);
	border-color: transparent;
	box-shadow: 0 36px 78px rgba(12, 31, 52, 0.28);
	color: var(--white);
}

.plan-ribbon {
	color: var(--brand-deep);
	margin: 0;
}

.plan-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.plan-burst {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(115, 241, 214, 0.14);
	border: 1px solid rgba(115, 241, 214, 0.18);
	color: #73f1d6;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.plan-card.featured .plan-ribbon,
.plan-card.featured .plan-copy,
.plan-card.featured .plan-note,
.plan-card.featured .plan-list li,
.plan-card.featured .plan-price span,
.plan-card.featured .plan-price-caption,
.plan-card.featured .plan-billing-subtitle,
.plan-card.featured .plan-billing-label {
	color: rgba(255, 255, 255, 0.78);
}

.plan-card h3 {
	margin: 14px 0 8px;
	font-size: 30px;
	line-height: 1.04;
}

.plan-copy {
	margin: 0 0 16px;
	max-width: 34ch;
	min-height: 0;
	color: var(--muted);
}

.plan-billing-shell {
	display: grid;
	gap: 16px;
	margin: 4px 0 22px;
	padding: 18px;
	border-radius: 28px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.plan-card:not(.featured) .plan-billing-shell {
	background: rgba(20, 35, 55, 0.04);
	border-color: rgba(20, 35, 55, 0.08);
	box-shadow: none;
}

.plan-billing-label {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-strong);
}

.plan-billing-subtitle {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.65;
	color: var(--muted);
}

.plan-billing-toggle {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	padding: 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-card:not(.featured) .plan-billing-toggle {
	background: rgba(20, 35, 55, 0.05);
	border-color: rgba(20, 35, 55, 0.08);
}

.plan-billing-option {
	appearance: none;
	border: 0;
	background: transparent;
	min-height: 48px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
	cursor: pointer;
	transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.plan-card:not(.featured) .plan-billing-option {
	color: var(--ink-soft);
}

.plan-billing-option:hover {
	transform: translateY(-1px);
}

.plan-billing-option.is-active {
	background: #ffffff;
	color: #0d2035;
	box-shadow: 0 14px 28px rgba(13, 32, 53, 0.18);
}

.plan-card:not(.featured) .plan-billing-option.is-active {
	background: linear-gradient(135deg, var(--brand) 0%, #ff936b 100%);
	color: var(--white);
	box-shadow: 0 16px 28px rgba(255, 122, 89, 0.22);
}

.plan-price {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 22px;
	flex-wrap: wrap;
}

.plan-price-stack {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.plan-price-compare {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.52);
	text-decoration: line-through;
	text-decoration-thickness: 2px;
	text-decoration-color: rgba(255, 255, 255, 0.42);
}

.plan-price-compare:empty {
	display: none;
}

.plan-card:not(.featured) .plan-price-compare {
	color: rgba(20, 35, 55, 0.42);
	text-decoration-color: rgba(20, 35, 55, 0.24);
}

.plan-price strong {
	font-family: 'Sora', sans-serif;
	font-size: 48px;
	line-height: 1;
	letter-spacing: -0.05em;
}

.plan-price span {
	padding-bottom: 6px;
	color: var(--muted);
	font-weight: 700;
}

.plan-price-caption {
	margin: -10px 0 22px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--muted);
}

.plan-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
	flex: 1 1 auto;
}

.plan-list li {
	position: relative;
	padding-left: 30px;
	line-height: 1.58;
	color: var(--ink-soft);
}

.plan-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(22, 109, 104, 0.12);
}

.plan-list li::after {
	content: '';
	position: absolute;
	left: 6px;
	top: 11px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
}

.plan-card.featured .plan-list li::before {
	background: rgba(117, 241, 215, 0.18);
}

.plan-card.featured .plan-list li::after {
	background: #73f1d6;
}

.plan-note {
	margin: 18px 0 22px;
	font-size: 14px;
	color: var(--muted);
}

.pricing-side {
	display: grid;
	gap: 18px;
}

.side-card {
	padding: 24px;
	background: rgba(255, 255, 255, 0.76);
}

.side-card.alert {
	background: linear-gradient(180deg, rgba(255, 243, 234, 0.96) 0%, rgba(255, 249, 244, 0.84) 100%);
	border-color: rgba(245, 155, 93, 0.32);
}

.side-card h3 {
	margin: 8px 0 10px;
	font-size: 24px;
	line-height: 1.16;
}

.compare-card {
	margin-top: 24px;
	padding: 28px;
	background: rgba(255, 255, 255, 0.82);
}

.compare-head h3 {
	margin: 8px 0 0;
	font-size: 28px;
	line-height: 1.12;
}

.compare-grid {
	margin-top: 22px;
	display: grid;
	gap: 0;
}

.compare-footnote {
	margin: 18px 0 0;
	font-size: 14px;
	line-height: 1.68;
	color: var(--muted);
}

.compare-row {
	display: grid;
	grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr));
	gap: 16px;
	align-items: center;
	padding: 16px 0;
	border-top: 1px solid var(--line);
}

.compare-row-head {
	padding-top: 0;
	border-top: none;
}

.compare-row > span:first-child {
	font-weight: 800;
	color: var(--ink);
}

.compare-row-head > span {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

.compare-pill {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 40px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(22, 109, 104, 0.12);
	color: var(--accent-strong);
	font-weight: 800;
	line-height: 1.4;
}

.compare-pill.is-off {
	background: rgba(20, 35, 55, 0.06);
	color: var(--muted);
}

.compare-pill.is-note {
	background: rgba(255, 122, 89, 0.12);
	color: var(--brand-deep);
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.faq-card {
	padding: 24px;
	background: rgba(255, 255, 255, 0.76);
}

.faq-card h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.18;
}

.section-cta {
	padding-top: 48px;
	padding-bottom: 104px;
}

.section-regulatory {
	padding-top: 0;
	padding-bottom: 46px;
}

.cta-card {
	padding: 38px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 250, 248, 0.82) 100%);
	text-align: center;
	box-shadow: var(--shadow);
}

.regulatory-card {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 24px;
	padding: 30px;
	border: 1px solid rgba(20, 35, 55, 0.08);
	border-radius: 32px;
	background:
		radial-gradient(circle at top left, rgba(255, 122, 89, 0.18) 0%, rgba(255, 122, 89, 0) 38%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 245, 241, 0.92) 100%);
	box-shadow: var(--shadow);
}

.regulatory-brand {
	display: grid;
	align-content: start;
	gap: 14px;
}

.regulatory-logo-image {
	width: clamp(156px, 18vw, 198px);
	height: auto;
	filter: drop-shadow(0 12px 22px rgba(20, 35, 55, 0.12));
}

.regulatory-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.regulatory-link-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 22px;
	border-radius: 24px;
	border: 1px solid rgba(20, 35, 55, 0.08);
	background: rgba(255, 255, 255, 0.84);
	color: var(--ink);
	text-decoration: none;
	box-shadow: 0 18px 34px rgba(20, 35, 55, 0.08);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.regulatory-link-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 122, 89, 0.24);
	box-shadow: 0 22px 38px rgba(20, 35, 55, 0.12);
}

.regulatory-link-card strong {
	font-size: 21px;
	line-height: 1.16;
}

.regulatory-link-card p {
	margin: 0;
	font-size: 15px;
	color: var(--muted);
	line-height: 1.6;
}

.regulatory-link-card.is-contact {
	background: linear-gradient(150deg, rgba(255, 122, 89, 0.12) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.regulatory-label {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--brand-deep);
}

.regulatory-cta {
	margin-top: auto;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink);
}

.cta-card h2 {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.cta-card p {
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
}

.site-footer {
	padding: 0 0 38px;
}

.footer-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
}

.footer-links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-row p,
.footer-row a {
	margin: 0;
	font-size: 14px;
	color: var(--muted);
}

.footer-row a:hover {
	color: var(--ink);
}

@keyframes float-panel {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-6px);
	}
}

@media (max-width: 1180px) {
	.feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.plans-grid {
		grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	}

	.pricing-side {
		grid-column: 1 / -1;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.regulatory-card {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 1040px) {
	.hero-grid,
	.sales-grid {
		grid-template-columns: 1fr;
	}

	.hero-copy h1 {
		max-width: 13ch;
	}

	.strip-grid {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 860px) {
	body.nav-open {
		overflow: hidden;
	}

	.container {
		width: min(var(--max-width), calc(100% - 28px));
	}

	.header-row {
		min-height: 76px;
		gap: 10px;
	}

	.header-lang-toggle {
		display: inline-flex;
		margin-left: auto;
		min-height: 44px;
		padding: 0 14px;
		font-size: 13px;
		width: auto;
		max-width: calc(100vw - 108px);
		flex: 0 1 auto;
	}

	.nav-toggle {
		display: inline-flex;
		flex: 0 0 auto;
	}

	.header-panel {
		display: none;
		position: absolute;
		top: calc(100% - 2px);
		right: 0;
		left: auto;
		width: min(292px, calc(100vw - 24px));
		padding: 10px;
		border-radius: 18px;
		border: 1px solid rgba(20, 35, 55, 0.08);
		background: rgba(255, 249, 244, 0.98);
		box-shadow: 0 18px 38px rgba(20, 35, 55, 0.14);
		max-height: none;
		overflow: visible;
		transform-origin: top right;
	}

	.header-panel.is-open {
		display: grid;
		gap: 6px;
	}

	.site-nav {
		display: grid;
		gap: 1px;
	}

	.site-nav a {
		width: 100%;
		padding: 8px 10px;
		border-radius: 12px;
		justify-content: flex-start;
		font-size: 14px;
	}

	.site-nav a::after {
		display: none;
	}

	.site-nav a:hover {
		background: rgba(20, 35, 55, 0.05);
	}

	.header-actions {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 6px;
		padding-top: 8px;
		border-top: 1px solid rgba(20, 35, 55, 0.08);
	}

	.btn-nav {
		width: 100%;
		min-height: 40px;
		padding: 0 10px;
		font-size: 13px;
	}

	.lang-toggle-badge {
		min-width: 30px;
		height: 26px;
		padding: 0 8px;
	}

	.btn-brand {
		grid-column: 1 / -1;
	}

	.hero,
	.section {
		padding: 72px 0;
	}

	.hero-metrics,
	.feature-grid,
	.plans-grid,
	.pricing-side,
	.faq-grid,
	.regulatory-grid {
		grid-template-columns: 1fr;
	}

	.compare-row {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.compare-row > span:first-child {
		margin-bottom: 2px;
	}

	.footer-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-links {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.hero {
		padding-top: 38px;
		padding-bottom: 22px;
	}

	.hero-copy h1 {
		font-size: 38px;
		max-width: none;
	}

	.brand-logo-image {
		width: 148px;
	}

	.hero-lede,
	.section-head p,
	.sales-copy p,
	.cta-card p {
		font-size: 16px;
	}

	.hero-actions,
	.cta-actions {
		flex-direction: column;
	}

	.hero-actions .btn,
	.cta-actions .btn {
		width: 100%;
	}

	.scene-card,
	.strip-card,
	.feature-card,
	.plan-card,
	.side-card,
	.compare-card,
	.faq-card,
	.cta-card {
		padding: 22px;
		border-radius: 24px;
	}

	.scene-primary h2,
	.plan-card h3,
	.compare-head h3,
	.side-card h3,
	.faq-card h3,
	.feature-card h3,
	.sales-point h3 {
		font-size: 24px;
	}

	.section-head h2,
	.sales-copy h2,
	.cta-card h2 {
		font-size: 34px;
	}

	.plan-price strong {
		font-size: 40px;
	}

	.plan-billing-shell {
		padding: 16px;
		border-radius: 24px;
	}

	.plan-price {
		align-items: flex-start;
	}

	.strip-card h2 {
		font-size: 22px;
	}
}