/**
 * SigortaTag — design system.
 *
 * Replaces the WordPress/Woodmart/Elementor stylesheet stack entirely.
 * Everything the public site needs lives here: tokens, resets, typography,
 * layout primitives and components. No framework, no icon font.
 *
 * Contents
 *   1. Tokens
 *   2. Reset & base
 *   3. Typography
 *   4. Layout primitives
 *   5. Buttons
 *   6. Header & navigation
 *   7. Hero
 *   8. Sections & cards
 *   9. Quote form
 *  10. Accordion (FAQ)
 *  11. Footer
 *  12. Floating actions (WhatsApp, back-to-top)
 *  13. Prose (long-form pages)
 *  14. Motion & utilities
 */

/* ========================================================== 1. Tokens === */

:root {
	/* brand — purple from the SigortaTag logo */
	--p-50:  #f6f3fc;
	--p-100: #ece5f8;
	--p-200: #d9cdf1;
	--p-300: #bda9e6;
	--p-400: #9d80d6;
	--p-500: #815ec4;
	--p-600: #674ea7;   /* primary */
	--p-700: #563f8b;
	--p-800: #44336d;
	--p-900: #2e2249;

	/* accent — the peach of the hashtag mark */
	--a-100: #fdeee8;
	--a-200: #fad8cb;
	--a-300: #f6b9a2;
	--a-400: #f09b7e;
	--a-500: #e57c5c;

	/* neutrals */
	--n-0:   #ffffff;
	--n-25:  #fcfcfd;
	--n-50:  #f7f7fa;
	--n-100: #eff0f4;
	--n-200: #e2e4ea;
	--n-300: #cbcfd9;
	--n-400: #9aa0b0;
	--n-500: #6f7688;
	--n-600: #545a६b;
	--n-700: #3f4453;
	--n-800: #2a2e3a;
	--n-900: #191c25;

	--ok:   #12855c;
	--ok-bg:#e6f5ee;
	--err:  #c2392c;
	--err-bg:#fdeceb;

	/* semantic */
	--ink:        var(--n-900);
	--ink-soft:   var(--n-600);
	--ink-mute:   var(--n-500);
	--surface:    var(--n-0);
	--surface-alt:var(--n-50);
	--line:       var(--n-200);
	--line-soft:  var(--n-100);

	/* type */
	--font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

	--fs-display: clamp(2.6rem, 1.6rem + 4.2vw, 5rem);
	--fs-h1:      clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem);
	--fs-h2:      clamp(1.7rem, 1.3rem + 1.7vw, 2.5rem);
	--fs-h3:      clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
	--fs-lead:    clamp(1.03rem, 0.98rem + 0.3vw, 1.19rem);
	--fs-body:    1rem;
	--fs-sm:      0.9rem;
	--fs-xs:      0.8rem;
	--fs-eyebrow: 0.78rem;

	/* space */
	--s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
	--s-5: 20px;  --s-6: 24px;  --s-8: 32px;  --s-10: 40px;
	--s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;
	--section-y: clamp(64px, 8vw, 116px);

	/* shape */
	--r-sm: 8px;
	--r-md: 12px;
	--r-lg: 18px;
	--r-xl: 26px;
	--r-full: 999px;

	--shadow-xs: 0 1px 2px rgba(25, 28, 37, .05);
	--shadow-sm: 0 1px 3px rgba(25, 28, 37, .06), 0 4px 12px -4px rgba(25, 28, 37, .06);
	--shadow-md: 0 2px 6px rgba(25, 28, 37, .05), 0 12px 28px -8px rgba(25, 28, 37, .10);
	--shadow-lg: 0 4px 12px rgba(25, 28, 37, .06), 0 28px 56px -16px rgba(46, 34, 73, .18);
	--shadow-brand: 0 10px 30px -10px rgba(103, 78, 167, .45);

	--container: 1180px;
	--container-wide: 1360px;
	--ease: cubic-bezier(.4, 0, .2, 1);
	--ease-out: cubic-bezier(.16, 1, .3, 1);

	--header-h: 76px;
}

