/* =====================================================================
   HORUS — main.css  (v0.2.0)
   Tokens · Reset · Typography · Layout · Components · Sections · Pages
   ===================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
	/* Brand */
	--c-blue: #4A5EF4;
	--c-blue-600: #3A4ED6;
	--c-blue-700: #2F40B8;
	--c-blue-tint: rgba(74, 94, 244, 0.10);
	--c-blue-tint-strong: rgba(74, 94, 244, 0.18);

	--c-dark: #27243D;
	--c-dark-90: rgba(39, 36, 61, 0.90);
	--c-dark-80: rgba(39, 36, 61, 0.80);
	--c-dark-70: rgba(39, 36, 61, 0.70); /* body text */
	--c-dark-55: rgba(39, 36, 61, 0.55);
	--c-dark-45: rgba(39, 36, 61, 0.45); /* muted */
	--c-dark-15: rgba(39, 36, 61, 0.15); /* borders */
	--c-dark-08: rgba(39, 36, 61, 0.08); /* dividers */
	--c-dark-04: rgba(39, 36, 61, 0.04); /* subtle bg */

	--c-white: #FFFEFA;
	--c-beige: #F6F1E4;
	--c-beige-2: #EDE5D0;

	/* Surfaces */
	--s-bg: var(--c-white);
	--s-bg-alt: var(--c-beige);
	--s-bg-dark: var(--c-dark);

	/* Type */
	--ff-heading: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	--ff-eyebrow: 'Libre Franklin', system-ui, sans-serif;
	--ff-body:    'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

	/* All headings use DM Sans Medium (500) for the thin / modern look. */
	--fw-heading: 500;

	--fs-h1: clamp(2.25rem, 1.4rem + 3.6vw, 4rem);     /* ~36–64 */
	--fs-h2: clamp(1.75rem, 1.2rem + 2.4vw, 2.75rem);  /* ~28–44 */
	--fs-h3: clamp(1.25rem, 1rem + 1vw, 1.625rem);     /* ~20–26 */
	--fs-h4: 1.125rem;
	--fs-body: 1rem;
	--fs-sm: 0.875rem;
	--fs-xs: 0.75rem;
	--fs-eyebrow: 0.75rem;

	/* Spacing */
	--sp-1: 4px;
	--sp-2: 8px;
	--sp-3: 12px;
	--sp-4: 16px;
	--sp-5: 24px;
	--sp-6: 32px;
	--sp-7: 48px;
	--sp-8: 64px;
	--sp-9: 96px;
	--sp-10: 128px;
	--section-py: clamp(4rem, 3rem + 4vw, 8rem);

	/* Radii — squared buttons, slightly rounded cards */
	--r-btn: 6px;
	--r-input: 6px;
	--r-sm: 8px;
	--r-md: 12px;
	--r-lg: 18px;
	--r-xl: 24px;
	--r-full: 999px;

	/* Shadows */
	--sh-1: 0 1px 2px rgba(39, 36, 61, 0.06), 0 2px 8px rgba(39, 36, 61, 0.04);
	--sh-2: 0 4px 12px rgba(39, 36, 61, 0.08), 0 12px 32px rgba(39, 36, 61, 0.06);
	--sh-3: 0 10px 24px rgba(39, 36, 61, 0.12), 0 24px 64px rgba(39, 36, 61, 0.08);

	/* Motion */
	--ease: cubic-bezier(.22, 1, .36, 1);
	--dur-fast: 160ms;
	--dur: 260ms;
	--dur-slow: 420ms;

	/* Layout */
	--container: 1200px;
	--container-narrow: 960px;
	--container-pad: clamp(1rem, 0.5rem + 2vw, 2rem);

	/* Header */
	--header-h: 80px;
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--ff-body);
	font-size: var(--fs-body);
	line-height: 1.6;
	color: var(--c-dark-70);
	background: var(--s-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--c-blue); }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 2px; border-radius: 4px; }
.screen-reader-text { position:absolute; clip:rect(1px,1px,1px,1px); width:1px; height:1px; overflow:hidden; }
.skip-link { position:absolute; left:-9999px; top: var(--sp-4); background: var(--c-dark); color: var(--c-white); padding: var(--sp-2) var(--sp-4); border-radius: var(--r-sm); z-index: 100; }
.skip-link:focus { left: var(--sp-4); }

/* ---------- 3. Typography ---------- */
.h1, h1, .h2, h2, .h3, h3, .h4, h4 {
	font-family: var(--ff-heading);
	font-weight: var(--fw-heading);
	color: var(--c-dark);
	letter-spacing: -0.02em;
	margin: 0 0 var(--sp-5);
}
.h1, h1 { font-size: var(--fs-h1); line-height: 1.05; }
.h2, h2 { font-size: var(--fs-h2); line-height: 1.12; }
.h3, h3 { font-size: var(--fs-h3); line-height: 1.25; letter-spacing: -0.01em; margin-bottom: var(--sp-4); }
.h4, h4 { font-size: var(--fs-h4); line-height: 1.35; letter-spacing: -0.005em; margin-bottom: var(--sp-3); }
p { margin: 0 0 var(--sp-4); }
strong, b { font-weight: 600; color: var(--c-dark); }

.eyebrow {
	font-family: var(--ff-eyebrow);
	font-weight: 600;
	font-size: var(--fs-eyebrow);
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--c-blue);
	margin: 0 0 var(--sp-4);
}
.eyebrow--light { color: rgba(255, 254, 250, 0.80); }

.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--c-blue); text-decoration: underline; text-underline-offset: 3px; }

.lead { font-size: 1.0625rem; color: var(--c-dark-70); }

/* ---------- 4. Layout helpers ---------- */
.container {
	width: min(var(--container), 100%);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-py); position: relative; }
.section--tight { padding-block: clamp(3rem, 2vw + 2rem, 5rem); }

.section-head { max-width: 720px; margin-bottom: var(--sp-8); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }
.section-head--light { color: var(--c-white); }
.section-head--light .h2 { color: var(--c-white); }
.section-head__sub { color: var(--c-dark-70); font-size: 1.0625rem; max-width: 640px; }
.section-head__body { color: var(--c-dark-70); font-size: 1.0625rem; max-width: 640px; margin-top: var(--sp-3); }
.section-head__body--light { color: rgba(255,254,250,0.78); }
.section-head--center .section-head__sub,
.section-head--center .section-head__body { margin-inline: auto; }

/* Background image holder — use everywhere we used a CSS gradient before. */
.bg-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
}
.bg-image img,
.bg-image picture { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- 5. Buttons (squared) ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--sp-2);
	font-family: var(--ff-body);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1;
	padding: 16px 28px;
	border-radius: var(--r-btn);
	transition: transform var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
	cursor: pointer;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
	background: var(--c-blue);
	color: var(--c-white);
	box-shadow: 0 2px 0 rgba(39,36,61,0.04), 0 8px 18px rgba(74, 94, 244, 0.22);
}
.btn--primary:hover { background: var(--c-blue-600); color: var(--c-white); }
.btn--dark { background: var(--c-dark); color: var(--c-white); }
.btn--dark:hover { background: #1A1830; color: var(--c-white); }
.btn--outline-dark {
	background: transparent;
	color: var(--c-dark);
	box-shadow: inset 0 0 0 1.5px var(--c-dark);
}
.btn--outline-dark:hover { background: var(--c-dark); color: var(--c-white); }
.btn--ghost {
	background: transparent;
	color: var(--c-dark);
	box-shadow: inset 0 0 0 1.5px var(--c-dark-15);
}
.btn--ghost:hover { background: var(--c-dark-04); color: var(--c-dark); }
.btn--white { background: var(--c-white); color: var(--c-dark); }
.btn--white:hover { background: #f4ebd7; color: var(--c-dark); }
.btn--secondary {
	background: transparent;
	color: var(--c-dark);
	box-shadow: inset 0 0 0 1.5px var(--c-dark-15);
}
.btn--secondary:hover { background: var(--c-dark); color: var(--c-white); box-shadow: inset 0 0 0 1.5px var(--c-dark); }
.video-more { margin-top: var(--sp-5); display: flex; justify-content: center; }

/* Inline link arrow */
.link-arrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--ff-eyebrow); font-weight: 600;
	font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em;
	color: var(--c-blue);
}
.link-arrow svg { transition: transform var(--dur-fast) var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 6. Store badges ---------- */
.store-badge {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 12px 18px;
	border-radius: var(--r-btn);
	background: var(--c-dark);
	color: var(--c-white);
	font-family: var(--ff-body);
	min-height: 54px;
	transition: transform var(--dur-fast) var(--ease);
}
.store-badge,
.store-badge *,
.store-badge:hover,
.store-badge:hover * { color: var(--c-white) !important; }
.store-badge:hover { transform: translateY(-1px); }

/* In the Pricing section only: badges flip to white background with dark text. */
.section--pricing .store-badge {
	background: var(--c-white);
	box-shadow: var(--sh-1);
}
.section--pricing .store-badge,
.section--pricing .store-badge *,
.section--pricing .store-badge:hover,
.section--pricing .store-badge:hover * { color: var(--c-dark) !important; }
.store-badge__icon { width: 24px; height: 24px; flex: 0 0 24px; color: var(--c-white); }
.store-badge__text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; color: var(--c-white); }
.store-badge__text small { font-size: 10px; opacity: 0.92; letter-spacing: 0.02em; color: var(--c-white); }
.store-badge__text strong { font-size: 15px; font-weight: 600; color: var(--c-white); }
.store-badge--light { background: var(--c-white); color: var(--c-dark); box-shadow: var(--sh-1); }
.store-badge--light:hover { color: var(--c-dark); }

