/* ==========================================================================
   MTS Pro — design system
   Brand: deep navy + MTS blue + signature amber (from the MTS logo)
   Type: Plus Jakarta Sans (headings) / Inter (body)
   ========================================================================== */

:root {
	--navy-950: #051428;
	--navy-900: #0a2540;
	--navy-800: #0f3460;
	--navy-700: #16457d;
	--blue-600: #0b5cc0;
	--blue-500: #1a7ae0;
	--blue-400: #4c9bf0;
	--blue-100: #dcebfd;
	--blue-50: #eff6ff;
	--amber-500: #f5b400;
	--amber-400: #ffc629;
	--amber-100: #fff4d1;
	--ink: #0b1b2e;
	--text: #334155;
	--muted: #5b6b80;
	--line: #e3e9f2;
	--line-strong: #cfd9e6;
	--bg: #ffffff;
	--bg-soft: #f5f8fc;
	--success: #0f9d6b;
	--danger: #c93636;

	--font-head: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	--container: 1200px;
	--gutter: clamp(16px, 4vw, 32px);
	--section: clamp(64px, 9vw, 112px);
	--radius-sm: 10px;
	--radius: 16px;
	--radius-lg: 24px;
	--shadow-sm: 0 1px 2px rgba(10, 37, 64, .06), 0 1px 3px rgba(10, 37, 64, .08);
	--shadow: 0 10px 30px -12px rgba(10, 37, 64, .18), 0 4px 10px -6px rgba(10, 37, 64, .08);
	--shadow-lg: 0 30px 60px -20px rgba(10, 37, 64, .35);
	--ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
img, svg, video, iframe { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--blue-600); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--navy-800); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--ink); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.2em; }
strong { color: var(--ink); font-weight: 600; }
:focus-visible { outline: 3px solid var(--amber-400); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--blue-100); color: var(--ink); }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 1000; background: var(--navy-900); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm); }
.skip-link:focus { top: 12px; color: #fff; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: calc(780px + var(--gutter) * 2); }
.muted { color: var(--muted); }
.lead { font-size: 1.2rem; color: var(--muted); }
.icon { flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn,
.wp-block-button .wp-block-button__link {
	display: inline-flex; align-items: center; justify-content: center; gap: .55em;
	font-family: var(--font-head); font-weight: 700; font-size: .98rem; line-height: 1.2;
	padding: .9em 1.45em; border-radius: 999px; border: 2px solid transparent;
	text-decoration: none; cursor: pointer; white-space: nowrap;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s, color .2s, border-color .2s;
}
.btn:hover, .wp-block-button .wp-block-button__link:hover { transform: translateY(-2px); }
.btn.btn-lg { font-size: 1.05rem; padding: 1.05em 1.7em; }
.btn.btn-primary, .wp-block-button.btn-primary .wp-block-button__link { background: var(--blue-600); color: #fff; box-shadow: 0 8px 20px -8px rgba(11, 92, 192, .65); }
.btn.btn-primary:hover, .wp-block-button.btn-primary .wp-block-button__link:hover { background: var(--navy-800); color: #fff; }
.btn.btn-accent, .wp-block-button.btn-accent .wp-block-button__link { background: var(--amber-400); color: var(--navy-950); box-shadow: 0 10px 24px -10px rgba(245, 180, 0, .8); }
.btn.btn-accent:hover, .wp-block-button.btn-accent .wp-block-button__link:hover { background: #ffd35a; color: var(--navy-950); }
.btn.btn-ghost, .wp-block-button.btn-ghost .wp-block-button__link { background: transparent; color: var(--navy-900); border-color: var(--line-strong); }
.btn.btn-ghost:hover, .wp-block-button.btn-ghost .wp-block-button__link:hover { border-color: var(--navy-900); color: var(--navy-900); background: #fff; }
.btn.btn-outline-light, .wp-block-button.btn-outline-light .wp-block-button__link { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn.btn-outline-light:hover, .wp-block-button.btn-outline-light .wp-block-button__link:hover { background: #fff; color: var(--navy-900); border-color: #fff; }
.wp-block-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.6rem 0 0; }
.wp-block-buttons.is-center { justify-content: center; }
@media (max-width: 520px) {
	.btn, .wp-block-button .wp-block-button__link { white-space: normal; text-align: center; }
	.wp-block-buttons > .wp-block-button { flex: 1 1 100%; }
	.wp-block-buttons > .wp-block-button .wp-block-button__link { width: 100%; }
}
.wp-block-buttons > .wp-block-button { margin: 0; }

.link-arrow { display: inline-flex; align-items: center; gap: .4em; font-family: var(--font-head); font-weight: 700; font-size: .95rem; text-decoration: none; color: var(--blue-600); }
a.link-arrow::after, .card-link a::after { content: ""; width: 16px; height: 16px; background: currentColor; -webkit-mask: var(--i-arrow) center / contain no-repeat; mask: var(--i-arrow) center / contain no-repeat; transition: transform .2s var(--ease); }
.link-arrow .icon + .screen-reader-text, .link-arrow:has(.icon)::after { display: none; }
a.link-arrow:hover::after, .card-link a:hover::after { transform: translateX(4px); }

/* ---------- Top bar & header ---------- */
.topbar { background: var(--navy-950); color: #b8c7dc; font-size: .84rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar p { margin: 0; display: flex; align-items: center; gap: 8px; }
.topbar .icon { color: var(--amber-400); }
.topbar-contact { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.topbar-contact a { color: #dbe5f3; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.topbar-contact a:hover { color: #fff; }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s; }
/* Frosted background lives on a pseudo-element: backdrop-filter on the header itself would trap the fixed-position mobile menu inside it. */
.site-header::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(255, 255, 255, .92); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); }
.nav-open .site-header::before { background: #fff; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px -14px rgba(10, 37, 64, .25); }
.admin-bar .site-header { top: 32px; }
.header-inner { display: flex; align-items: center; gap: 28px; min-height: 80px; }
.brand img, .custom-logo { height: 42px; width: auto; }
.custom-logo-link { display: block; }

.site-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.site-nav .menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.site-nav .menu > li { position: relative; }
.site-nav .menu > li > a { display: flex; align-items: center; gap: 5px; padding: 10px 13px; border-radius: 999px; color: var(--ink); font-family: var(--font-head); font-weight: 600; font-size: .95rem; text-decoration: none; white-space: nowrap; transition: background-color .2s, color .2s; }
.site-nav .menu > li > a:hover, .site-nav .menu > li:focus-within > a { background: var(--blue-50); color: var(--blue-600); }
.site-nav .menu > .current-menu-item > a, .site-nav .menu > .current-menu-ancestor > a, .site-nav .menu > .current-menu-parent > a { color: var(--blue-600); }
.nav-caret { transition: transform .2s; opacity: .7; }
.site-nav .sub-menu {
	position: absolute; top: calc(100% + 10px); left: -12px; min-width: 320px; list-style: none; margin: 0; padding: 10px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg);
	opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, transform .2s var(--ease), visibility .2s;
}
.site-nav .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.site-nav .menu > li:hover > .sub-menu, .site-nav .menu > li:focus-within > .sub-menu, .site-nav .menu > li.is-open > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.site-nav .menu > li:hover .nav-caret, .site-nav .menu > li.is-open .nav-caret { transform: rotate(180deg); }
.site-nav .sub-menu a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); color: var(--ink); text-decoration: none; font-family: var(--font-head); font-weight: 600; font-size: .93rem; line-height: 1.3; }
.site-nav .sub-menu a:hover, .site-nav .sub-menu .current-menu-item > a { background: var(--blue-50); color: var(--blue-600); }
.site-nav .sub-menu .menu-desc { display: block; margin-top: 3px; font-family: var(--font-body); font-weight: 400; font-size: .82rem; color: var(--muted); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: .72em 1.2em; font-size: .92rem; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; padding: 9px; min-width: 46px; min-height: 46px; align-items: center; justify-content: center; color: var(--ink); cursor: pointer; border-radius: var(--radius-sm); }
.nav-toggle-close { display: none; }

@media (max-width: 1180px) {
	.nav-cta .btn-ghost span { display: none; }
	.site-nav .menu > li > a { padding: 10px 9px; font-size: .92rem; }
}
@media (max-width: 1060px) {
	.topbar-note { display: none !important; }
	.topbar-inner { justify-content: center; }
	.nav-toggle { display: inline-flex; }
	.nav-open .nav-toggle-open { display: none; }
	.nav-open .nav-toggle-close { display: inline-flex; }
	.site-nav {
		position: fixed; inset: 0; top: var(--header-offset, 120px); z-index: 99; margin: 0;
		flex-direction: column; align-items: stretch; gap: 0; padding: 12px var(--gutter) 32px;
		background: #fff; overflow-y: auto; overscroll-behavior: contain;
		opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s, transform .25s var(--ease), visibility .2s;
	}
	.nav-open .site-nav { opacity: 1; visibility: visible; transform: none; }
	.nav-open { overflow: hidden; }
	.site-nav .menu { flex-direction: column; align-items: stretch; gap: 0; }
	.site-nav .menu > li { border-bottom: 1px solid var(--line); }
	.site-nav .menu > li > a { padding: 16px 4px; border-radius: 0; font-size: 1.08rem; justify-content: space-between; }
	.site-nav .menu > li > a:hover { background: none; }
	.site-nav .sub-menu { position: static; min-width: 0; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 12px; display: none; }
	.site-nav .menu > li.is-open > .sub-menu { display: block; }
	.site-nav .menu > li:hover > .sub-menu { display: none; }
	.site-nav .menu > li.is-open:hover > .sub-menu { display: block; }
	.site-nav .sub-menu a { padding: 10px 12px; }
	.nav-cta { flex-direction: column; align-items: stretch; margin-top: 24px; }
	.nav-cta .btn { padding: 1em; font-size: 1rem; }
	.nav-cta .btn-ghost span { display: inline; }
}
@media (max-width: 600px) {
	.topbar-contact li:last-child { display: none; }
	.header-inner { min-height: 68px; }
	.brand img, .custom-logo { height: 34px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
	position: relative; overflow: hidden; color: #c9d6e8;
	background:
		radial-gradient(900px 400px at 85% -10%, rgba(26, 122, 224, .45), transparent 60%),
		radial-gradient(600px 300px at 0% 110%, rgba(245, 180, 0, .12), transparent 60%),
		linear-gradient(160deg, var(--navy-900), var(--navy-950));
	padding: clamp(48px, 7vw, 88px) 0;
}
.page-hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(90deg, transparent, #000 70%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; display: grid; gap: 48px; align-items: center; }
.page-hero.has-image .page-hero-inner { grid-template-columns: 1.15fr .85fr; }
.page-hero h1 { color: #fff; margin-bottom: .35em; max-width: 18ch; }
.page-hero.is-article h1 { max-width: 28ch; font-size: clamp(2rem, 3.8vw, 3rem); }
.page-hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); max-width: 60ch; margin: 0; color: #c9d6e8; }
.page-hero-media { position: relative; }
.page-hero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, .12); }
.page-hero-media::before { content: ""; position: absolute; inset: auto -14px -14px auto; width: 60%; height: 60%; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--amber-400), transparent 70%); opacity: .35; z-index: -1; }
.page-hero .post-meta { color: #9fb2cc; margin: 0; }
@media (max-width: 900px) {
	.page-hero.has-image .page-hero-inner { grid-template-columns: 1fr; }
	.page-hero-media { max-width: 560px; }
}

.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 22px; padding: 0; font-size: .86rem; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; color: #9fb2cc; }
.breadcrumbs li + li::before { content: "/"; opacity: .5; }
.breadcrumbs a { color: #dbe5f3; text-decoration: none; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.breadcrumbs [aria-current] { color: var(--amber-400); }

/* ---------- Sections (block content) ---------- */
.page-content { display: block; }
.mts-sec, .section { padding-block: var(--section); position: relative; }
.mts-sec > .wp-block-group__inner-container,
.section > .container { max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.section-soft { background: var(--bg-soft); }
.mts-sec:not(.section-soft):not(.section-dark):not(.hero):not(.section-stats) + .mts-sec:not(.section-soft):not(.section-dark):not(.section-stats):not(.section-map) { padding-top: 0; }
.section-soft + .section-soft { padding-top: 0; }
.section-dark { background: linear-gradient(160deg, var(--navy-900), var(--navy-950)); color: #c9d6e8; }
.section-dark h2, .section-dark h3 { color: #fff; }

.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--font-head); font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
	color: var(--blue-600); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--amber-400); }
.eyebrow-light { color: var(--amber-400); }
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head.is-center .eyebrow { justify-content: center; }
.section-title { margin-bottom: .45em; }
.section-intro { font-size: 1.12rem; color: var(--muted); margin: 0; }
.sub-title { font-size: 1.1rem; margin-top: 1.8em; }
.wp-block-group__inner-container > :last-child, .wp-block-column > :last-child { margin-bottom: 0; }

/* Columns */
.wp-block-columns { display: flex; gap: clamp(32px, 5vw, 72px); margin: 0; align-items: flex-start; }
.wp-block-columns.split, .wp-block-columns.split-text, .wp-block-columns.hero-cols, .wp-block-columns.contact-cols, .wp-block-columns.audit-cols { align-items: center; }
.wp-block-columns.contact-cols, .wp-block-columns.audit-cols { align-items: flex-start; }
.wp-block-column { flex: 1 1 0; min-width: 0; max-width: 100%; }
.page-content, .site-main { overflow-wrap: break-word; }
@media (max-width: 900px) {
	.wp-block-columns { flex-direction: column; align-items: stretch !important; }
	.wp-block-columns.split.is-reverse { flex-direction: column-reverse; }
}
/* In split layouts the media column is first in markup when not reversed. */
.split.is-reverse > .wp-block-column:first-child { order: 2; }
@media (max-width: 900px) { .split.is-reverse > .wp-block-column:first-child { order: 0; } }

.split-img { margin: 0; position: relative; }
.split-img img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split-img::after { content: ""; position: absolute; z-index: -1; width: 46%; height: 46%; left: -18px; bottom: -18px; border-radius: var(--radius-lg); background: radial-gradient(var(--blue-100) 2px, transparent 2px) 0 0 / 14px 14px; }

/* ---------- Home hero ---------- */
.hero {
	color: #c9d6e8; overflow: hidden;
	background:
		radial-gradient(1000px 500px at 100% 0%, rgba(26, 122, 224, .5), transparent 60%),
		radial-gradient(700px 400px at -10% 100%, rgba(245, 180, 0, .14), transparent 60%),
		linear-gradient(160deg, var(--navy-900), var(--navy-950) 70%);
	padding-block: clamp(56px, 8vw, 110px) clamp(110px, 12vw, 160px);
}
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px); background-size: 24px 24px; mask-image: radial-gradient(ellipse at 70% 30%, #000, transparent 70%); pointer-events: none; }
.hero .wp-block-group__inner-container { position: relative; z-index: 1; }
.hero-cols > .wp-block-column:first-child { flex-basis: 54%; }
.hero-cols > .wp-block-column:last-child { flex-basis: 46%; position: relative; }
.hero-title { color: #fff; font-size: clamp(2.5rem, 5.4vw, 4.1rem); line-height: 1.06; letter-spacing: -.03em; margin-bottom: .4em; }
.hero-lead { font-size: clamp(1.08rem, 1.7vw, 1.25rem); max-width: 56ch; color: #c9d6e8; }
.hero-points { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: .93rem; color: #dbe5f3; }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points li::before { content: ""; width: 18px; height: 18px; background: var(--amber-400); -webkit-mask: var(--i-check-circle) center / contain no-repeat; mask: var(--i-check-circle) center / contain no-repeat; }
.hero-img { margin: 0; }
.hero-img img { width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover; object-position: 60% center; border-radius: 28px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, .14); }
.float-card { position: absolute; background: #fff; color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-lg); font-size: .9rem; animation: float 6s ease-in-out infinite; }
.float-claim { left: -44px; bottom: 36px; padding: 18px 22px 16px; min-width: 240px; }
.float-kicker { margin: 0 0 10px; font-family: var(--font-head); font-weight: 800; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.float-claim ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.float-claim li { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.float-claim li::before { content: ""; width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; background: var(--success) var(--i-check-white) center / 12px no-repeat; }
.float-claim li.active::before { background: var(--amber-400); box-shadow: 0 0 0 5px var(--amber-100); }
.float-badge { right: -18px; top: 28px; display: flex; align-items: center; gap: 12px; padding: 12px 18px 12px 12px; animation-delay: -3s; }
.float-badge strong { display: block; }
.float-icon { width: 38px; height: 38px; border-radius: 12px; background: var(--blue-50); position: relative; }
.float-icon::after { content: ""; position: absolute; inset: 9px; background: var(--blue-600); -webkit-mask: var(--i-shield) center / contain no-repeat; mask: var(--i-shield) center / contain no-repeat; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (max-width: 900px) {
	.hero-cols > .wp-block-column:last-child { max-width: 560px; margin-top: 16px; }
	.float-claim { left: 12px; bottom: -28px; }
	.float-badge { right: 12px; top: 12px; }
}

/* ---------- Stats ---------- */
.section-stats { padding: 0; z-index: 2; }
.stats > .wp-block-group__inner-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.stats.is-overlap { margin-top: calc(clamp(110px, 12vw, 160px) * -1 + 40px); }
.section-stats + .mts-sec { padding-top: var(--section) !important; }
.stat { padding: 30px 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.7rem); line-height: 1; letter-spacing: -.03em; margin: 0 0 10px; background: linear-gradient(120deg, var(--navy-800), var(--blue-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { margin: 0; font-size: .93rem; color: var(--muted); line-height: 1.45; }
@media (max-width: 900px) {
	.stats > .wp-block-group__inner-container { grid-template-columns: repeat(2, 1fr); }
	.stat:nth-child(2) { border-right: 0; }
	.stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) { .stat { padding: 22px 18px; } }

/* ---------- Grids & cards ---------- */
.grid > .wp-block-group__inner-container { display: grid; gap: 24px; }
.grid-2 > .wp-block-group__inner-container { grid-template-columns: repeat(2, 1fr); }
.grid-3 > .wp-block-group__inner-container { grid-template-columns: repeat(3, 1fr); }
.grid-4 > .wp-block-group__inner-container { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid-3 > .wp-block-group__inner-container, .grid-4 > .wp-block-group__inner-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid > .wp-block-group__inner-container { grid-template-columns: 1fr !important; } }
.grid + .wp-block-buttons { margin-top: 40px; }

.card {
	position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card { display: flex; flex-direction: column; }
.card > .wp-block-group__inner-container { flex: 1; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.section-soft .card { box-shadow: var(--shadow-sm); }
.card-title { font-size: 1.15rem; margin-bottom: .5em; }
.card p { font-size: .98rem; color: var(--muted); }
.card .card-link { margin-top: auto; padding-top: 6px; margin-bottom: 0; }
.card-link a { display: inline-flex; align-items: center; gap: .4em; font-family: var(--font-head); font-weight: 700; font-size: .93rem; text-decoration: none; }
.card-link a::after { content: ""; }
.card-link a::before { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.grid.is-compact .card { padding: 22px; }
.grid.is-compact .card-title { font-size: 1.02rem; }
.grid.is-compact .card p { font-size: .93rem; margin: 0; }
.grid.is-compact .card.ico::before { width: 42px; height: 42px; margin-bottom: 14px; border-radius: 12px; }

/* Icon chips: .ico.ico-{name} renders a masked SVG in a tinted square. */
.ico::before {
	content: ""; display: block; width: 52px; height: 52px; margin-bottom: 20px; border-radius: 14px;
	background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
}
.ico::after {
	content: ""; position: absolute; top: 44px; left: 42px; width: 24px; height: 24px; background: var(--blue-600);
	-webkit-mask: var(--ico) center / contain no-repeat; mask: var(--ico) center / contain no-repeat;
}
.grid.is-compact .card.ico::after { top: 31px; left: 31px; width: 20px; height: 20px; }
.card.ico:hover::before { background: linear-gradient(135deg, var(--blue-600), var(--blue-500)); }
.card.ico:hover::after { background: #fff; }
.card.ico::before { transition: background .3s; }

/* ---------- Feature cards (home) ---------- */
.feature-grid > .wp-block-group__inner-container { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 900px) { .feature-grid > .wp-block-group__inner-container { grid-template-columns: 1fr; } }
.feature-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 48px); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.feature-card::after { content: ""; position: absolute; width: 260px; height: 260px; right: -90px; top: -90px; border-radius: 50%; background: radial-gradient(circle, var(--blue-100), transparent 70%); }
.feature-card.is-transcription::after { background: radial-gradient(circle, var(--amber-100), transparent 70%); }
.feature-card > .wp-block-group__inner-container { position: relative; z-index: 1; }
.feature-title { font-size: clamp(1.4rem, 2.4vw, 1.75rem); letter-spacing: -.02em; }

/* ---------- Checklists & pills ---------- */
.checklist { list-style: none; padding: 0; margin: 1.2em 0; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 32px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .2em; width: 21px; height: 21px; border-radius: 50%; background: var(--blue-50); }
.checklist li::after { content: ""; position: absolute; left: 5px; top: calc(.2em + 5px); width: 11px; height: 11px; background: var(--blue-600); -webkit-mask: var(--i-check) center / contain no-repeat; mask: var(--i-check) center / contain no-repeat; }
.checklist.is-lg { gap: 14px; font-size: 1.02rem; }
.checklist.is-2col { grid-template-columns: repeat(2, 1fr); gap: 14px 32px; }
.checklist.is-3col { grid-template-columns: repeat(3, 1fr); gap: 14px 32px; }
@media (max-width: 760px) { .checklist.is-2col, .checklist.is-3col { grid-template-columns: 1fr; } }
.section-dark .checklist li::before, .panel .checklist li::before { background: #fff; }

.pills { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pills li { padding: 10px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--ink); box-shadow: var(--shadow-sm); transition: border-color .2s, color .2s, transform .2s; }
.pills li:hover { border-color: var(--blue-400); color: var(--blue-600); transform: translateY(-2px); }

/* ---------- Revenue cycle ---------- */
.cycle > .wp-block-group__inner-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: none; position: relative; }
.cycle-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 30px; box-shadow: var(--shadow-sm); }
.cycle-card::before { content: ""; position: absolute; top: 0; left: 30px; right: 30px; height: 4px; border-radius: 0 0 4px 4px; background: linear-gradient(90deg, var(--blue-600), var(--blue-400)); }
.cycle-card:nth-child(3)::before { background: linear-gradient(90deg, var(--amber-500), var(--amber-400)); }
.cycle-card:not(:last-child)::after { content: ""; position: absolute; right: -19px; top: 50%; width: 14px; height: 14px; z-index: 2; background: var(--blue-400); -webkit-mask: var(--i-arrow) center / contain no-repeat; mask: var(--i-arrow) center / contain no-repeat; }
.cycle-stage { font-family: var(--font-head); font-weight: 800; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 8px; }
.cycle-title { font-size: 1.3rem; }
.cycle-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 2px; }
.cycle-list li { padding: 10px 0; border-top: 1px dashed var(--line-strong); font-size: .97rem; }
.cycle-list a { color: var(--ink); font-weight: 600; text-decoration: none; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.cycle-list a::after { content: ""; width: 14px; height: 14px; flex-shrink: 0; background: var(--blue-600); -webkit-mask: var(--i-arrow) center / contain no-repeat; mask: var(--i-arrow) center / contain no-repeat; transition: transform .2s; }
.cycle-list a:hover { color: var(--blue-600); }
.cycle-list a:hover::after { transform: translateX(3px); }
@media (max-width: 900px) {
	.cycle > .wp-block-group__inner-container { grid-template-columns: 1fr; }
	.cycle-card:not(:last-child)::after { right: 50%; top: auto; bottom: -19px; transform: rotate(90deg); }
}

/* ---------- Steps ---------- */
.steps > .wp-block-group__inner-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.step { position: relative; counter-increment: step; padding: 28px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step::before {
	content: counter(step, decimal-leading-zero); display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 18px;
	border-radius: 50%; background: var(--navy-900); color: var(--amber-400); font-family: var(--font-head); font-weight: 800; font-size: .95rem;
}
.step-title { font-size: 1.1rem; margin-bottom: .4em; }
.step p { margin: 0; font-size: .96rem; color: var(--muted); }
.is-steps .steps > .wp-block-group__inner-container { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .is-steps .steps > .wp-block-group__inner-container { grid-template-columns: 1fr; } }

/* ---------- Panel ---------- */
.panel { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 60px); background: linear-gradient(135deg, var(--blue-50), #f7fbff 60%, var(--amber-100)); border: 1px solid var(--blue-100); }
.panel.is-center { text-align: center; }
.panel.is-center .wp-block-buttons { justify-content: center; }
.panel .section-title { max-width: 26ch; }
.panel.is-center .section-title { margin-inline: auto; }

/* ---------- Quote ---------- */
.quote { max-width: 880px; margin-inline: auto; text-align: center; }
.quote-mark { width: 64px; height: auto; margin: 0 auto 24px; filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .3)); }
.quote-text { font-family: var(--font-head); font-size: clamp(1.3rem, 2.5vw, 1.8rem); line-height: 1.45; font-weight: 600; color: #fff; letter-spacing: -.01em; }
.quote-sub { color: #c9d6e8; font-size: 1.08rem; max-width: 62ch; margin: 0 auto 1.6em; }
.quote-cite { color: #9fb2cc; font-size: .98rem; margin: 0; }
.quote-cite strong { color: var(--amber-400); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq > .wp-block-group__inner-container { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .2s, box-shadow .2s; }
.faq-item[open] { border-color: var(--blue-100); box-shadow: var(--shadow); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--blue-50) var(--i-plus) center / 12px no-repeat; transition: transform .25s var(--ease), background-color .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); background-color: var(--blue-100); }
.faq-item > p { padding: 0 24px 22px; margin: 0; color: var(--muted); }

/* ---------- Timeline ---------- */
.timeline > .wp-block-group__inner-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.timeline > .wp-block-group__inner-container::before { content: ""; position: absolute; left: 0; right: 0; top: 23px; height: 2px; background: linear-gradient(90deg, var(--blue-600), var(--amber-400)); }
.tl-item { position: relative; padding-top: 64px; }
.tl-item::before { content: ""; position: absolute; top: 14px; left: 0; width: 20px; height: 20px; border-radius: 50%; background: #fff; border: 4px solid var(--blue-600); }
.tl-item:last-child::before { border-color: var(--amber-400); }
.tl-year { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--navy-900); margin-bottom: 6px; letter-spacing: -.02em; }
.tl-title { font-size: 1.08rem; }
.tl-item p:last-child { font-size: .96rem; color: var(--muted); }
@media (max-width: 900px) {
	.timeline > .wp-block-group__inner-container { grid-template-columns: 1fr; gap: 8px; padding-left: 36px; }
	.timeline > .wp-block-group__inner-container::before { left: 9px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: linear-gradient(180deg, var(--blue-600), var(--amber-400)); }
	.tl-item { padding-top: 0; padding-bottom: 20px; }
	.tl-item::before { left: -36px; top: 6px; }
}

/* ---------- Mission / vision ---------- */
.mv { align-items: stretch !important; }
.mv .wp-block-column { display: flex; }
.mv-card { flex: 1; padding: clamp(28px, 4vw, 44px); border-radius: var(--radius-lg); background: var(--bg-soft); border: 1px solid var(--line); }
.mv .wp-block-column:first-child .mv-card { background: linear-gradient(160deg, var(--navy-900), var(--navy-800)); border: 0; }
.mv .wp-block-column:first-child .mv-card .mv-title { color: #fff; }
.mv-title { font-size: clamp(1.35rem, 2.4vw, 1.75rem); line-height: 1.3; margin: 0; }
.mv-card p:last-child { font-size: 1.05rem; margin: 0; }

/* ---------- Specialties ---------- */
.spec-grid > .wp-block-group__inner-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .spec-grid > .wp-block-group__inner-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .spec-grid > .wp-block-group__inner-container { grid-template-columns: 1fr; } }
.spec { position: relative; padding: 22px 22px 20px 64px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.spec::before { content: ""; position: absolute; left: 20px; top: 22px; width: 30px; height: 30px; border-radius: 9px; background: var(--blue-50) var(--i-plus-blue) center / 14px no-repeat; }
.spec:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-100); }
.spec-title { font-size: 1.02rem; margin: 0 0 4px; }
.spec-tag { margin: 0; font-size: .82rem; color: var(--muted); }

/* ---------- Tables (pricing) ---------- */
.mts-table { margin: 0; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.mts-table table { width: 100%; border-collapse: collapse; min-width: 560px; table-layout: auto; font-size: .96rem; }
.price-cols .mts-table table { min-width: 0; }
.mts-table th, .mts-table td { padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--line); }
.mts-table th { background: var(--navy-900); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .9rem; line-height: 1.3; }
.mts-table th small { font-weight: 500; color: #9fb2cc; font-size: .78rem; }
.mts-table th:first-child, .mts-table td:first-child { text-align: left; }
.mts-table td:first-child { font-weight: 600; color: var(--ink); }
.mts-table tbody tr:last-child td { border-bottom: 0; }
.mts-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.mts-table td:not(:first-child) { font-family: var(--font-head); font-weight: 700; color: var(--navy-800); }
.mts-table th, .mts-table td { overflow-wrap: normal; word-break: normal; hyphens: none; }
@media (max-width: 760px) {
	.mts-table { position: relative; -webkit-overflow-scrolling: touch; }
	.mts-table table { min-width: 640px; font-size: .9rem; }
	.price-cols .mts-table table { min-width: 0; }
	.mts-table th, .mts-table td { padding: 13px 12px; white-space: nowrap; }
	.mts-table td:first-child, .mts-table th:first-child { position: sticky; left: 0; z-index: 1; white-space: normal; min-width: 128px; box-shadow: 1px 0 0 var(--line); }
	.mts-table th:first-child { background: var(--navy-900); }
	.mts-table td:first-child { background: #fff; }
	.mts-table tbody tr:nth-child(even) td:first-child { background: var(--bg-soft); }
	.mts-table:not(.price-cols .mts-table)::before { content: "Swipe to see all turnaround options →"; position: sticky; left: 0; display: block; padding: 10px 14px; font-size: .82rem; font-weight: 600; color: var(--blue-600); background: var(--blue-50); border-bottom: 1px solid var(--line); }
}
.price-title { font-size: 1.4rem; }
.price-cols { align-items: stretch !important; }

/* ---------- Contact & forms ---------- */
.contact-cols > .wp-block-column:first-child { flex-basis: 60%; }
.contact-cols > .wp-block-column:last-child { flex-basis: 40%; display: grid; gap: 20px; position: sticky; top: 110px; }
.audit-cols > .wp-block-column:first-child { flex-basis: 48%; }
.audit-cols > .wp-block-column:last-child { flex-basis: 52%; position: sticky; top: 110px; }
@media (max-width: 900px) { .contact-cols > .wp-block-column:last-child, .audit-cols > .wp-block-column:last-child { position: static; } }
.contact-card, .form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 36px); box-shadow: var(--shadow); }
.contact-card.is-dark { background: linear-gradient(160deg, var(--navy-900), var(--navy-800)); border: 0; color: #c9d6e8; }
.contact-card.is-dark .card-title { color: #fff; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.contact-list li { position: relative; padding-left: 56px; min-height: 42px; line-height: 1.5; color: var(--ink); }
.contact-list li.ico::before { position: absolute; left: 0; top: 0; width: 42px; height: 42px; margin: 0; border-radius: 12px; }
.contact-list li.ico::after { top: 11px; left: 11px; width: 20px; height: 20px; }
.contact-list span { display: block; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.contact-list a { font-weight: 600; text-decoration: none; }
.section-map { padding-top: 0 !important; }
.map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map iframe { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(.2); }

.mts-form { margin-top: 8px; }
.form-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.is-wide { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: minmax(0, 1fr); } }
.field label { font-size: .9rem; font-weight: 600; color: var(--ink); }
.req { color: var(--danger); }
.field input, .field select, .field textarea {
	width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: #fff;
	border: 1.5px solid var(--line-strong); border-radius: 12px; padding: 13px 15px; transition: border-color .2s, box-shadow .2s;
}
.field select { appearance: none; background: #fff var(--i-caret) right 14px center / 14px no-repeat; padding-right: 40px; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(26, 122, 224, .15); }
.field .is-invalid, .field input:user-invalid, .field textarea:user-invalid { border-color: var(--danger); }
.hp { position: absolute !important; left: -9999px !important; }
.form-privacy { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--muted); background: var(--bg-soft); border-radius: 12px; padding: 12px 14px; margin: 20px 0; }
.form-privacy .icon { color: var(--blue-600); margin-top: 2px; }
.mts-form .btn { width: 100%; }
.form-notice { border-radius: 12px; padding: 14px 16px; margin-bottom: 18px; font-size: .95rem; }
.form-notice.is-success { background: #e7f7f0; color: #0b5c40; border: 1px solid #b7e6d2; }
.form-notice.is-error { background: #fdeeee; color: #8a1f1f; border: 1px solid #f2c4c4; }

/* ---------- Latest posts & blog ---------- */
.latest.wp-block-latest-posts { list-style: none; padding: 0; margin: 0; display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .latest.wp-block-latest-posts { grid-template-columns: 1fr; } }
.latest.wp-block-latest-posts li { width: auto !important; margin: 0 !important; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s; }
.latest.wp-block-latest-posts li:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.latest .wp-block-latest-posts__post-title { order: 2; font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; line-height: 1.35; color: var(--ink); text-decoration: none; margin-bottom: 10px; }
.latest .wp-block-latest-posts__post-title:hover { color: var(--blue-600); }
.latest .wp-block-latest-posts__post-date { order: 1; font-size: .82rem; color: var(--muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.latest .wp-block-latest-posts__post-excerpt { order: 3; margin: 0; font-size: .95rem; color: var(--muted); }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 1000px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card-media img, .post-card-placeholder { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post-card-placeholder { display: grid; place-items: center; background: linear-gradient(135deg, var(--navy-900), var(--blue-600)); }
.post-card-placeholder img { width: 64px; aspect-ratio: auto; opacity: .95; }
.post-card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-card-body p { font-size: .95rem; color: var(--muted); }
.post-card-body .link-arrow { margin-top: auto; }
.post-card-title { font-size: 1.15rem; line-height: 1.35; }
.post-card-title a { color: var(--ink); text-decoration: none; }
.post-card-title a:hover { color: var(--blue-600); }
.post-meta { font-size: .85rem; color: var(--muted); margin-bottom: 8px; }
.nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.nav-links .page-numbers { padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line); text-decoration: none; color: var(--ink); font-weight: 600; }
.nav-links .page-numbers.current { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.section-title + .post-grid { margin-top: 32px; }

.prose { font-size: 1.08rem; line-height: 1.8; }
.prose h2 { font-size: 1.7rem; margin-top: 1.8em; }
.prose h3 { font-size: 1.3rem; margin-top: 1.6em; }
.prose img { border-radius: var(--radius); }
.prose blockquote { margin: 1.8em 0; padding: 4px 0 4px 24px; border-left: 4px solid var(--amber-400); font-size: 1.15rem; color: var(--ink); }
.article-image { margin: 0 0 2em; }

.notfound { text-align: center; padding-block: clamp(80px, 12vw, 160px); }
.notfound .eyebrow { justify-content: center; }
.notfound-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 96px) 0; background: radial-gradient(800px 360px at 90% 0%, rgba(26, 122, 224, .55), transparent 60%), linear-gradient(135deg, var(--navy-800), var(--navy-950)); color: #c9d6e8; }
.cta-band::after { content: ""; position: absolute; right: -120px; bottom: -160px; width: 420px; height: 420px; border-radius: 50%; border: 60px solid rgba(255, 198, 41, .08); }
.cta-band-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr auto; gap: 40px; align-items: center; }
.cta-band h2 { color: #fff; max-width: 22ch; }
.cta-band p { max-width: 60ch; margin: 0; }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 900px) { .cta-band-inner { grid-template-columns: 1fr; } .cta-band-actions { flex-direction: row; flex-wrap: wrap; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: #9fb2cc; font-size: .95rem; padding-top: clamp(56px, 7vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 56px; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 40px; width: auto; margin-bottom: 20px; }
.footer-brand p { max-width: 38ch; }
.badges { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.badges li { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 999px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); color: #dbe5f3; font-size: .82rem; font-weight: 600; }
.badges .icon { color: var(--amber-400); }
.footer-title { color: #fff; font-size: .95rem; letter-spacing: .02em; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a, .footer-contact a { color: #b8c7dc; text-decoration: none; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .icon { color: var(--amber-400); margin-top: 3px; }
.footer-contact address { font-style: normal; }
.social { list-style: none; padding: 0; margin: 20px 0 0; display: flex; gap: 10px; }
.social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .08); color: #fff; }
.social a:hover { background: var(--blue-600); color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-block: 24px; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .85rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #b8c7dc; }

/* ---------- Touch targets ---------- */
@media (max-width: 1060px) {
	.topbar-contact a { min-height: 40px; }
	.footer-links { gap: 0; }
	.footer-links a, .footer-contact a { display: inline-flex; align-items: center; min-height: 44px; }
	.footer-contact { gap: 4px; }
	.footer-contact li { align-items: center; }
	.link-arrow, .card-link a { min-height: 44px; }
	.cycle-list li { padding: 0; }
	.cycle-list li:not(:has(a)) { padding: 12px 0; }
	.cycle-list a { min-height: 48px; }
	.latest .wp-block-latest-posts__post-title { padding-block: 8px; }
	.contact-list a { display: inline-block; padding-block: 8px; }
	.breadcrumbs a { display: inline-block; padding-block: 8px; }
	.brand { display: inline-flex; align-items: center; min-height: 44px; }
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { display: none; }
@media (max-width: 760px) {
	.sticky-cta { position: fixed; z-index: 90; left: 16px; right: 16px; bottom: 16px; display: flex; justify-content: center; align-items: center; gap: 8px; padding: 15px 20px; border-radius: 999px; background: var(--amber-400); color: var(--navy-950); font-family: var(--font-head); font-weight: 800; text-decoration: none; box-shadow: 0 14px 30px -10px rgba(5, 20, 40, .5); transform: translateY(140%); transition: transform .35s var(--ease); }
	.sticky-cta.is-visible { transform: none; }
	.sticky-cta:hover { color: var(--navy-950); }
	.site-footer { padding-bottom: 80px; }
	.nav-open .sticky-cta { display: none; }
}

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Icon library (SVG masks) ---------- */
:root {
	--i-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 5l7 7-7 7'/%3E%3C/svg%3E");
	--i-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
	--i-check-white: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
	--i-check-circle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.2-4-4 1.4-1.4 2.6 2.6 5.6-5.6 1.4 1.4z'/%3E%3C/svg%3E");
	--i-plus: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b5cc0' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
	--i-plus-blue: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5b400' d='M9 3h6v6h6v6h-6v6H9v-6H3V9h6z'/%3E%3C/svg%3E");
	--i-caret: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6b80' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	--i-shield: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
}
.ico-check { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 11l3 3L22 4'/%3E%3Cpath d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/%3E%3C/svg%3E"); }
.ico-file { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6M9 15l2 2 4-4'/%3E%3C/svg%3E"); }
.ico-badge { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='6'/%3E%3Cpath d='M15.5 13.5 17 22l-5-3-5 3 1.5-8.5'/%3E%3C/svg%3E"); }
.ico-code { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m16 18 6-6-6-6M8 6l-6 6 6 6'/%3E%3C/svg%3E"); }
.ico-wallet { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='5' width='20' height='14' rx='2'/%3E%3Cpath d='M2 10h20M6 15h4'/%3E%3C/svg%3E"); }
.ico-refresh { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 0 1-15 6.7L3 16M3 12a9 9 0 0 1 15-6.7L21 8'/%3E%3Cpath d='M21 3v5h-5M3 21v-5h5'/%3E%3C/svg%3E"); }
.ico-user { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E"); }
.ico-shield { --ico: var(--i-shield); }
.ico-layers { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 2 10 5-10 5L2 7z'/%3E%3Cpath d='m2 17 10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E"); }
.ico-chart { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='m7 15 4-4 3 3 6-6'/%3E%3C/svg%3E"); }
.ico-calendar { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18M9 16l2 2 4-4'/%3E%3C/svg%3E"); }
.ico-clock { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E"); }
.ico-heart { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 14c1.5-1.5 3-3.2 3-5.5A5.5 5.5 0 0 0 16.5 3c-1.8 0-3 .5-4.5 2-1.5-1.5-2.7-2-4.5-2A5.5 5.5 0 0 0 2 8.5c0 2.3 1.5 4 3 5.5l7 7z'/%3E%3Cpath d='M3.2 12H9l1.5-3 3 6 1.5-3h5.8'/%3E%3C/svg%3E"); }
.ico-scale { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v18M7 21h10M5 7h14M5 7l-3 7a3 3 0 0 0 6 0zM19 7l-3 7a3 3 0 0 0 6 0z'/%3E%3C/svg%3E"); }
.ico-book { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 10 12 5 2 10l10 5z'/%3E%3Cpath d='M6 12v5c3 3 9 3 12 0v-5'/%3E%3C/svg%3E"); }
.ico-brief { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='20' height='14' rx='2'/%3E%3Cpath d='M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16'/%3E%3C/svg%3E"); }
.ico-mic { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='9' y='2' width='6' height='12' rx='3'/%3E%3Cpath d='M19 10v1a7 7 0 0 1-14 0v-1M12 18v4M8 22h8'/%3E%3C/svg%3E"); }
.ico-wave { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 10v4M6 6v12M10 3v18M14 8v8M18 5v14M22 10v4'/%3E%3C/svg%3E"); }
.ico-lock { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E"); }
.ico-server { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='8' rx='2'/%3E%3Crect x='2' y='14' width='20' height='8' rx='2'/%3E%3Cpath d='M6 6h.01M6 18h.01'/%3E%3C/svg%3E"); }
.ico-phone { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.8 19.8 0 0 1-8.6-3.1 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.4c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2z'/%3E%3C/svg%3E"); }
.ico-mail { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-10 6L2 7'/%3E%3C/svg%3E"); }
.ico-pin { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }

/* ---------- Block editor parity ---------- */
.editor-styles-wrapper { font-family: var(--font-body); color: var(--text); }
.editor-styles-wrapper .hero, .editor-styles-wrapper .section-dark { color: #c9d6e8; }