/* the neutral above had a stray character; keep a valid fallback */
:root { --n-600: #545a6b; }

/* ==================================================== 2. Reset & base === */

*, *::before, *::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
	margin: 0;
	background: var(--surface);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: 1.65;
	font-feature-settings: 'cv05' 1, 'cv08' 1, 'ss03' 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

/* lists marked as such semantically carry no markers */
ul[role="list"], ol[role="list"] { list-style: none; margin: 0; padding: 0; }

a { color: var(--p-600); text-decoration: none; transition: color .16s var(--ease); }
a:hover { color: var(--p-700); }

:focus-visible {
	outline: 2px solid var(--p-500);
	outline-offset: 3px;
	border-radius: 4px;
}

::selection { background: var(--p-200); color: var(--p-900); }

hr { border: 0; border-top: 1px solid var(--line); margin: var(--s-8) 0; }

.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 200;
	background: var(--p-600); color: #fff; padding: 12px 20px;
	border-radius: 0 0 var(--r-md) 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* ==================================================== 3. Typography === */

h1, h2, h3, h4, h5 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: -0.022em;
	margin: 0;
	color: var(--ink);
	text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.014em; line-height: 1.3; }
h4 { font-size: 1.06rem; letter-spacing: -0.01em; line-height: 1.4; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

strong, b { font-weight: 650; color: var(--ink); }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: var(--fs-eyebrow);
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--p-600);
	margin-bottom: var(--s-4);
}
.eyebrow::before {
	content: '';
	width: 22px; height: 2px;
	background: linear-gradient(90deg, var(--p-400), var(--a-400));
	border-radius: 2px;
}
.eyebrow.is-centered { justify-content: center; }

.lead {
	font-size: var(--fs-lead);
	line-height: 1.7;
	color: var(--ink-soft);
	text-wrap: pretty;
}

.display { font-size: var(--fs-display); letter-spacing: -0.032em; line-height: 1.03; }

/* the underline flourish carried over from the original headline */
.u-mark {
	position: relative;
	display: inline-block;
	color: var(--p-500);
	white-space: nowrap;
}
.u-mark::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: .1em;
	height: .17em;
	background: linear-gradient(90deg, var(--a-300), var(--p-300));
	border-radius: var(--r-full);
	opacity: .55;
	z-index: -1;
}

.text-center { text-align: center; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

/* ============================================== 4. Layout primitives === */

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--s-6);
}
.container.is-wide { max-width: var(--container-wide); }

.section { padding-block: var(--section-y); position: relative; }
.section.is-tight { padding-block: clamp(48px, 5vw, 72px); }
.section.is-alt { background: var(--surface-alt); }
.section.is-ink { background: var(--n-900); color: var(--n-100); }
.section.is-ink h2, .section.is-ink h3 { color: #fff; }

.section-head { max-width: 660px; margin-bottom: clamp(36px, 4vw, 60px); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: var(--s-4); }

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.stack > * + * { margin-top: var(--s-4); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }

/* decorative hashtag mark used as a section backdrop */
.deco-hash {
	position: absolute;
	pointer-events: none;
	user-select: none;
	opacity: .07;
	z-index: 0;
}

/* ==================================================== 5. Buttons === */

.btn {
	--btn-bg: var(--p-600);
	--btn-fg: #fff;
	--btn-bd: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 13px 26px;
	background: var(--btn-bg);
	color: var(--btn-fg);
	border: 1.5px solid var(--btn-bd);
	border-radius: var(--r-full);
	font-family: var(--font-display);
	font-size: 0.95rem;
	font-weight: 650;
	letter-spacing: -0.005em;
	line-height: 1.2;
	white-space: nowrap;
	transition: transform .18s var(--ease-out), box-shadow .18s var(--ease), background .16s var(--ease), color .16s var(--ease);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { box-shadow: var(--shadow-brand); }
.btn-primary:hover { --btn-bg: var(--p-700); }

.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn-ghost:hover { --btn-bd: var(--p-300); --btn-fg: var(--p-700); background: var(--p-50); }

.btn-light { --btn-bg: #fff; --btn-fg: var(--p-700); box-shadow: var(--shadow-sm); }
.btn-light:hover { --btn-fg: var(--p-800); }

.btn-outline-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.35); }
.btn-outline-light:hover { --btn-bd: #fff; background: rgba(255,255,255,.08); }

.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-sm { padding: 9px 18px; font-size: 0.875rem; }
.btn-block { width: 100%; }

.btn svg { width: 18px; height: 18px; flex: none; }

.link-arrow {
	display: inline-flex; align-items: center; gap: 7px;
	font-weight: 600; font-size: 0.94rem;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ========================================= 6. Header & navigation === */

.topbar {
	background: var(--n-900);
	color: var(--n-300);
	font-size: var(--fs-xs);
	line-height: 1;
}
.topbar-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--s-6); min-height: 40px; padding-block: 10px;
}
.topbar a { color: var(--n-300); display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; opacity: .85; }
.topbar-list { display: flex; gap: var(--s-5); flex-wrap: wrap; align-items: center; }

.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255, 255, 255, .88);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.is-stuck {
	border-bottom-color: var(--line);
	box-shadow: 0 1px 20px -8px rgba(25, 28, 37, .22);
}
.header-inner {
	display: flex; align-items: center; gap: var(--s-6);
	min-height: var(--header-h);
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { width: auto; height: 42px; }

.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: var(--s-1); list-style: none; margin: 0; padding: 0; }
.nav-link {
	position: relative;
	display: block;
	padding: 9px 15px;
	border-radius: var(--r-full);
	color: var(--n-700);
	font-size: 0.93rem;
	font-weight: 550;
	transition: color .16s var(--ease), background .16s var(--ease);
}
.nav-link:hover { color: var(--p-700); background: var(--p-50); }
.nav-link.is-active { color: var(--p-700); font-weight: 650; }
.nav-link.is-active::after {
	content: '';
	position: absolute; left: 15px; right: 15px; bottom: 2px;
	height: 2px; border-radius: 2px;
	background: var(--p-500);
}