/* ---------- 7. Brand mark ---------- */
.brand-mark {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--ff-heading);
	color: var(--c-dark);
}
.brand-mark__dot {
	width: 26px; height: 26px; border-radius: 6px;
	background: var(--c-blue);
	display: inline-flex; align-items: center; justify-content: center; color: var(--c-white);
}
.brand-mark__name { font-weight: 600; font-size: 1.125rem; letter-spacing: -0.01em; }
.brand-mark__suffix { font-weight: 400; font-size: 0.875rem; color: var(--c-dark-55); margin-left: 6px; padding-left: 10px; border-left: 1px solid var(--c-dark-15); }
.brand-mark--footer .brand-mark__name { color: var(--c-white); }
.brand-mark--footer .brand-mark__suffix { color: rgba(255,254,250,0.7); border-left-color: rgba(255,254,250,0.18); }

/* ---------- 8. Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255, 254, 250, 0.85);
	backdrop-filter: saturate(140%) blur(12px);
	-webkit-backdrop-filter: saturate(140%) blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--c-dark-08); background: rgba(255, 254, 250, 0.95); }
/* Header uses its own wider lateral padding — looks more "site shell"
 * than aligned with the page-content container. */
.site-header .container.site-header__row,
.site-header__row {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--sp-6);
	min-height: var(--header-h);
	padding-block: 10px;
	max-width: none;
	width: 100%;
	padding-inline: clamp(24px, 4vw, 56px);
}
.site-header__brand { display: inline-flex; align-items: center; }
/* Logo — 40px on desktop, scales down to 32px on narrow screens. */
.site-header__brand img,
.site-header__logo {
	height: 40px;
	max-height: 40px;
	width: auto;
}
.brand-mark__dot { width: 40px; height: 40px; }
@media (max-width: 720px) {
	.site-header__brand img,
	.site-header__logo { height: 32px; max-height: 32px; }
	.brand-mark__dot { width: 32px; height: 32px; }
}

.site-nav__list {
	display: flex; align-items: center; gap: var(--sp-6);
	font-family: var(--ff-body); font-weight: 500;
	font-size: 0.9375rem;
}
.site-nav__list a { color: var(--c-dark-70); padding: 8px 0; position: relative; }
.site-nav__list a:hover,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a { color: var(--c-dark); }
.site-nav__list .current-menu-item > a::after,
.site-nav__list .current_page_item > a::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
	height: 1.5px; background: var(--c-blue);
}

.site-header__tools { display: flex; align-items: center; gap: var(--sp-3); }

/* Header CTA (editable in Customizer) */
.header-cta { display: inline-flex; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-switch__btn {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 9px 14px;
	border-radius: var(--r-btn);
	font-family: var(--ff-body); font-weight: 500;
	font-size: 0.8125rem;
	color: var(--c-dark);
	background: transparent;
	box-shadow: inset 0 0 0 1px var(--c-dark-15);
	transition: background-color var(--dur-fast) var(--ease);
}
.lang-switch__btn:hover { background: var(--c-dark-04); }
.lang-switch__caret { transition: transform var(--dur-fast) var(--ease); }
.lang-switch.is-open .lang-switch__caret { transform: rotate(180deg); }
.lang-switch__menu {
	position: absolute; top: calc(100% + 8px); right: 0;
	min-width: 120px; background: var(--c-white);
	border-radius: var(--r-md);
	box-shadow: var(--sh-2);
	padding: 6px; z-index: 10;
	display: none;
}
.lang-switch.is-open .lang-switch__menu { display: block; }
.lang-switch__menu li a {
	display: block; padding: 10px 14px;
	border-radius: var(--r-sm);
	font-weight: 500; font-size: 0.8125rem;
	color: var(--c-dark-70);
}
.lang-switch__menu li a:hover { background: var(--c-dark-04); color: var(--c-dark); }
.lang-switch__menu li.is-current a { color: var(--c-blue); background: var(--c-blue-tint); }

.hamburger { display: none; width: 40px; height: 40px; border-radius: var(--r-sm); flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.hamburger__line { display: block; width: 20px; height: 2px; background: var(--c-dark); border-radius: 1px; transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease); }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu { border-top: 1px solid var(--c-dark-08); padding: var(--sp-4) var(--container-pad); background: var(--c-white); }
.mobile-menu__list { display: flex; flex-direction: column; gap: 0; font-weight: 500; }
.mobile-menu__list a { display: block; padding: 14px 0; border-bottom: 1px solid var(--c-dark-08); }

@media (max-width: 960px) {
	.site-nav { display: none; }
	.hamburger { display: inline-flex; }
	.header-cta { display: none; }
}

/* ---------- 9. Page hero (inner pages) ---------- */
.page-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(4rem, 6vw, 7rem);
}
.page-hero__row {
	display: grid; grid-template-columns: 1.2fr 1fr;
	gap: clamp(2rem, 4vw, 5rem);
	align-items: end;
	min-height: 240px;
}
.page-hero__row--center { grid-template-columns: 1fr; max-width: 760px; }
.page-hero h1 { margin-bottom: var(--sp-3); }
.page-hero__body { color: var(--c-dark-70); font-size: 1.0625rem; max-width: 480px; }

@media (max-width: 800px) {
	.page-hero__row { grid-template-columns: 1fr; align-items: start; }
}

/* ---------- 10. Section: Hero (homepage) ---------- */
.section--hero { position: relative; padding-top: clamp(3rem, 2rem + 2vw, 5rem); padding-bottom: var(--section-py); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 2vw + 1rem, 4rem); align-items: center; }
.hero__title { margin-bottom: var(--sp-5); }
.hero__body { color: var(--c-dark-70); font-size: 1.0625rem; max-width: 520px; margin-bottom: var(--sp-6); }
.hero__badges { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero__visual img,
.hero__visual .placeholder { border-radius: var(--r-xl); overflow: hidden; }
@media (max-width: 900px) {
	.hero__grid { grid-template-columns: 1fr; }
	.hero__visual { order: -1; }
}

/* ---------- 11. Section: Feature grid (dividers, no cards, head left) ---------- */
.section--features { background: var(--c-beige); position: relative; }
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--c-dark-08);
	border-left: 1px solid var(--c-dark-08);
	margin-top: var(--sp-6);
}
.feature-grid__cell {
	padding: var(--sp-7) clamp(1rem, 2vw, 1.75rem);
	border-right: 1px solid var(--c-dark-08);
	border-bottom: 1px solid var(--c-dark-08);
	background: transparent;
	cursor: default;
}
.feature-grid__icon {
	width: 64px; height: 64px;
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: var(--sp-4);
	color: var(--c-blue);
	background: transparent; /* transparent per design */
}
.feature-grid__icon img,
.feature-grid__icon svg { width: 64px; height: 64px; object-fit: contain; }
.feature-grid__num {
	font-family: var(--ff-eyebrow); font-weight: 600;
	font-size: 0.75rem; letter-spacing: 0.16em;
	color: var(--c-blue); margin: 0 0 var(--sp-3);
}
.feature-grid__title { font-size: 1.0625rem; margin-bottom: var(--sp-3); color: var(--c-dark); }
.feature-grid__body { font-size: 0.9375rem; color: var(--c-dark-70); margin: 0; }

@media (max-width: 880px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- 12. Section: Split feature (carousel) ---------- */
.section--split { background: var(--c-white); }
.split__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 2vw + 1rem, 4rem);
	align-items: start; /* image stays at its intrinsic 3:4 size, copy is bounded by JS */
}
.split__copy {
	display: flex; flex-direction: column;
	min-height: 0;
}
/* The list of feature pagers — `data-split-list-max` is set by JS to match
 * the image panel height; CSS only provides the scroll mechanics. */
.split__list {
	display: flex; flex-direction: column;
	gap: var(--sp-3);
	margin: 0 0 var(--sp-4); /* top gap is owned by .split__copy .section-head */
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: var(--c-dark-15) transparent;
}
/* Title → first item gap = exactly 40px (scoped to this section to avoid
 * disturbing global section-head spacing). */
.split__copy .section-head { margin-bottom: 40px; }
.split__copy .section-head .h2,
.split__copy .section-head h2 { margin-bottom: 0; }
.split__copy .section-head .eyebrow { margin-bottom: var(--sp-3); }
.split__list::-webkit-scrollbar { width: 6px; }
.split__list::-webkit-scrollbar-track { background: transparent; }
.split__list::-webkit-scrollbar-thumb { background: var(--c-dark-15); border-radius: 3px; }
/* Each pager item must take the full width of the list and keep its natural
 * row layout — no shrinking under narrow flex/grid pressure (which made
 * item 5 collapse to one word per line). */
.split__list > li {
	list-style: none;
	display: block;
	width: 100%;
	flex-shrink: 0;
	align-self: stretch;
}
.split__item {
	flex-shrink: 0;
	width: 100%;
	min-width: 0;
}
.split__item-copy { min-width: 0; }
.split__item-title,
.split__item-body { word-break: normal; overflow-wrap: normal; }
.split__item {
	display: grid;
	grid-template-columns: 44px 1fr;
	column-gap: var(--sp-4);
	row-gap: 4px;
	align-items: start;
	padding: var(--sp-4) var(--sp-5);
	border-radius: var(--r-md);
	background: transparent;
	text-align: left;
	width: 100%;
	transition: background-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.split__item {
	/* Resting state: transparent over the white section, with a subtle outline. */
	background: transparent;
	box-shadow: none;
	border: 1px solid var(--c-dark-08);
}
.split__item:hover { background: rgba(246,241,228,0.45); }
.split__item.is-active {
	background: var(--c-beige);
	box-shadow: var(--sh-1);
	border-color: transparent;
}
.split__item.is-active .split__item-icon { background: var(--c-blue); color: var(--c-white); }
.split__item.is-active .split__item-icon img { filter: brightness(0) invert(1); }
.split__item-icon {
	grid-row: 1 / span 2;
	width: 44px; height: 44px;
	border-radius: var(--r-md);
	background: var(--c-dark-08);
	color: var(--c-dark);
	transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
	display: inline-flex; align-items: center; justify-content: center;
	overflow: hidden;
}
.split__item-icon img { width: 24px; height: 24px; object-fit: contain; }
.split__item-title { display: block; font-family: var(--ff-heading); font-weight: 500; color: var(--c-dark); font-size: 1rem; }
.split__item-body { display: block; font-size: 0.875rem; color: var(--c-dark-70); margin-top: 2px; }
/* Progress bar removed per design: keep the wrapper in DOM but hide it. */
.split__item-progress { display: none; }
.split__item-progress-bar { display: none; }
.split__cta { margin-top: var(--sp-4); align-self: flex-start; flex-shrink: 0; width: auto; }

/* Swiper container — explicit, BOUNDED sizing so missing images can't blow it up */
.split__visual {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
	min-width: 0;
}
.split-swiper {
	border-radius: var(--r-xl);
	overflow: hidden;
	background: var(--c-dark-04);
	box-shadow: var(--sh-2);
	width: 100%;
	max-width: 480px;
	margin-inline: auto;
	aspect-ratio: 3 / 4; /* portrait — balances with the 4 cards on the left */
	height: auto;
}
.split-swiper .swiper-wrapper { height: 100%; }
.split-swiper .swiper-slide {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	overflow: hidden;
	position: relative;
}
.split-swiper .swiper-slide > * { width: 100%; height: 100%; }
.split-swiper .swiper-slide img,
.split-swiper .swiper-slide picture { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-swiper .swiper-slide .placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, rgba(74,94,244,0.06), rgba(39,36,61,0.04));
	color: var(--c-dark-40, rgba(39,36,61,0.4));
	font-family: var(--ff-eyebrow); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.split-swiper .swiper-slide .placeholder::before {
	content: attr(aria-label);
}

/* Pre-Swiper safety: only show first slide so the section doesn't stack vertically. */
.split-swiper:not(.swiper-initialized) .swiper-wrapper { position: relative; }
.split-swiper:not(.swiper-initialized) .swiper-slide { position: absolute; inset: 0; opacity: 0; }
.split-swiper:not(.swiper-initialized) .swiper-slide:first-child { opacity: 1; }

/* Pagination — explicitly BELOW the image (own row, never overlaying). */
.split__pagination {
	position: static;
	display: flex;
	justify-content: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	width: 100%;
}
.split__dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--c-dark-15);
	border: 0; padding: 0; cursor: pointer;
	opacity: 1;
	transition: width var(--dur) var(--ease), background var(--dur) var(--ease);
}
.split__dot.is-active { background: var(--c-blue); width: 24px; border-radius: var(--r-full); }
/* Override Swiper's default absolute positioning when the bullets render inside our container. */
.split__pagination.swiper-pagination { position: static !important; bottom: auto !important; left: auto !important; transform: none !important; }

@media (max-width: 900px) {
	.split__grid { grid-template-columns: 1fr; }
	.split-swiper { aspect-ratio: 1 / 1; max-width: 560px; }
	/* Mobile content order: title → image → features → button. */
	.split__copy { display: contents; } /* let children participate in grid order */
	.split__copy .section-head { order: 1; margin-bottom: var(--sp-4); }
	.split__visual         { order: 2; margin-bottom: var(--sp-4); }
	.split__list           { order: 3; max-height: none !important; margin-top: 0; }
	.split__cta            { order: 4; }
}

/* ---------- 13. Section: Pricing (full-bleed, head left) ---------- */
.section--pricing {
	background: var(--c-dark);
	color: var(--c-white);
	position: relative;
	overflow: hidden;
}
.section--pricing > .container { position: relative; z-index: 1; }
.section--pricing .h2 { color: var(--c-white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); margin-top: var(--sp-6); }
.pricing-card {
	background: rgba(255, 254, 250, 0.04);
	border: 1px solid rgba(255, 254, 250, 0.10);
	border-radius: var(--r-lg);
	padding: var(--sp-6);
	transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(255,254,250,0.20); background: rgba(255,254,250,0.06); }
.pricing-card__head { margin-bottom: var(--sp-5); }
.pricing-card__label {
	font-family: var(--ff-body); font-size: 0.75rem; font-weight: 600;
	text-transform: uppercase; letter-spacing: 0.14em;
	color: rgba(255, 254, 250, 0.70);
	margin: 0 0 var(--sp-3);
}
.pricing-card__price { margin: 0; display: flex; align-items: baseline; gap: 4px; }
.pricing-card__price-main {
	font-family: var(--ff-heading); font-weight: 500;
	font-size: 2.5rem; line-height: 1;
	color: var(--c-white); letter-spacing: -0.02em;
}
.pricing-card__price-suffix { color: rgba(255,254,250,0.70); font-size: 0.9375rem; }
.pricing-card__features { display: flex; flex-direction: column; gap: var(--sp-3); }
.pricing-card__features li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,254,250,0.82); font-size: 0.9375rem; }
.pricing-card__features svg { color: var(--c-blue); flex: 0 0 16px; margin-top: 4px; }

.app-strip {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
	gap: var(--sp-5);
	margin-top: var(--sp-7); padding-top: var(--sp-6);
	border-top: 1px solid rgba(255,254,250,0.10);
}
.app-strip__text { font-size: 1.0625rem; color: var(--c-white); margin: 0; }
.app-strip__badges { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

@media (max-width: 900px) {
	.pricing-grid { grid-template-columns: 1fr; }
	.app-strip { flex-direction: column; align-items: flex-start; }
}

/* ---------- 14. Section: Promo (default white; bg image/color optional) ---------- */
.section--promo { position: relative; overflow: hidden; background: var(--c-white); }
.promo__grid {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 2vw + 1rem, 4rem);
	align-items: center;
	padding: clamp(2rem, 4vw, 4rem) 0;
}
.promo__visual { border-radius: var(--r-xl); overflow: hidden; }
.promo__visual img,
.promo__visual .placeholder { border-radius: var(--r-xl); aspect-ratio: 4/3; object-fit: cover; }
.promo__body { margin-bottom: var(--sp-4); }
.promo__languages { font-size: 0.875rem; color: var(--c-dark-45); margin-bottom: var(--sp-5); }

@media (max-width: 900px) { .promo__grid { grid-template-columns: 1fr; } }