.header-cta { display: flex; align-items: center; gap: var(--s-3); flex: none; }

.nav-toggle {
	display: none;
	width: 44px; height: 44px;
	align-items: center; justify-content: center;
	background: none; border: 1px solid var(--line);
	border-radius: var(--r-md);
	flex: none;
}
.nav-toggle span {
	position: relative; display: block;
	width: 18px; height: 1.8px; border-radius: 2px; background: var(--n-800);
	transition: transform .25s var(--ease), background .2s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
	content: ''; position: absolute; left: 0;
	width: 18px; height: 1.8px; border-radius: 2px; background: var(--n-800);
	transition: transform .25s var(--ease), top .2s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
	position: fixed; inset: 0; z-index: 99;
	background: #fff;
	padding: calc(var(--header-h) + 40px) var(--s-6) var(--s-10);
	display: flex; flex-direction: column; gap: var(--s-2);
	transform: translateX(100%);
	transition: transform .32s var(--ease-out);
	overflow-y: auto;
	visibility: hidden;
}
body.nav-open .mobile-nav { transform: translateX(0); visibility: visible; }
.mobile-nav a.m-link {
	padding: 15px 4px;
	border-bottom: 1px solid var(--line-soft);
	font-family: var(--font-display);
	font-size: 1.22rem;
	font-weight: 650;
	color: var(--ink);
}
.mobile-nav a.m-link.is-active { color: var(--p-600); }
.mobile-nav .m-foot { margin-top: auto; padding-top: var(--s-8); display: grid; gap: var(--s-3); }

/* ======================================================== 7. Hero === */