/* ---------- 15. Section: Video ---------- */
.section--video { background: var(--s-bg); padding-top: 0; }
.section--video > .container { padding-top: 0; }
/* Add the blue word highlight available in hero (and any heading). */
.hl-blue { color: var(--c-blue); }
.video-card {
	position: relative;
	max-width: 960px; margin-inline: auto;
	aspect-ratio: 16/9;
	border-radius: var(--r-xl);
	overflow: hidden;
	box-shadow: var(--sh-3);
	cursor: pointer;
	background: var(--c-dark-04);
}
.video-card__poster { width: 100%; height: 100%; object-fit: cover; }
.video-card__play {
	position: absolute; inset: 0; margin: auto;
	width: 80px; height: 80px; border-radius: 50%;
	background: var(--c-white); color: var(--c-dark);
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--sh-2);
	transition: transform var(--dur) var(--ease);
}
.video-card__play:hover { transform: scale(1.06); }
.video-card__play svg { margin-left: 4px; }
.video-card.is-playing .video-card__play { display: none; }
.video-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- 16. Section: Logo marquee (square logos OK) ---------- */
.section--logos { padding-block: var(--sp-8); }
.section--logos { padding-block: clamp(4rem, 5vw, 6rem); position: relative; }
.marquee { position: relative; margin-top: var(--sp-6); overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: marqueeScroll var(--marquee-dur, 60s) linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__list {
	display: flex; align-items: center;
	gap: clamp(2.5rem, 4vw, 4.5rem);
	padding-right: clamp(2.5rem, 4vw, 4.5rem);
}
.marquee__item {
	/* Always-square transparent box per logo. */
	flex: 0 0 140px;
	width: 140px;
	height: 140px;
	display: flex; align-items: center; justify-content: center;
	padding: 18px;
	background: transparent;
	border-radius: var(--r-md);
}
.marquee__logo {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: opacity var(--dur) var(--ease);
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- 17. Section: FAQ (homepage block — sand) ---------- */
.section--faq { background: var(--c-beige); position: relative; }
.faq__grid { display: grid; grid-template-columns: 340px 1fr; gap: clamp(2rem, 2vw + 1rem, 5rem); align-items: center; }
.faq__body { color: var(--c-dark-70); margin-bottom: var(--sp-5); }
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item {
	/* No card — just the question line with a thin divider underneath. */
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--c-dark-15);
	border-radius: 0;
	overflow: hidden;
}
.faq__item:first-child { border-top: 1px solid var(--c-dark-15); }
.faq__item details { padding: 0; }
.faq__item summary {
	list-style: none;
	display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
	padding: var(--sp-4) 0;
	cursor: pointer;
	font-family: var(--ff-heading); font-weight: 500; font-size: 1.0625rem;
	color: var(--c-dark);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__q { width: 100%; }
.faq__caret { transition: transform var(--dur) var(--ease); flex: 0 0 14px; color: var(--c-dark); }
.faq__item details[open] .faq__caret { transform: rotate(180deg); }
.faq__a { padding: 0 0 var(--sp-4); color: var(--c-dark-70); font-size: 0.9375rem; }
.faq__a p:last-child { margin-bottom: 0; }

@media (max-width: 780px) { .faq__grid { grid-template-columns: 1fr; } }

/* ---------- 18. Section: Final CTA ---------- */
.section--finalcta { padding-block: var(--sp-8); position: relative; overflow: hidden; }
.finalcta__inner {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: var(--r-xl);
	padding: clamp(2.5rem, 4vw, 5rem) clamp(1.5rem, 4vw, 4rem);
	text-align: center;
	max-width: 1100px;
	margin-inline: auto;
	box-shadow: var(--sh-1);
	background: var(--c-white); /* always a white card on top of bg-image / bg-color */
}
.finalcta__inner .eyebrow { color: var(--c-blue); margin: 0 auto var(--sp-3); }
.finalcta__inner .h2 { color: var(--c-dark); margin-bottom: var(--sp-3); }
.finalcta__body { color: var(--c-dark-70); max-width: 560px; margin-inline: auto; margin-bottom: var(--sp-5); }
.finalcta__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-3); }

/* ---------- 19. Footer ---------- */
.site-footer { background: var(--c-dark); color: rgba(255, 254, 250, 0.72); padding-top: var(--sp-8); }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--sp-7); padding-bottom: var(--sp-8); }
.site-footer__logo { max-height: 40px; width: auto; margin-bottom: var(--sp-4); }
.site-footer__desc { font-size: 0.9375rem; max-width: 360px; line-height: 1.6; }
.site-footer__heading {
	font-family: var(--ff-eyebrow); font-size: 0.75rem; font-weight: 600;
	text-transform: uppercase; letter-spacing: 0.14em;
	color: var(--c-white); margin: 0 0 var(--sp-4);
}
.site-footer__list { display: flex; flex-direction: column; gap: 10px; font-size: 0.9375rem; }
.site-footer__list a:hover { color: var(--c-white); }

.site-footer__social { display: flex; gap: var(--sp-2); margin-top: var(--sp-5); }
.site-footer__social a {
	width: 36px; height: 36px; border-radius: var(--r-btn);
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--c-white);
	box-shadow: inset 0 0 0 1px rgba(255,254,250,0.18);
	transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.site-footer__social a:hover { background: var(--c-blue); color: var(--c-white); box-shadow: inset 0 0 0 1px var(--c-blue); }

.site-footer__bottom { border-top: 1px solid rgba(255,254,250,0.08); padding-block: var(--sp-5); }
.site-footer__bottom-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp-4); }
.site-footer__copyright { margin: 0; font-size: 0.8125rem; opacity: 0.70; }
.site-footer__tagline { margin: 0; font-size: 0.8125rem; opacity: 0.55; }

@media (max-width: 800px) { .site-footer__grid { grid-template-columns: 1fr; gap: var(--sp-6); } }

/* ---------- 20. About page ---------- */
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--c-dark-08); border-radius: var(--r-md); overflow: hidden; }
.about-stats__cell { background: rgba(255,254,250,0.65); padding: var(--sp-6); }
.about-stats__num { font-family: var(--ff-heading); font-weight: 500; color: var(--c-dark); font-size: clamp(1.75rem, 1.5rem + 1.5vw, 2.5rem); line-height: 1; letter-spacing: -0.02em; margin: 0 0 var(--sp-2); }
.about-stats__lbl { font-family: var(--ff-eyebrow); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-dark-55); margin: 0; }

.section--about-mission:not(.has-bg-image):not(.has-bg-color) { background: var(--c-white); }
.about-mission__grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: clamp(2rem, 4vw, 5rem);
	align-items: stretch; /* stretch image to copy-column height */
}
.about-mission__visual {
	position: relative;
	border-radius: var(--r-xl);
	overflow: hidden;
	background: var(--c-dark-04);
	min-height: 320px;
}
.about-mission__visual .about-mission__img,
.about-mission__visual img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.about-mission__copy {
	display: flex; flex-direction: column;
}
.about-mission__body { color: var(--c-dark-70); }
.about-mission__quote {
	margin-top: var(--sp-5);
	padding: var(--sp-5) var(--sp-6);
	background: var(--c-beige);
	border-radius: var(--r-md);
	color: var(--c-dark);
	line-height: 1.55;
	font-family: var(--ff-heading); font-weight: 500;
	font-size: 1.0625rem;
}
.about-mission__quote p { margin: 0; }
.about-mission__quote p + p { margin-top: var(--sp-3); }
@media (max-width: 800px) {
	.about-mission__grid { grid-template-columns: 1fr; }
	.about-mission__visual { aspect-ratio: 4/3; min-height: 0; }
}

.about-values__grid {
	display: grid; grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--c-dark-08);
	border-left: 1px solid var(--c-dark-08);
	margin-top: var(--sp-6);
}
.about-values__cell { padding: var(--sp-7) clamp(1rem, 2vw, 1.75rem); border-right: 1px solid var(--c-dark-08); border-bottom: 1px solid var(--c-dark-08); }
.about-values__eyebrow { color: var(--c-blue); margin: 0 0 var(--sp-3); }
.about-values__num { font-family: var(--ff-eyebrow); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.16em; color: var(--c-blue); margin: 0 0 var(--sp-3); }
.about-values__title { font-size: 1.0625rem; margin-bottom: var(--sp-3); color: var(--c-dark); }
.about-values__body { font-size: 0.9375rem; color: var(--c-dark-70); margin: 0; }
@media (max-width: 880px) { .about-values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .about-values__grid { grid-template-columns: 1fr; } }

.about-timeline__list { margin-top: var(--sp-6); border-top: 1px solid var(--c-dark-08); }
.about-timeline__row { display: grid; grid-template-columns: 120px 24px 1fr; gap: var(--sp-4); align-items: start; padding: var(--sp-5) 0; border-bottom: 1px solid var(--c-dark-08); }
.about-timeline__year { font-family: var(--ff-heading); font-weight: 500; color: var(--c-blue); font-size: 1rem; }
.about-timeline__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-blue); margin-top: 8px; box-shadow: 0 0 0 6px rgba(74,94,244,0.12); }
.about-timeline__copy { color: var(--c-dark-70); }

/* ---------- 21. Blog page ---------- */
/* 40px vertical breathing between every Blog page section. */
.page-blog .section + .section,
.page-blog .section--blog-featured + .section,
.page-blog .section--blog-grid + .section { margin-top: 40px; }
.page-blog .section--page-hero { padding-bottom: 40px; }
.page-blog .section--blog-featured { padding-block: 0; }
.page-blog .section--blog-grid { padding-block: 0; }
.page-blog main > .section:last-of-type { margin-bottom: 40px; }
/* Blog featured — image on the LEFT, eyebrow/title/body/date on the RIGHT.
 * "--plain" variant drops the card chrome (no border, no padding, no shadow)
 * per design — image and text sit on the page directly with a divider below. */
.blog-featured {
	display: grid;
	grid-template-columns: minmax(280px, 1.05fr) 1fr;
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: stretch;
	padding: var(--sp-5);
	border: 1px solid var(--c-dark-08);
	border-radius: var(--r-xl);
	background: var(--c-white);
	margin-bottom: var(--sp-7);
	transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.blog-featured--plain {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	margin-bottom: var(--sp-5);
	transition: none;
}
.blog-featured--plain:hover { transform: none; box-shadow: none; border-color: transparent; }
.blog-featured--plain .blog-featured__visual { border-radius: var(--r-lg); }
.blog-featured--plain .blog-featured__title a { color: inherit; }
.blog-featured__btn {
	align-self: flex-start;
	margin-top: var(--sp-3);
}
.blog-featured__divider {
	border: 0;
	border-top: 1px solid var(--c-dark-08);
	margin: var(--sp-6) 0 0;
}
/* Hover on the card itself removed per design — only the Read article button reacts. */
.blog-featured:hover { box-shadow: none; transform: none; border-color: var(--c-dark-08); }
.blog-featured--plain:hover { box-shadow: none; transform: none; border-color: transparent; }
.blog-featured__visual {
	border-radius: var(--r-lg); overflow: hidden;
	background: var(--c-dark-04);
	aspect-ratio: 4/3; position: relative;
}
.blog-featured__visual img,
.blog-featured__visual .blog-featured__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-featured__badge {
	position: absolute; top: 12px; left: 12px;
	background: var(--c-blue); color: var(--c-white);
	padding: 6px 10px; border-radius: var(--r-sm);
	font-family: var(--ff-eyebrow); font-weight: 600;
	font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.blog-featured__copy {
	display: flex; flex-direction: column; justify-content: center;
	padding: var(--sp-3) var(--sp-2);
	gap: var(--sp-3);
}
.blog-featured__cat {
	align-self: flex-start;
	font-family: var(--ff-eyebrow); font-weight: 600;
	font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em;
	color: var(--c-blue);
	padding: 4px 10px; background: var(--c-blue-tint);
	border-radius: var(--r-sm);
	margin: 0;
}
.blog-featured__title { font-size: clamp(1.25rem, 1rem + 1vw, 1.625rem); margin: 0; color: var(--c-dark); }
.blog-featured__excerpt { color: var(--c-dark-70); margin: 0; line-height: 1.6; }
.blog-featured__date {
	display: inline-flex; align-items: center; gap: 6px;
	margin: 0;
	font-size: 0.8125rem;
	color: var(--c-dark-55);
}
.blog-featured__date svg { color: var(--c-dark-55); }
.blog-featured__cta {
	display: inline-flex; align-items: center; gap: 6px;
	margin-top: var(--sp-2);
	font-family: var(--ff-heading); font-weight: 500;
	font-size: 0.9375rem;
	color: var(--c-blue);
	transition: gap var(--dur-fast) var(--ease);
}
.blog-featured:hover .blog-featured__cta { gap: 10px; }
@media (max-width: 760px) {
	.blog-featured { grid-template-columns: 1fr; }
	.blog-featured__visual { aspect-ratio: 16/10; }
}

/* Blog category filter — single row, FAQ-style chips. */
.blog-filters {
	display: flex; flex-wrap: wrap; align-items: center;
	gap: var(--sp-2);
	margin: 0 0 var(--sp-5);
	padding-bottom: var(--sp-4);
	border-bottom: 1px solid var(--c-dark-08);
}
.blog-filters__btns {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--sp-2);
	flex: 1 1 auto;
	min-width: 0;
}
.blog-filters__btn {
	position: static;
	display: inline-flex; align-items: center;
	flex: 0 0 auto;
	font-family: var(--ff-body); font-weight: 600; font-size: 0.75rem;
	text-transform: uppercase; letter-spacing: 0.12em;
	padding: 8px 14px; border-radius: var(--r-btn);
	color: var(--c-dark-70);
	background: transparent;
	border: 0;
	box-shadow: inset 0 0 0 1px var(--c-dark-15);
	white-space: nowrap;
	cursor: pointer;
	transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.blog-filters__btn:hover { background: var(--c-dark-04); color: var(--c-dark); }
.blog-filters__btn.is-active { background: var(--c-blue); color: var(--c-white); box-shadow: none; }
/* Removed: filter icon and count. */
.blog-filters__icon, .blog-filters__count { display: none; }

/* Simplified article card: 16:9 image · title · 4-line excerpt · author + date. */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); align-items: stretch; }
.blog-card { display: flex; flex-direction: column; background: transparent; border: 0; border-radius: 0; overflow: visible; }
.blog-card__link { display: flex; flex-direction: column; gap: var(--sp-3); color: inherit; height: 100%; }
.blog-card__thumb {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--c-dark-04);
	border-radius: var(--r-lg);
}
.blog-card__thumb img,
.blog-card__thumb .blog-card__img {
	width: 100%; height: 100%; object-fit: cover; display: block;
}
.blog-card__body { display: flex; flex-direction: column; flex: 1; padding: 0; }
.blog-card__title {
	font-size: 1.0625rem; line-height: 1.35;
	margin: 0 0 var(--sp-3);
	color: var(--c-dark);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.blog-card__excerpt {
	font-size: 0.9375rem; line-height: 1.55;
	color: var(--c-dark-70);
	margin: 0 0 var(--sp-3);
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.blog-card__meta {
	font-size: 0.8125rem;
	color: var(--c-dark-55);
	margin: 0;
	display: flex; align-items: center; gap: 6px;
}
.blog-card__meta .blog-card__author { font-weight: 600; color: var(--c-dark); }
.blog-card__meta .blog-card__sep { opacity: 0.6; }

@media (max-width: 880px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- 22. Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 360px 1fr; gap: clamp(2rem, 4vw, 5rem); align-items: start; }
.contact-info__heading { font-family: var(--ff-eyebrow); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-dark-55); margin: 0 0 var(--sp-5); }
.contact-info__list { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-info__row { display: grid; grid-template-columns: 36px 1fr; gap: var(--sp-4); align-items: start; }
.contact-info__icon { width: 36px; height: 36px; border-radius: var(--r-btn); background: var(--c-blue-tint); color: var(--c-blue); display: inline-flex; align-items: center; justify-content: center; }
.contact-info__lbl { font-family: var(--ff-eyebrow); font-weight: 600; font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-dark-55); margin: 0 0 4px; }
.contact-info__val { font-family: var(--ff-heading); font-weight: 500; color: var(--c-dark); margin: 0; font-size: 0.9375rem; }
.contact-info__callout { margin-top: var(--sp-6); padding: var(--sp-5); background: var(--c-blue-tint); border: 1px solid var(--c-blue-tint-strong); border-radius: var(--r-md); font-size: 0.875rem; color: var(--c-dark); }
.contact-info__callout strong { color: var(--c-dark); }

.contact-form-wrap { background: var(--c-white); }
.contact-form-wrap form { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4) var(--sp-5); }
.contact-form-wrap .full-row,
.contact-form-wrap p:has(> textarea),
.contact-form-wrap p:has(> input[name="organization"]),
.contact-form-wrap p:has(> input[name="topic"]) { grid-column: 1 / -1; }
.contact-form-wrap label,
.contact-form-wrap .field-label {
	display: block;
	font-family: var(--ff-eyebrow); font-weight: 600;
	font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase;
	color: var(--c-dark-55); margin-bottom: 8px;
}
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="url"],
.contact-form-wrap select,
.contact-form-wrap textarea {
	width: 100%; box-sizing: border-box;
	font-family: var(--ff-body); font-size: 0.9375rem;
	color: var(--c-dark);
	background: var(--c-white);
	border: 1px solid var(--c-dark-15);
	border-radius: var(--r-input);
	padding: 14px 16px;
	transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.contact-form-wrap textarea { min-height: 140px; resize: vertical; }
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus { border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(74,94,244,0.16); outline: none; }
.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder { color: var(--c-dark-45); }
.contact-form-wrap button[type="submit"],
.contact-form-wrap input[type="submit"] {
	font-family: var(--ff-body); font-weight: 600; font-size: 0.875rem;
	letter-spacing: 0.04em; text-transform: uppercase;
	background: var(--c-blue); color: var(--c-white);
	border: 0; border-radius: var(--r-btn);
	padding: 16px 28px; cursor: pointer;
	transition: background-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.contact-form-wrap button[type="submit"]:hover,
.contact-form-wrap input[type="submit"]:hover { background: var(--c-blue-600); transform: translateY(-1px); }
.contact-form-wrap .submit-row { grid-column: 1 / -1; display: flex; justify-content: flex-end; align-items: center; gap: var(--sp-4); }
.contact-form-wrap .submit-fineprint { font-size: 0.75rem; color: var(--c-dark-45); }
/* Pipedrive iframe — height grows to fit content via postMessage (see main.js).
 * The min-height values are conservative fallbacks for the moment between
 * iframe load and the first height message arriving. */
.contact-form-wrap__iframe { position: relative; width: 100%; min-height: 1100px; }
.contact-form-wrap__iframe iframe {
	width: 100%;
	height: auto;
	min-height: 1100px;
	border: 0; display: block;
	background: transparent;
	overflow: hidden;
}

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .contact-form-wrap form { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .contact-form-wrap__iframe, .contact-form-wrap__iframe iframe { min-height: 1280px; } }

/* ---------- 23. FAQ page ---------- */
/* Search bar wrap: equal vertical breathing above (label → bar) and below (bar → tabs line). */
.section--faqp-search { padding-block: var(--sp-6); }
.faqp-search-label {
	display: block;
	font-family: var(--ff-eyebrow); font-size: 0.75rem; letter-spacing: 0.14em;
	text-transform: uppercase; color: var(--c-dark-70);
	margin-bottom: var(--sp-4);
}
.faqp-search { margin: 0 0 var(--sp-4); max-width: 520px; position: relative; display: flex; align-items: center; }
.faqp-search__icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--c-dark-55); pointer-events: none; }
.faqp-search__input {
	width: 100%; padding: 14px 16px 14px 44px;
	border: 1px solid var(--c-dark-15);
	border-radius: var(--r-btn);
	background: var(--c-white);
	font-family: inherit; font-size: 1rem;
	color: var(--c-dark);
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faqp-search__input:focus { outline: none; border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(74,94,244,0.16); }
.faqp-search-wrap { display: none; } /* legacy */
.faqp-search-wrap input {
	width: 100%; box-sizing: border-box;
	padding: 14px 16px 14px 44px;
	border-radius: var(--r-full);
	border: 1px solid var(--c-dark-15);
	background: var(--c-white);
	font-family: var(--ff-body); font-size: 0.9375rem;
}
.faqp-search-wrap svg { position: absolute; top: 50%; transform: translateY(-50%); left: 16px; color: var(--c-dark-55); }
.faqp-search-wrap input:focus { outline: none; border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(74,94,244,0.16); }

/* Tabs row: gap between search bar and tabs matches the gap between tabs and the line. */
.faqp-cats { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin: 0 0 var(--sp-4); padding-bottom: var(--sp-4); border-bottom: 1px solid var(--c-dark-08); }
.section--faqp-list { padding-block: var(--sp-5); }
.faqp-group:first-child { margin-top: 0; }
.faqp-group:first-child .faqp-group__title { margin-top: 0; padding-top: 0; }
.faqp-cats__btn {
	font-family: var(--ff-body); font-weight: 600; font-size: 0.75rem;
	text-transform: uppercase; letter-spacing: 0.12em;
	padding: 8px 14px; border-radius: var(--r-btn);
	color: var(--c-dark-70); background: transparent;
	box-shadow: inset 0 0 0 1px var(--c-dark-15);
	transition: background-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.faqp-cats__btn:hover { background: var(--c-dark-04); color: var(--c-dark); }
.faqp-cats__btn.is-active { background: var(--c-blue); color: var(--c-white); box-shadow: none; }

.faqp-group { margin-bottom: var(--sp-7); }
.faqp-group__title { font-family: var(--ff-eyebrow); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-blue); margin: 0 0 var(--sp-4); }
.faqp-list { display: flex; flex-direction: column; }
.faqp-item { border-bottom: 1px solid var(--c-dark-08); }
.faqp-item details { padding: 0; }
.faqp-item summary {
	list-style: none; cursor: pointer;
	display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4);
	padding: var(--sp-5) 0;
	font-family: var(--ff-heading); font-weight: 500; font-size: 1rem;
	color: var(--c-dark);
}
.faqp-item summary::-webkit-details-marker { display: none; }
.faqp-item .faq__caret { color: var(--c-dark-70); }
.faqp-item details[open] .faq__caret { transform: rotate(180deg); }
.faqp-item__a { padding: 0 0 var(--sp-5); color: var(--c-dark-70); font-size: 0.9375rem; max-width: 720px; }