.hero {
	position: relative;
	padding-block: clamp(48px, 6vw, 92px) clamp(56px, 7vw, 108px);
	background:
		radial-gradient(1100px 520px at 12% -8%, var(--p-50) 0%, transparent 62%),
		radial-gradient(760px 420px at 92% 4%, var(--a-100) 0%, transparent 58%),
		var(--surface);
	overflow: hidden;
}
.hero::after {
	/* faint grid to give the flat background some texture */
	content: '';
	position: absolute; inset: 0;
	background-image:
		linear-gradient(var(--n-200) 1px, transparent 1px),
		linear-gradient(90deg, var(--n-200) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: radial-gradient(760px 420px at 22% 12%, #000 0%, transparent 72%);
	mask-image: radial-gradient(760px 420px at 22% 12%, #000 0%, transparent 72%);
	opacity: .5;
	pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	gap: clamp(36px, 5vw, 76px);
	align-items: center;
}

.hero-copy .display { margin-bottom: var(--s-5); }
.hero-copy .lead { max-width: 46ch; margin-bottom: var(--s-8); }

.hero-mark {
	position: absolute;
	right: 46%;
	top: 50%;
	transform: translate(0, -50%);
	width: clamp(320px, 34vw, 520px);
	opacity: .13;
	pointer-events: none;
	z-index: 0;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-8); }

.hero-points { display: grid; gap: var(--s-3); list-style: none; margin: 0; padding: 0; }
.hero-points li {
	display: flex; align-items: flex-start; gap: 11px;
	font-size: 0.95rem; color: var(--ink-soft);
}
.hero-points svg { width: 20px; height: 20px; flex: none; color: var(--p-500); margin-top: 1px; }

/* ============================================= 8. Sections & cards === */

.card {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: var(--s-8);
	transition: transform .26s var(--ease-out), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--p-200); }

.card-icon {
	width: 52px; height: 52px;
	display: grid; place-items: center;
	border-radius: 15px;
	background: linear-gradient(140deg, var(--p-100), var(--p-50));
	color: var(--p-600);
	margin-bottom: var(--s-5);
	transition: background .26s var(--ease), color .26s var(--ease), transform .26s var(--ease-out);
}
.card-icon svg { width: 25px; height: 25px; }
.card:hover .card-icon {
	background: linear-gradient(140deg, var(--p-600), var(--p-500));
	color: #fff;
	transform: scale(1.06) rotate(-4deg);
}

.card h3 { margin-bottom: var(--s-3); }
.card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0; }
.card-link { margin-top: var(--s-5); }

/* trust strip */
.trust {
	background: var(--n-900);
	color: #fff;
	border-radius: var(--r-xl);
	padding: clamp(28px, 4vw, 46px) clamp(24px, 4vw, 52px);
	margin-top: calc(-1 * clamp(28px, 4vw, 56px));
	position: relative;
	z-index: 2;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}
.trust::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(620px 260px at 8% 0%, rgba(129, 94, 196, .5) 0%, transparent 68%),
	            radial-gradient(520px 240px at 96% 110%, rgba(240, 155, 126, .28) 0%, transparent 62%);
	pointer-events: none;
}
.trust-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--s-6);
}
.trust-item { text-align: center; }
.trust-item .n {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 1.3rem + 2vw, 2.9rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
	background: linear-gradient(120deg, #fff 30%, var(--p-300));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.trust-item .k {
	margin-top: 9px;
	font-size: var(--fs-sm);
	color: rgba(255, 255, 255, .68);
	letter-spacing: .01em;
}

/* numbered process steps */
.steps { counter-reset: step; display: grid; gap: var(--s-6); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step { position: relative; padding-top: var(--s-8); }
.step::before {
	counter-increment: step;
	content: counter(step, decimal-leading-zero);
	position: absolute; top: 0; left: 0;
	font-family: var(--font-display);
	font-size: 3.1rem; font-weight: 800; line-height: 1;
	letter-spacing: -0.04em;
	color: var(--p-100);
}
.step h3 { position: relative; margin-bottom: var(--s-3); }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* feature list with check marks */
.feature-list { display: grid; gap: var(--s-6); list-style: none; margin: 0; padding: 0; }
.feature-list li { display: flex; gap: var(--s-4); align-items: flex-start; }
.feature-ico {
	width: 42px; height: 42px; flex: none;
	display: grid; place-items: center;
	border-radius: 12px;
	background: var(--p-50);
	color: var(--p-600);
}
.feature-ico svg { width: 21px; height: 21px; }
.feature-list h4 { margin-bottom: 5px; }
.feature-list p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; }

/* media panel used beside prose */
.media-panel {
	position: relative;
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	background: var(--p-50);
}
.media-panel img { width: 100%; height: 100%; object-fit: cover; }
.media-panel.is-tall { aspect-ratio: 4 / 5; }

.badge-float {
	position: absolute;
	background: #fff;
	border-radius: var(--r-lg);
	padding: var(--s-4) var(--s-5);
	box-shadow: var(--shadow-lg);
	display: flex; align-items: center; gap: var(--s-3);
}
.badge-float .n { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; line-height: 1; color: var(--p-600); }
.badge-float .k { font-size: var(--fs-xs); color: var(--ink-mute); line-height: 1.35; }

/* CTA band */
.cta-band {
	position: relative;
	background: linear-gradient(128deg, var(--p-700) 0%, var(--p-600) 46%, var(--p-500) 100%);
	border-radius: var(--r-xl);
	padding: clamp(36px, 5vw, 64px);
	color: #fff;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.cta-band::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(560px 300px at 88% 12%, rgba(240, 155, 126, .38) 0%, transparent 64%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: var(--s-4); }
.cta-band p { color: rgba(255, 255, 255, .84); max-width: 54ch; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-8); flex-wrap: wrap; }

/* ================================================== 9. Quote form === */

.quote-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}
.quote-head {
	padding: var(--s-6) var(--s-8) var(--s-5);
	background: linear-gradient(150deg, var(--p-600), var(--p-500));
	color: #fff;
}
.quote-head h2, .quote-head .h {
	font-family: var(--font-display);
	font-size: 1.16rem; font-weight: 700; color: #fff; margin: 0 0 4px;
	letter-spacing: -0.012em;
}
.quote-head p { font-size: var(--fs-sm); color: rgba(255, 255, 255, .8); margin: 0; }