.faqp-cta { margin-top: var(--sp-7); padding: var(--sp-7) var(--sp-7); border-radius: var(--r-xl); background: var(--c-beige); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-5); }
.faqp-cta__title { margin: 0 0 var(--sp-2); font-family: var(--ff-heading); font-weight: 500; font-size: 1.25rem; color: var(--c-dark); }
.faqp-cta__body { margin: 0; color: var(--c-dark-70); font-size: 0.9375rem; }

/* ---------- 24. Single post (article) ---------- */
/* v0.6.2 — article main full-width so the Final CTA bleeds edge-to-edge */
.single-post-wrap { padding-top: var(--sp-7); }
.single-post__header,
.single-post__thumb,
.single-post__content { max-width: 760px; margin-inline: auto; }
.single-post__title { margin-top: var(--sp-3); }
.single-post__meta { display: flex; align-items: center; gap: var(--sp-2); font-size: 0.875rem; color: var(--c-dark-55); margin-top: var(--sp-4); }
.single-post__meta .blog-card__author-initials {
	display: inline-flex; align-items: center; justify-content: center;
	width: 32px; height: 32px; flex: 0 0 32px;
	border-radius: 50%;
	background: var(--c-blue-tint); color: var(--c-blue);
	font-family: var(--ff-heading); font-weight: 600; font-size: 0.75rem; letter-spacing: 0;
}
.single-post__thumb { margin-block: var(--sp-6) var(--sp-7); border-radius: var(--r-xl); overflow: hidden; }
.single-post__thumb-img { width: 100%; height: auto; display: block; }
.single-post__content h2 { margin-top: var(--sp-7); }
.single-post__content h3 { margin-top: var(--sp-6); }
.single-post__content img { border-radius: var(--r-md); }
.single-post__content figure { margin: var(--sp-6) 0; }
.single-post__content p > img { margin: var(--sp-6) 0; }
.single-post__content blockquote { border-left: 3px solid var(--c-blue); padding-left: var(--sp-5); color: var(--c-dark); font-family: var(--ff-heading); font-weight: 500; font-size: 1.125rem; margin: var(--sp-6) 0; }
.single-post__content a { color: var(--c-blue); text-decoration: underline; text-underline-offset: 3px; }
/* Small breathing room between the end of the article and the Final CTA band. */
.single-post-wrap .section--finalcta { margin-top: var(--sp-6); }

/* ---------- 25. Placeholder (dev aid) ---------- */
.placeholder {
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, rgba(74,94,244,0.08) 0%, rgba(246,241,228,0.60) 100%);
	color: var(--c-dark-45);
	font-family: var(--ff-body); font-size: 0.8125rem;
	border-radius: var(--r-md);
	min-height: 200px;
	position: relative;
	overflow: hidden;
}
.placeholder::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(45deg, rgba(39,36,61,0.04) 25%, transparent 25%, transparent 50%, rgba(39,36,61,0.04) 50%, rgba(39,36,61,0.04) 75%, transparent 75%, transparent); background-size: 20px 20px; pointer-events: none; }
.placeholder span { position: relative; }

/* ---------- 26. Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } }

/* ---------- 27. RTL (Arabic) ---------- */
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .pricing-card__label,
html[dir="rtl"] .site-footer__heading { letter-spacing: 0; }
html[dir="rtl"] .lang-switch__menu { right: auto; left: 0; }
html[dir="rtl"] .marquee__track { animation-direction: reverse; }
html[dir="rtl"] .split__item { grid-template-columns: 1fr 44px; }

/* ---------- RTL bedrock (Arabic) ---------- *
 * Lightweight RTL adaptation — flips primary directional rules.
 * A full audit is planned for the next round; these cover the most visible
 * issues (header, footers, lists, timelines, marquee animation). */
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .site-header__row,
html[dir="rtl"] .site-footer__grid,
html[dir="rtl"] .contact-grid,
html[dir="rtl"] .faq__grid,
html[dir="rtl"] .about-mission__grid { direction: rtl; }
html[dir="rtl"] .section-head--left { text-align: right; }
html[dir="rtl"] .blog-featured { direction: rtl; }
html[dir="rtl"] .about-timeline__year-col { text-align: left; }
html[dir="rtl"] .about-timeline__node--right .about-timeline__year-col { text-align: right; }
html[dir="rtl"] .marquee__track { animation-direction: reverse; }
html[dir="rtl"] .faqp-search__icon { left: auto; right: 16px; }
html[dir="rtl"] .faqp-search__input { padding: 14px 44px 14px 16px; }
html[dir="rtl"] .support-resource-card__foot { flex-direction: row-reverse; }
html[dir="rtl"] .support-step__info { border-left: 0; border-right: 3px solid var(--c-blue); }
html[dir="rtl"] .split__item-icon { grid-column: 2; }

/* ---------- 28. v0.3.0 additions ---------- */

/* Sections that have bg image/color need their direct children above the bg layer. */
.section { position: relative; }
.section > .container { position: relative; z-index: 1; }

/* About hero — split with sand stats card on the right.
 * Title + body are dark to match the rest of the page-hero family;
 * the eyebrow is the standard blue. */
.section--about-hero {
	position: relative;
	padding-block: clamp(4rem, 6vw, 7rem);
	color: var(--c-dark);
	overflow: hidden;
}
.section--about-hero:not(.has-bg-image):not(.has-bg-color) { background: var(--c-beige); }
.about-hero__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(2rem, 4vw, 5rem);
	align-items: center;
}
.about-hero__copy .eyebrow { color: var(--c-blue); }
.about-hero__title { color: var(--c-dark); margin-bottom: var(--sp-4); }
.about-hero__body { color: var(--c-dark-70); max-width: 520px; }
.about-hero__stats {
	background: var(--c-beige);
	border-radius: var(--r-xl);
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	box-shadow: var(--sh-1);
	overflow: hidden;
	position: relative;
}
.about-hero__stat {
	background: var(--c-beige);
	padding: clamp(1.5rem, 3vw, 2.25rem);
	display: flex; flex-direction: column; gap: var(--sp-2);
	min-height: 140px; justify-content: center;
	position: relative;
}
/* One horizontal + one vertical divider line.
 * 1st & 2nd cells get a bottom border, 1st & 3rd cells get a right border. */