.quote-body { padding: var(--s-6) var(--s-8) var(--s-8); }

.field { margin-bottom: var(--s-5); }
/* :not(.consent) so the consent row keeps its own flex layout — a bare
   `.field > label` would out-specify it */
.field > label:not(.consent),
.field-label {
	display: block;
	font-size: var(--fs-xs);
	font-weight: 650;
	letter-spacing: .01em;
	color: var(--n-700);
	margin-bottom: 7px;
}
.field-label .req { color: var(--a-500); }

.input-wrap { position: relative; }
.input-wrap > svg {
	position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
	width: 18px; height: 18px; color: var(--n-400);
	pointer-events: none;
	transition: color .16s var(--ease);
}
.input-wrap input {
	width: 100%;
	padding: 13px 15px 13px 45px;
	background: var(--n-25);
	border: 1.5px solid var(--line);
	border-radius: var(--r-md);
	font-size: 0.95rem;
	transition: border-color .16s var(--ease), background .16s var(--ease), box-shadow .16s var(--ease);
}
.input-wrap input::placeholder { color: var(--n-400); }
.input-wrap input:hover { border-color: var(--n-300); }
.input-wrap input:focus {
	outline: none;
	background: #fff;
	border-color: var(--p-500);
	box-shadow: 0 0 0 4px var(--p-100);
}
.input-wrap input:focus + svg,
.input-wrap:focus-within > svg { color: var(--p-500); }