.about-hero__stat:nth-child(1),
.about-hero__stat:nth-child(2) { border-bottom: 1px solid rgba(39,36,61,0.12); }
.about-hero__stat:nth-child(1),
.about-hero__stat:nth-child(3) { border-right: 1px solid rgba(39,36,61,0.12); }
.about-hero__stat-value {
	font-family: var(--ff-heading); font-weight: 500;
	font-size: clamp(2rem, 1.5rem + 1.5vw, 2.75rem);
	line-height: 1; letter-spacing: -0.02em;
	color: var(--c-dark);
}
.about-hero__stat-label {
	font-family: var(--ff-eyebrow); font-weight: 600;
	font-size: 0.75rem; letter-spacing: 0.16em;
	text-transform: uppercase; color: var(--c-dark-55);
}
@media (max-width: 900px) { .about-hero__grid { grid-template-columns: 1fr; } }

/* About values — sand bg by default */
.section--about-values:not(.has-bg-image):not(.has-bg-color) { background: var(--c-beige); }

/* About timeline — centered vertical pathway with a SINGLE continuous dashed
 * line running through the middle. The line is drawn ONCE on the parent so it
 * spans the whole list without gaps; per-node decoration only carries the dot. */
.section--about-timeline:not(.has-bg-image):not(.has-bg-color) { background: var(--c-white); }
.about-timeline {
	list-style: none;
	margin: var(--sp-7) auto 0;
	padding: 0;
	max-width: 880px;
	position: relative;
}
/* The continuous dashed line. */
.about-timeline::before {
	content: '';
	position: absolute;
	top: var(--sp-5); /* aligns with first dot's vertical center via padding */
	bottom: var(--sp-5);
	left: 50%;
	transform: translateX(-50%);
	border-left: 2px dashed var(--c-blue);
	opacity: 0.45;
	z-index: 0;
}
.about-timeline__node {
	display: grid;
	grid-template-columns: 1fr 56px 1fr;
	column-gap: var(--sp-5);
	align-items: center;
	padding: var(--sp-5) 0;
	position: relative;
	z-index: 1;
}
.about-timeline__center {
	position: relative;
	display: flex; justify-content: center; align-items: center;
}
.about-timeline__dot {
	position: relative;
	z-index: 1;
	width: 14px; height: 14px;
	border-radius: 50%;
	background: var(--c-blue);
	box-shadow: 0 0 0 4px var(--c-white), 0 0 0 6px rgba(74,94,244,0.25);
	align-self: center;
}
.about-timeline__year-col { text-align: right; }
.about-timeline__node--right .about-timeline__year-col { order: 3; text-align: left; }
.about-timeline__node--right .about-timeline__copy      { order: 1; text-align: right; }
.about-timeline__node--right .about-timeline__center    { order: 2; }
.about-timeline__year {
	display: inline-block;
	font-family: var(--ff-heading); font-weight: 500;
	color: var(--c-blue);
	font-size: 1.125rem;
	line-height: 1;
}
.about-timeline__title { font-family: var(--ff-heading); font-weight: 500; color: var(--c-dark); font-size: 1.0625rem; margin: 0; }
.about-timeline__body  { color: var(--c-dark-70); margin: 4px 0 0; font-size: 0.9375rem; }
@media (max-width: 720px) {
	/* On mobile the line + dot sit centred in a fixed left column; copy on the right. */
	.about-timeline { max-width: 100%; }
	.about-timeline::before {
		/* The line stays exactly under the dots (centre of the 56px gutter). */
		left: 28px;
		transform: none;
	}
	.about-timeline__node,
	.about-timeline__node--right {
		grid-template-columns: 56px 1fr;
		column-gap: var(--sp-4);
		align-items: start;
	}
	/* Year + dot stack inside the centred gutter, both aligned to its centre. */
	.about-timeline__year-col,
	.about-timeline__node--right .about-timeline__year-col {
		grid-column: 1; grid-row: 1;
		text-align: center;
		align-self: start;
	}
	.about-timeline__center,
	.about-timeline__node--right .about-timeline__center {
		grid-column: 1; grid-row: 2;
		justify-content: center;
		align-items: flex-start;
		padding-top: var(--sp-2);
	}
	.about-timeline__copy,
	.about-timeline__node--right .about-timeline__copy {
		grid-column: 2; grid-row: 1 / 3;
		text-align: left;
		padding-top: 2px;
	}
}
.about-timeline__year {
	display: block;
	font-family: var(--ff-heading); font-weight: 500;
	color: var(--c-blue);
	font-size: 1.125rem;
	margin-bottom: var(--sp-2);
}
.about-timeline__title { font-size: 1rem; margin-bottom: var(--sp-2); color: var(--c-dark); }
.about-timeline__body { font-size: 0.9375rem; color: var(--c-dark-70); margin: 0; }
@media (max-width: 1000px) { .about-timeline { grid-template-columns: repeat(2, 1fr); } .about-timeline::before { display: none; } }
@media (max-width: 560px) { .about-timeline { grid-template-columns: 1fr; } }

/* Contact — blue eyebrow title, icon rows, sand reply card */
.contact-grid__eyebrow {
	color: var(--c-blue);
	font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
	margin-bottom: var(--sp-3);
}
.contact-grid__list { list-style: none; margin: var(--sp-5) 0 var(--sp-6); padding: 0; display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-grid__row { display: flex; align-items: flex-start; gap: var(--sp-3); color: var(--c-dark); font-size: 0.9375rem; }
.contact-grid__row a { color: var(--c-dark); border-bottom: 1px solid transparent; transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.contact-grid__row a:hover { color: var(--c-blue); border-bottom-color: var(--c-blue); }
.contact-grid__icon {
	flex: 0 0 36px; width: 36px; height: 36px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: var(--r-btn);
	background: rgba(74,94,244,0.10);
	color: var(--c-blue);
}
.contact-grid__reply-card {
	background: var(--c-beige);
	border-radius: var(--r-lg);
	padding: var(--sp-5) var(--sp-6);
}
.contact-grid__reply-title { margin: 0 0 var(--sp-2); font-family: var(--ff-heading); font-weight: 500; font-size: 1.0625rem; color: var(--c-dark); }
.contact-grid__reply-body { margin: 0; color: var(--c-dark-70); font-size: 0.9375rem; }

/* Support page */
.support-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--sp-5);
	margin-top: var(--sp-6);
}
.support-grid__card {
	background: var(--c-white);
	border: 1px solid var(--c-dark-08);
	border-radius: var(--r-lg);
	padding: var(--sp-6);
	display: flex; flex-direction: column; gap: var(--sp-3);
	transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.support-grid__card:hover { transform: translateY(-3px); border-color: var(--c-blue); box-shadow: var(--sh-1); }
.support-grid__icon { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; color: var(--c-blue); }
.support-grid__icon img { width: 36px; height: 36px; object-fit: contain; }
.support-grid__title { font-size: 1.0625rem; color: var(--c-dark); margin: 0; }
.support-grid__body { font-size: 0.9375rem; color: var(--c-dark-70); margin: 0; flex: 1; }
.support-grid__link { color: var(--c-blue); font-weight: 600; font-size: 0.9375rem; display: inline-flex; align-items: center; gap: 6px; }
.support-grid__link:hover { gap: 10px; }

/* Infinite-scroll sentinel — only the spinner shows. */
.blog-loadmore { display: flex; justify-content: center; padding: var(--sp-6) 0; min-height: 60px; }
.blog-loadmore__spinner {
	width: 22px; height: 22px;
	border-radius: 50%;
	border: 2px solid var(--c-dark-15);
	border-top-color: var(--c-blue);
	animation: horusSpin 0.8s linear infinite;
	opacity: 0;
	transition: opacity var(--dur-fast) var(--ease);
}
.blog-loadmore.is-loading .blog-loadmore__spinner { opacity: 1; }
@keyframes horusSpin { to { transform: rotate(360deg); } }
.blog-card.is-new { animation: horusFadeIn .25s var(--ease) both; }
@keyframes horusFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- 30. Support — Professional Resources ---------- */
.section--support-resources { padding-block: clamp(3rem, 5vw, 5rem); position: relative; }
.support-resources__head {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(2rem, 3vw, 4rem);
	align-items: end;
	margin-bottom: var(--sp-7);
}
.support-resources__head-icon {
	width: 32px; height: 32px; color: var(--c-blue);
	margin-bottom: var(--sp-3);
}
.support-resources__head-icon img { width: 32px; height: 32px; object-fit: contain; }
.support-resources__head-body { color: var(--c-dark-70); font-size: 0.9375rem; line-height: 1.65; }
.support-resources__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--sp-4);
}
.support-resource-card {
	background: var(--c-beige);
	border-radius: var(--r-lg);
	padding: var(--sp-6);
	display: flex; flex-direction: column;
	gap: var(--sp-3);
}
.support-resource-card__icon { width: 36px; height: 36px; color: var(--c-blue); }
.support-resource-card__icon img { width: 36px; height: 36px; object-fit: contain; }
.support-resource-card__title { font-family: var(--ff-heading); font-weight: 500; font-size: 1rem; color: var(--c-dark); margin: 0; }
.support-resource-card__body { font-size: 0.875rem; color: var(--c-dark-70); margin: 0; flex: 1; }
.support-resource-card__filename {
	font-family: var(--ff-eyebrow); font-size: 0.6875rem; letter-spacing: 0.12em;
	text-transform: uppercase; color: var(--c-dark-40, rgba(39,36,61,0.5));
	margin: var(--sp-2) 0 0;
}
.support-resource-card__foot {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--sp-3);
	margin-top: var(--sp-3);
}
.support-resource-card__foot .support-resource-card__filename { margin: 0; }
.support-resource-card__btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px;
	border-radius: var(--r-btn); /* squared 6px corners */
	background: transparent;
	color: var(--c-dark);
	border: 1px solid var(--c-dark-15);
	flex: 0 0 36px;
	transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.support-resource-card__btn:hover { background: var(--c-blue); color: var(--c-white); border-color: var(--c-blue); }
.support-resource-card__btn span { display: none; }

@media (max-width: 1024px) { .support-resources__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) {
	.support-resources__head { grid-template-columns: 1fr; }
	.support-resources__grid { grid-template-columns: 1fr; }
}

/* ---------- 31. Support — Step-by-step guide carousel ---------- */
.section--support-steps { padding-block: clamp(3rem, 5vw, 5rem); position: relative; }
.support-steps__head {
	display: flex; justify-content: space-between; align-items: end;
	gap: var(--sp-5); margin-bottom: var(--sp-6);
}
.support-steps__pager { display: flex; align-items: center; gap: var(--sp-4); }
.support-steps__pager-count {
	font-family: var(--ff-eyebrow); font-size: 0.75rem; letter-spacing: 0.14em;
	color: var(--c-dark-70); text-transform: uppercase;
}
.support-steps__pager-dots { display: flex; gap: 6px; }
.support-steps__pager-dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--c-dark-15); border: 0; padding: 0; cursor: pointer;
	transition: width var(--dur) var(--ease), background var(--dur) var(--ease);
}
.support-steps__pager-dot.is-active { background: var(--c-blue); width: 24px; border-radius: var(--r-full); }

.support-steps__card {
	background: var(--c-white);
	border-radius: var(--r-xl);
	box-shadow: var(--sh-1);
	border: 1px solid var(--c-dark-08);
	padding: clamp(1.5rem, 2vw, 2.5rem);
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: stretch;
	min-height: 480px;
}
.support-steps__pane { position: relative; display: flex; flex-direction: column; }
.support-step { display: none; flex-direction: column; gap: var(--sp-3); flex: 1; }
.support-step.is-active { display: flex; }
.support-step__number {
	font-family: var(--ff-heading); font-weight: 500;
	font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 1;
	color: var(--c-blue); margin: 0 0 var(--sp-3);
}
.support-step__title { font-family: var(--ff-heading); font-weight: 500; font-size: 1.375rem; color: var(--c-dark); margin: 0; }
.support-step__body { color: var(--c-dark-70); margin: 0; line-height: 1.65; }
.support-step__info {
	background: var(--c-beige);
	border-left: 3px solid var(--c-blue);
	border-radius: var(--r-md);
	padding: var(--sp-3) var(--sp-4);
	font-size: 0.875rem; color: var(--c-dark);
	margin-top: var(--sp-3);
}
.support-steps__nav { display: flex; gap: var(--sp-2); margin-top: auto; padding-top: var(--sp-5); }
.support-steps__nav-btn {
	width: 40px; height: 40px;
	border-radius: var(--r-btn);
	background: var(--c-white);
	color: var(--c-dark);
	border: 1px solid var(--c-dark-15);
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer;
	transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.support-steps__nav-btn:hover { background: var(--c-dark); color: var(--c-white); border-color: var(--c-dark); }
.support-steps__nav-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.support-steps__media {
	position: relative;
	border-radius: var(--r-xl);
	overflow: hidden;
	background: var(--c-dark-04);
	min-height: 360px;
}
.support-steps__media-slot {
	position: absolute; inset: 0;
	opacity: 0;
	transition: opacity var(--dur) var(--ease);
}
.support-steps__media-slot.is-active { opacity: 1; }
.support-steps__media-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.support-steps__media-slot .placeholder.support-steps__media-img {
	background: linear-gradient(135deg, rgba(74,94,244,0.06), rgba(39,36,61,0.04));
	display: flex; align-items: center; justify-content: center;
	color: var(--c-dark-40, rgba(39,36,61,0.4));
	font-family: var(--ff-eyebrow); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.support-steps__media-slot .placeholder.support-steps__media-img::before { content: attr(aria-label); }

@media (max-width: 880px) {
	.support-steps__head { flex-direction: column; align-items: flex-start; }
	.support-steps__card { grid-template-columns: 1fr; min-height: 0; }
	.support-steps__media { min-height: 240px; aspect-ratio: 4/3; }
}

/* ---------- 32. Support — Watch the guide (video + chapters) ---------- */
.section--support-video {
	padding-block: clamp(3rem, 5vw, 5rem);
	background: var(--c-dark);
	color: rgba(255, 254, 250, 0.78);
	position: relative;
}
.section--support-video .h2 { color: var(--c-white); }
.section--support-video .eyebrow { color: var(--c-blue); }
.support-video__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: clamp(1.5rem, 3vw, 3rem);
	margin-top: var(--sp-6);
	align-items: start;
}
.support-video__player {
	position: relative;
	border-radius: var(--r-xl);
	overflow: hidden;
	background: rgba(255,254,250,0.04);
	border: 1px solid rgba(255,254,250,0.08);
	aspect-ratio: 16/9;
}
.support-video__poster {
	width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer;
	background: transparent;
	position: absolute; inset: 0;
}
.support-video__poster-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.support-video__player .placeholder.support-video__poster-img {
	background: linear-gradient(135deg, rgba(74,94,244,0.18), rgba(39,36,61,0.4));
}
.support-video__play {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
	width: 64px; height: 64px; border-radius: 50%;
	background: var(--c-white); color: var(--c-dark);
	display: inline-flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 28px rgba(0,0,0,0.35);
	transition: transform var(--dur-fast) var(--ease);
}
.support-video__poster:hover .support-video__play { transform: translate(-50%,-50%) scale(1.05); }
.support-video__player iframe {
	position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.support-video__list-wrap {
	position: relative;
	min-height: 0;
	background: rgba(255,254,250,0.04);
	border: 1px solid rgba(255,254,250,0.08);
	border-radius: var(--r-xl);
	padding: var(--sp-5);
	display: flex; flex-direction: column; gap: var(--sp-3);
}
.support-video__list-wrap::after {
	content: ""; position: absolute; left: 1px; right: 1px; bottom: 1px;
	height: 44px; border-radius: 0 0 var(--r-xl) var(--r-xl);
	background: linear-gradient(to top, var(--c-dark), rgba(39,36,61,0));
	pointer-events: none; opacity: 0;
	transition: opacity var(--dur-fast) var(--ease);
}
.support-video__list-wrap.has-overflow::after { opacity: 0.92; }
.support-video__list-head {
	font-family: var(--ff-eyebrow); font-size: 0.75rem; letter-spacing: 0.14em;
	text-transform: uppercase; color: rgba(255,254,250,0.55);
	margin: 0 0 var(--sp-2);
}
.support-video__list { list-style: none; padding: 0 4px 0 0; margin: 0; display: flex; flex-direction: column; gap: 6px; flex: 1 1 auto; min-height: 0; overflow-y: auto; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: rgba(255,254,250,0.25) transparent; }
.support-video__list::-webkit-scrollbar { width: 6px; }
.support-video__list::-webkit-scrollbar-thumb { background: rgba(255,254,250,0.22); border-radius: 999px; }
.support-video__list::-webkit-scrollbar-track { background: transparent; }
.support-video__item:focus-visible { outline: 2px solid var(--c-white); outline-offset: 2px; }
.support-video__item {
	display: grid;
	grid-template-columns: 56px 1fr auto;
	column-gap: var(--sp-3);
	align-items: center;
	width: 100%;
	background: transparent;
	border: 0; padding: var(--sp-3);
	border-radius: var(--r-md);
	color: rgba(255,254,250,0.85);
	cursor: pointer;
	text-align: left;
	transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.support-video__item:hover { background: rgba(255,254,250,0.06); color: var(--c-white); }
.support-video__item.is-active { background: var(--c-blue); color: var(--c-white); }
.support-video__item-thumb {
	width: 56px; height: 40px;
	border-radius: var(--r-sm);
	background: rgba(255,254,250,0.08);
	color: rgba(255,254,250,0.65);
	display: inline-flex; align-items: center; justify-content: center;
	overflow: hidden;
}
.support-video__item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.support-video__item-copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.support-video__item-title { font-family: var(--ff-body); font-size: 0.9375rem; }
.support-video__item-desc { font-size: 0.8125rem; color: rgba(255,254,250,0.55); }
.support-video__item.is-active .support-video__item-desc { color: rgba(255,254,250,0.85); }
.support-video__item-dur { font-size: 0.8125rem; color: rgba(255,254,250,0.55); white-space: nowrap; }
.support-video__item.is-active .support-video__item-dur { color: rgba(255,254,250,0.92); }

/* Tablet & mobile: player on top, video list stacked below — capped to
   ~4 rows with vertical scroll so the section stays compact. */
@media (max-width: 1024px) {
	.support-video__grid { grid-template-columns: 1fr; }
	.support-video__list-wrap { height: auto !important; }
	.support-video__list { max-height: 18rem; }
}

/* ---------- 33. Utilities ---------- */
.is-hidden { display: none !important; }