/* package chips */
.chip-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.chip {
	position: relative;
	display: flex; align-items: center; gap: 10px;
	padding: 12px 14px;
	background: var(--n-25);
	border: 1.5px solid var(--line);
	border-radius: var(--r-md);
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--n-700);
	cursor: pointer;
	transition: border-color .16s var(--ease), background .16s var(--ease), color .16s var(--ease);
	user-select: none;
}
.chip:hover { border-color: var(--p-300); background: var(--p-50); }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip .box {
	width: 19px; height: 19px; flex: none;
	border: 1.5px solid var(--n-300);
	border-radius: 6px;
	background: #fff;
	display: grid; place-items: center;
	transition: background .16s var(--ease), border-color .16s var(--ease), transform .16s var(--ease-out);
}
.chip .box svg { width: 12px; height: 12px; color: #fff; opacity: 0; transform: scale(.5); transition: opacity .14s var(--ease), transform .18s var(--ease-out); }
.chip input:checked ~ .box { background: var(--p-600); border-color: var(--p-600); }
.chip input:checked ~ .box svg { opacity: 1; transform: scale(1); }
.chip:has(input:checked) { border-color: var(--p-500); background: var(--p-50); color: var(--p-800); font-weight: 600; }
.chip input:focus-visible ~ .box { box-shadow: 0 0 0 4px var(--p-100); }

/* consent row */
.consent {
	display: flex; gap: 11px; align-items: flex-start;
	font-size: var(--fs-sm); color: var(--ink-soft);
	cursor: pointer;
	line-height: 1.55;
}
.consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.consent .box {
	width: 19px; height: 19px; flex: none; margin-top: 2px;
	border: 1.5px solid var(--n-300); border-radius: 6px; background: #fff;
	display: grid; place-items: center;
	transition: background .16s var(--ease), border-color .16s var(--ease);
}
.consent .box svg { width: 12px; height: 12px; color: #fff; opacity: 0; transform: scale(.5); transition: opacity .14s var(--ease), transform .18s var(--ease-out); }
.consent input:checked ~ .box { background: var(--p-600); border-color: var(--p-600); }
.consent input:checked ~ .box svg { opacity: 1; transform: scale(1); }
.consent input:focus-visible ~ .box { box-shadow: 0 0 0 4px var(--p-100); }
.consent a { text-decoration: underline; text-underline-offset: 2px; }

/* validation */
.field-error {
	display: block;
	margin-top: 6px;
	font-size: var(--fs-xs);
	color: var(--err);
	font-weight: 500;
}
.has-error .input-wrap input,
.has-error .chip,
.has-error .consent .box { border-color: var(--err); }
.has-error .input-wrap > svg { color: var(--err); }

.form-note {
	padding: 12px 15px;
	border-radius: var(--r-md);
	font-size: var(--fs-sm);
	margin-bottom: var(--s-5);
	border: 1px solid transparent;
}
.form-note.is-error { background: var(--err-bg); color: var(--err); border-color: #f3c9c4; }

.submit-row { margin-top: var(--s-6); }
.form-legal { margin-top: var(--s-4); font-size: var(--fs-xs); color: var(--ink-mute); text-align: center; }

button.is-busy { opacity: .7; pointer-events: none; }

.honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
}

/* success panel */
.form-success {
	display: none;
	padding: clamp(40px, 5vw, 60px) var(--s-8);
	text-align: center;
}
.form-success.is-visible { display: block; animation: pop .45s var(--ease-out) both; }
.form-success .tick {
	width: 68px; height: 68px; margin: 0 auto var(--s-5);
	border-radius: 50%;
	background: var(--ok-bg);
	color: var(--ok);
	display: grid; place-items: center;
}
.form-success .tick svg { width: 34px; height: 34px; }
.form-success h3 { margin-bottom: var(--s-3); }
.form-success p { color: var(--ink-soft); max-width: 40ch; margin-inline: auto; }

@keyframes pop {
	from { opacity: 0; transform: scale(.94) translateY(10px); }
	to   { opacity: 1; transform: none; }
}

/* ================================================= 10. Accordion === */

.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-btn {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between; gap: var(--s-5);
	padding: var(--s-6) 0;
	background: none; border: 0;
	text-align: left;
	font-family: var(--font-display);
	font-size: 1.04rem;
	font-weight: 650;
	color: var(--ink);
	letter-spacing: -0.01em;
	transition: color .16s var(--ease);
}
.acc-btn:hover { color: var(--p-600); }
.acc-sign {
	width: 32px; height: 32px; flex: none;
	border-radius: 50%;
	border: 1.5px solid var(--line);
	display: grid; place-items: center;
	transition: background .2s var(--ease), border-color .2s var(--ease), transform .28s var(--ease-out);
}
.acc-sign svg { width: 15px; height: 15px; color: var(--n-500); transition: color .2s var(--ease); }
.acc-btn[aria-expanded="true"] .acc-sign {
	background: var(--p-600); border-color: var(--p-600); transform: rotate(180deg);
}
.acc-btn[aria-expanded="true"] .acc-sign svg { color: #fff; }

.acc-panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .32s var(--ease-out);
}
.acc-panel > div { overflow: hidden; }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel p { color: var(--ink-soft); padding-bottom: var(--s-6); margin: 0; max-width: 72ch; }

/* ==================================================== 11. Footer === */

.site-footer {
	background: var(--n-900);
	color: var(--n-400);
	padding-block: clamp(56px, 6vw, 84px) var(--s-8);
	font-size: 0.93rem;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
	gap: clamp(28px, 4vw, 56px);
	padding-bottom: var(--s-12);
}
/* The logo artwork has its own light background, so inverting it would turn
   the whole mark into a white block — show it on a small light chip instead. */
.footer-brand .logo-chip {
	display: inline-flex;
	background: #fff;
	border-radius: var(--r-md);
	padding: 10px 14px;
	margin-bottom: var(--s-5);
}
.footer-brand img { height: 34px; width: auto; }
.footer-brand p { color: var(--n-400); max-width: 38ch; font-size: 0.92rem; }

.footer-col h4 {
	color: #fff; font-size: 0.9rem; letter-spacing: .06em; text-transform: uppercase;
	margin-bottom: var(--s-5); font-family: var(--font-body); font-weight: 650;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--n-400); }
.footer-col a:hover { color: #fff; }

.footer-contact { display: grid; gap: var(--s-4); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--p-400); }
.footer-contact a, .footer-contact span { color: var(--n-300); }

.social-row { display: flex; gap: 10px; margin-top: var(--s-6); }
.social-row a {
	width: 38px; height: 38px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .07);
	color: var(--n-300);
	transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease-out);
}
.social-row a:hover { background: var(--p-600); color: #fff; transform: translateY(-2px); }
.social-row svg { width: 17px; height: 17px; }

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .09);
	padding-top: var(--s-6);
	display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-6);
	align-items: center; justify-content: space-between;
	font-size: var(--fs-xs);
	color: var(--n-500);
}
.footer-bottom a { color: var(--n-400); }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: var(--s-5); flex-wrap: wrap; }

/* ======================================== 12. Floating actions === */

.fab-stack {
	position: fixed; right: 22px; bottom: 22px; z-index: 90;
	display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}

.fab {
	width: 54px; height: 54px;
	border-radius: 50%;
	display: grid; place-items: center;
	border: 0;
	box-shadow: var(--shadow-md);
	transition: transform .2s var(--ease-out), box-shadow .2s var(--ease), opacity .2s var(--ease);
}
.fab:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.fab svg { width: 26px; height: 26px; }

.fab-wa { background: #25d366; color: #fff; }
.fab-wa:hover { color: #fff; }

.fab-top {
	background: #fff; color: var(--n-700);
	border: 1px solid var(--line);
	width: 46px; height: 46px;
	opacity: 0; visibility: hidden;
}
.fab-top svg { width: 20px; height: 20px; }
.fab-top.is-visible { opacity: 1; visibility: visible; }

.wa-bubble {
	position: absolute; right: 66px; bottom: 6px;
	background: #fff;
	border-radius: var(--r-md);
	padding: 10px 14px;
	box-shadow: var(--shadow-md);
	font-size: var(--fs-xs);
	line-height: 1.4;
	white-space: nowrap;
	color: var(--n-700);
	opacity: 0; transform: translateX(8px);
	transition: opacity .22s var(--ease), transform .22s var(--ease-out);
	pointer-events: none;
}
.wa-bubble strong { display: block; color: var(--ink); }
.fab-wa-wrap { position: relative; display: flex; }
.fab-wa-wrap:hover .wa-bubble { opacity: 1; transform: translateX(0); }

/* ==================================================== 13. Prose === */

.page-hero {
	position: relative;
	padding-block: clamp(52px, 6vw, 88px) clamp(40px, 5vw, 64px);
	background:
		radial-gradient(900px 420px at 18% -10%, var(--p-50) 0%, transparent 62%),
		radial-gradient(620px 340px at 96% 0%, var(--a-100) 0%, transparent 58%),
		var(--surface);
	border-bottom: 1px solid var(--line-soft);
	overflow: hidden;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { max-width: 22ch; }
.page-hero .lead { max-width: 60ch; margin-top: var(--s-5); }

.breadcrumb { display: flex; gap: 9px; align-items: center; font-size: var(--fs-xs); color: var(--ink-mute); margin-bottom: var(--s-5); }
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--p-600); }
.breadcrumb svg { width: 13px; height: 13px; opacity: .6; }

.prose { max-width: 74ch; }
.prose h2 {
	font-size: clamp(1.28rem, 1.1rem + 0.7vw, 1.62rem);
	margin-top: var(--s-12);
	margin-bottom: var(--s-4);
	scroll-margin-top: calc(var(--header-h) + 24px);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin-top: var(--s-8); margin-bottom: var(--s-3); }
.prose p { color: var(--ink-soft); margin-bottom: 1.15em; }
.prose strong { color: var(--ink); }
.prose ul, .prose ol { color: var(--ink-soft); padding-left: 1.3em; margin: 0 0 1.15em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--p-400); }
.prose a { text-decoration: underline; text-underline-offset: 2px; }

.prose-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }

.toc { position: sticky; top: calc(var(--header-h) + 24px); }
.toc h4 { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .1em; color: var(--ink-mute); margin-bottom: var(--s-4); font-family: var(--font-body); }
.toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; counter-reset: toc; }
.toc a {
	display: block;
	padding: 7px 12px;
	border-left: 2px solid var(--line);
	color: var(--ink-soft);
	font-size: 0.86rem;
	line-height: 1.45;
	transition: border-color .16s var(--ease), color .16s var(--ease), background .16s var(--ease);
}
.toc a:hover { color: var(--p-700); border-left-color: var(--p-300); background: var(--p-50); }
.toc a.is-active { color: var(--p-700); border-left-color: var(--p-600); font-weight: 600; }

.info-card {
	background: var(--surface-alt);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: var(--s-6);
}
.info-card h4 { margin-bottom: var(--s-3); }
.info-card p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; }

/* contact detail tiles */
.contact-tiles { display: grid; gap: var(--s-4); }
.contact-tile {
	display: flex; gap: var(--s-4); align-items: flex-start;
	padding: var(--s-5);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-tile:hover { border-color: var(--p-200); box-shadow: var(--shadow-sm); }
.contact-tile .ico {
	width: 44px; height: 44px; flex: none;
	border-radius: 13px;
	background: var(--p-50); color: var(--p-600);
	display: grid; place-items: center;
}
.contact-tile .ico svg { width: 21px; height: 21px; }
.contact-tile .k { font-size: var(--fs-xs); color: var(--ink-mute); margin-bottom: 3px; }
.contact-tile .v { font-family: var(--font-display); font-weight: 650; color: var(--ink); font-size: 1.02rem; line-height: 1.35; }
.contact-tile a.v:hover { color: var(--p-600); }

/* ======================================== 14. Motion & utilities === */

[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
	transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

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

.sr-only {
	position: absolute; width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden;
	clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ================================================= Responsive === */

@media (max-width: 1024px) {
	.hero-grid { grid-template-columns: 1fr; gap: var(--s-10); }
	.hero-mark { display: none; }
	.hero-copy { max-width: 640px; }
	.grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-8); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.prose-layout { grid-template-columns: 1fr; }
	.toc { position: static; margin-bottom: var(--s-8); }
	.toc ol { display: flex; flex-wrap: wrap; gap: 6px; }
	.toc a { border-left: 0; border: 1px solid var(--line); border-radius: var(--r-full); padding: 6px 13px; }
}

@media (max-width: 900px) {
	.nav, .header-cta .btn { display: none; }
	/* .nav carried the margin-left:auto that pushed this to the right */
	.header-cta { margin-left: auto; }
	.nav-toggle { display: flex; }
	.grid-3, .steps { grid-template-columns: 1fr; }
	.grid-2 { grid-template-columns: 1fr; }
	.cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
	:root { --header-h: 66px; }
	.topbar-inner { justify-content: center; }
	.topbar-list.is-social { display: none; }
	.brand img { height: 34px; }
	.grid-4 { grid-template-columns: 1fr; }
	.chip-grid { grid-template-columns: 1fr; }
	.quote-body { padding: var(--s-5); }
	.quote-head { padding: var(--s-5); }
	.card { padding: var(--s-6); }
	.footer-grid { grid-template-columns: 1fr; gap: var(--s-8); }
	.fab-stack { right: 16px; bottom: 16px; }
	.wa-bubble { display: none; }
	.trust { margin-top: 0; border-radius: var(--r-lg); }
	.trust-grid { gap: var(--s-6); }
}

@media print {
	.site-header, .site-footer, .fab-stack, .topbar, .toc { display: none !important; }
	body { color: #000; }
	.prose { max-width: none; }
}
