/* =============================================================
 *  OCBW · Design System
 *  ----
 *  1. Tokens (CSS variables)
 *  2. Reset & base
 *  3. Typography utilities
 *  4. Layout (container, sections, aurora)
 *  5. Buttons, eyebrows, prose
 *  6. Header & nav (sticky pill)
 *  7. Mobile drawer
 *  8. Hero (home + page)
 *  9. Cards (service / niche / pricing / post)
 * 10. Process, stats, marquee, testimonials
 * 11. CTA banner, footer
 * 12. Contact, FAQ, forms
 * 13. About, pricing, prose layouts
 * 14. 404, search, comments, pagination
 * 15. Reveal motion + helpers
 * 16. Responsive
 * ============================================================ */


/* 1. ---------------------------------------------------------- TOKENS */
:root {
	/* Brand */
	--green-50:  #ECFDF5;
	--green-100: #D1FAE5;
	--green-200: #A7F3D0;
	--green-300: #6EE7B7;
	--green-400: #34D399;
	--green-500: #10B981;
	--green-600: #0E9F6E;
	--green-700: #047857;
	--green-800: #065F46;
	--green-900: #064E3B;

	/* Neutrals — mint-tinted whites & charcoals */
	--white: #FFFFFF;
	--off-white: #FAFBF9;
	--mint-50: #F4F8F5;
	--mint-100: #EDF2EE;
	--border: #E3EAE5;
	--border-strong: #C7D3CB;

	--ink-900: #0B1612;   /* near-black with a green undertone */
	--ink-700: #2C3A33;
	--ink-500: #4B5A52;
	--ink-400: #6B7A72;
	--ink-300: #8C9890;

	/* Dark surface */
	--dark-bg:   #0B1612;
	--dark-bg-2: #102017;
	--dark-line: rgba(255,255,255,.08);
	--dark-text: #C9D6CE;
	--dark-text-soft: #8FA499;

	/* Gradients */
	--grad-brand:    linear-gradient(135deg, #34D399 0%, #10B981 45%, #047857 100%);
	--grad-brand-soft: linear-gradient(135deg, rgba(52,211,153,.16) 0%, rgba(4,120,87,.10) 100%);
	--grad-text:     linear-gradient(135deg, #10B981 0%, #047857 100%);

	/* Shadows */
	--shadow-1: 0 1px 2px rgba(11,22,18,.04), 0 1px 1px rgba(11,22,18,.03);
	--shadow-2: 0 8px 24px -8px rgba(11,22,18,.10), 0 2px 6px rgba(11,22,18,.04);
	--shadow-3: 0 24px 60px -20px rgba(11,22,18,.18), 0 8px 24px -8px rgba(11,22,18,.08);
	--shadow-glow: 0 18px 60px -18px rgba(16,185,129,.35);

	/* Radii */
	--r-sm: 10px;
	--r-md: 16px;
	--r-lg: 22px;
	--r-xl: 28px;
	--r-pill: 999px;

	/* Type */
	--font-display: "Sora", 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;
	--font-mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	--lh-tight: 1.08;
	--lh-snug:  1.22;
	--lh-body:  1.65;

	/* Layout */
	--container: 1200px;
	--container-narrow: 820px;
	--container-prose: 1080px;
	--container-wide: 1400px;
	--gutter: clamp(20px, 4vw, 40px);
	--section-y: clamp(72px, 9vw, 140px);
	--header-h: 84px;

	--ease: cubic-bezier(.2,.7,.2,1);
	--dur: 380ms;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration:.001ms !important; transition-duration:.001ms !important; }
}


/* 2. ---------------------------------------------------------- RESET & BASE */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: var(--lh-body);
	color: var(--ink-900);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--green-700); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
hr { border: 0; border-top: 1px solid var(--border); margin: 2rem 0; }
::selection { background: var(--green-200); color: var(--ink-900); }

.skip-link {
	position: absolute; left: -9999px; top: 12px;
	background: var(--ink-900); color: #fff; padding: 10px 14px; border-radius: 8px; z-index: 9999;
}
.skip-link:focus { left: 12px; }


/* 3. ---------------------------------------------------------- TYPOGRAPHY */
.display {
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: var(--lh-tight);
	color: var(--ink-900);
	margin: 0;
}
h1.display, .h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 800; }
h2.display, .h2 { font-size: clamp(1.9rem, 3.6vw, 3.1rem); }
h3.display, .h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: var(--lh-snug); }

.lede { font-size: clamp(1.05rem, 1.4vw, 1.18rem); color: var(--ink-500); line-height: 1.6; max-width: 62ch; margin: 1rem 0 0; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--green-700);
	background: var(--green-50);
	padding: 8px 14px;
	border-radius: var(--r-pill);
	border: 1px solid rgba(16,185,129,.18);
	margin: 0 0 1.2rem;
	font-weight: 500;
}
.eyebrow .dot {
	width: 8px; height: 8px; border-radius: 50%; background: var(--green-500);
	box-shadow: 0 0 0 4px rgba(16,185,129,.15);
	flex: 0 0 8px;
}
.eyebrow--light { color: #BFEFD9; background: rgba(16,185,129,.10); border-color: rgba(16,185,129,.22); }
.eyebrow--light .dot { background: var(--green-300); box-shadow: 0 0 0 4px rgba(52,211,153,.18); }

.grad-text {
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.screen-reader-text {
	position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden;
}


/* 4. ---------------------------------------------------------- LAYOUT */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.container--prose  { max-width: var(--container-prose); }
.container--wide   { max-width: var(--container-wide); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(40px, 6vw, 80px); }
.section--narrow { padding-block: clamp(48px, 6vw, 96px); }
.section--surface { background: var(--off-white); }
.section--dark {
	background: radial-gradient(120% 120% at 0% 0%, #0F2118 0%, var(--dark-bg) 60%);
	color: var(--dark-text);
	overflow: hidden;
}
.section--dark .display { color: #fff; }
.section--dark .lede { color: var(--dark-text-soft); }

.section__head { max-width: 760px; margin: 0 0 clamp(40px, 5vw, 70px); }
.section__head--center { text-align: center; margin-inline: auto; }
.section__head--center .eyebrow { margin-inline: auto; }
.section__head--center .lede { margin-inline: auto; }
.section__head--row {
	max-width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 64px);
	align-items: end;
}
.section__head--row .lede { margin-top: 0; }
@media (max-width: 800px) {
	.section__head--row { grid-template-columns: 1fr; }
}

/* Aurora background blobs */
.aurora {
	position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.aurora span {
	position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55;
	will-change: transform;
}
.aurora__a { width: 520px; height: 520px; left: -120px; top: -120px; background: radial-gradient(circle, var(--green-300), transparent 60%); }
.aurora__b { width: 460px; height: 460px; right: -120px; top: 30%;     background: radial-gradient(circle, var(--green-500), transparent 60%); opacity: .35; }
.aurora__c { width: 600px; height: 600px; left: 35%; bottom: -260px;   background: radial-gradient(circle, var(--green-400), transparent 60%); opacity: .25; }
.section--dark .aurora span { opacity: .25; }


/* 5. ---------------------------------------------------------- BUTTONS, PROSE */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: var(--r-pill);
	font-weight: 600;
	font-size: .98rem;
	letter-spacing: -0.005em;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
	white-space: nowrap;
	will-change: transform;
}
.btn__arrow { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary {
	color: #fff;
	background: var(--grad-brand);
	box-shadow: var(--shadow-glow), 0 1px 0 rgba(255,255,255,.2) inset;
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 22px 50px -12px rgba(16,185,129,.45); color: #fff; }

.btn--ghost {
	color: var(--ink-900);
	background: var(--white);
	border: 1px solid var(--border-strong);
	box-shadow: var(--shadow-1);
}
.btn--ghost:hover { border-color: var(--green-600); color: var(--green-700); transform: translateY(-1px); }

.btn--dark {
	color: #fff;
	background: var(--ink-900);
	border: 1px solid rgba(255,255,255,.08);
}
.btn--dark:hover { background: #000; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }


/* Prose / page content (the_content) */
.prose {
	font-size: 1.05rem;
	color: var(--ink-700);
	line-height: 1.75;
}
.prose > * + * { margin-top: 1.1em; }
.prose h1, .prose h2, .prose h3, .prose h4 {
	font-family: var(--font-display);
	color: var(--ink-900);
	letter-spacing: -0.015em;
	line-height: 1.2;
	margin-top: 2.2em;
}
.prose h1 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.prose h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.prose h3 { font-size: clamp(1.18rem, 1.8vw, 1.45rem); }
.prose h4 { font-size: 1.1rem; }
.prose p { margin: 0; }
.prose a { color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; text-decoration-color: rgba(4,120,87,.35); }
.prose a:hover { text-decoration-color: var(--green-700); }
.prose strong { color: var(--ink-900); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li + li { margin-top: .5em; }
.prose blockquote {
	margin: 2em 0; padding: 1em 1.4em;
	border-left: 4px solid var(--green-500);
	background: var(--green-50);
	border-radius: 0 var(--r-md) var(--r-md) 0;
	font-style: italic; color: var(--ink-700);
}
.prose img, .prose figure { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-2); }
.prose__feature { margin: 0 0 2em; }
.prose code { background: var(--mint-100); padding: .15em .4em; border-radius: 6px; font-family: var(--font-mono); font-size: .9em; }
.prose pre { background: var(--ink-900); color: #fff; padding: 1.2em; border-radius: var(--r-md); overflow: auto; }
.prose hr { margin: 3em 0; }
.prose--two-col { columns: 2; column-gap: clamp(24px, 4vw, 56px); }

/* Plugin / app-shell pages (invoices, forms, dashboards, store, etc.).
   Deliberately minimal — no list bullets, no narrow column, no inherited
   editorial typography — so plugin CSS can render its UI as designed.

   `display: flow-root` makes the wrapper a block-formatting context so it
   contains any floated children the plugin ships (e.g. WP-Invoice's
   `.wpi_left_col { float: left }`). Without this, the floated form escapes
   the article and the next section (CTA banner) wraps next to it. */
.page-app-shell {
	color: var(--ink-700);
	line-height: 1.55;
	display: flow-root;
}
.page-app-shell ul, .page-app-shell ol { list-style: none; padding-left: 0; margin: 0; }
.page-app-shell li { margin: 0; }
.page-app-shell table { width: 100%; border-collapse: collapse; }
.page-app-shell a { color: var(--green-700); }
.page-app-shell a:hover { color: var(--green-600); }
/* Allow WP standard list-style classes to still render bullets if the plugin
   author explicitly opts in via inline classes. */
.page-app-shell .has-bullet-list ul,
.page-app-shell ul.list-disc { list-style: disc; padding-left: 1.4em; }
.page-app-shell ol.list-decimal { list-style: decimal; padding-left: 1.4em; }

/* ── WP-Invoice: parent layout (modern checkout grid) ───────────────────
   Plugin ships two floated 425px columns. We swap to a CSS grid: invoice
   summary on the left, customer form on the right. Stacks on narrow
   viewports; both columns become "cards" so they read as distinct sections. */
.page-app-shell .wpi_invoice_form,
.page-app-shell .wpi_payment_form,
.page-app-shell #invoice_page {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	max-width: 1080px;
	margin: 0 auto;
	align-items: start;
}
@media (min-width: 920px) {
	.page-app-shell .wpi_invoice_form,
	.page-app-shell .wpi_payment_form,
	.page-app-shell #invoice_page {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
		gap: 28px;
	}
}
.page-app-shell .wpi_left_col,
.page-app-shell .wpi_right_col {
	width: auto;
	max-width: 100%;
	float: none;
	margin: 0;
	min-width: 0;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	padding: clamp(20px, 3vw, 32px);
	box-shadow: var(--shadow-1);
}
@media (min-width: 920px) {
	/* Sticky invoice summary on wide screens — feels modern and helpful. */
	.page-app-shell .wpi_left_col {
		position: sticky;
		top: calc(var(--header-h) + 24px);
	}
}

/* ── WP-Invoice: greeting + intro ────────────────────────────────────── */
.page-app-shell .wpi_greeting {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.25rem, 2.2vw, 1.55rem);
	color: var(--ink-900);
	margin: 0 0 6px;
	line-height: 1.2;
}
.page-app-shell .wpi_greeting a { color: var(--green-700); text-decoration: none; }
.page-app-shell .wpi_greeting a:hover { text-decoration: underline; }
.page-app-shell .invoice_description { color: var(--ink-700); }
.page-app-shell .invoice_description p { margin: 0 0 6px; }
.page-app-shell .invoice_top_message,
.page-app-shell .invoice_description_custom { margin: 0; }

/* ── WP-Invoice: itemized table ──────────────────────────────────────── */
.page-app-shell .wpi_itemized_table { margin: 18px 0 0; }
.page-app-shell .wp_invoice_itemized_table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	overflow: hidden;
	background: #fff;
	margin: 0;
}
.page-app-shell .wp_invoice_itemized_table thead th {
	background: var(--off-white);
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--ink-500);
	text-align: left;
	padding: 12px 16px;
	font-size: .78rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--border);
}
.page-app-shell .wp_invoice_itemized_table thead th.cost_column { text-align: right; }
.page-app-shell .wp_invoice_itemized_table tbody td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--border);
	color: var(--ink-900);
	vertical-align: top;
}
.page-app-shell .wp_invoice_itemized_table tbody tr:last-child td { border-bottom: 1px solid var(--border); }
.page-app-shell .wp_invoice_itemized_table .wpi_line_item_title {
	font-weight: 600;
	color: var(--ink-900);
}
.page-app-shell .wp_invoice_itemized_table .description_text {
	font-size: .9rem;
	color: var(--ink-500);
	margin-top: 2px;
}
.page-app-shell .wp_invoice_itemized_table .cost_column,
.page-app-shell .wp_invoice_itemized_table .wpi_money {
	text-align: right;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}
.page-app-shell .wp_invoice_itemized_table tfoot td {
	padding: 12px 16px;
	color: var(--ink-700);
	background: var(--off-white);
	border-bottom: 1px solid var(--border);
}
.page-app-shell .wp_invoice_itemized_table tfoot tr:last-child td { border-bottom: 0; }
.page-app-shell .wp_invoice_itemized_table tfoot .bottom_line_title {
	text-align: right;
	font-weight: 600;
}
.page-app-shell .wp_invoice_itemized_table tfoot tr:last-child td {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--ink-900);
	padding: 16px;
	background: linear-gradient(180deg, var(--mint-100), #fff);
}
.page-app-shell .wp_invoice_itemized_table tfoot tr:last-child .wpi_money { color: var(--green-700); }

/* ── WP-Invoice: customer info form ──────────────────────────────────── */
.page-app-shell .wpi_checkout_block {
	margin: 0;
	display: grid;
	gap: 14px;
}
.page-app-shell .wpi_checkout_block li.section_title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--ink-900);
	border-top: 0;
	padding: 0 0 4px;
	margin: 0;
	clear: both;
	letter-spacing: -.01em;
}
.page-app-shell .wpi_checkout_block li.section_title + .wpi_checkout_row { margin-top: 0; }
.page-app-shell .wpi_checkout_row { margin: 0; clear: both; min-height: 0; }
.page-app-shell .wpi_payment_form li { min-height: 0; clear: none; }

.page-app-shell .control-group {
	display: block;
}
.page-app-shell .control-group .control-label,
.page-app-shell .wpi_payment_form li label {
	display: block;
	float: none;
	position: static;
	top: auto;
	width: auto;
	font-weight: 500;
	font-size: .85rem;
	color: var(--ink-500);
	margin: 0 0 6px;
	letter-spacing: .01em;
}
/* Multi-input rows (e.g. phone area-code split) — flex inputs side-by-side. */
.page-app-shell .control-group .controls {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.page-app-shell .control-group .controls > input,
.page-app-shell .control-group .controls > select {
	flex: 1 1 200px;
	min-width: 0;
}

/* ── WP-Invoice: text inputs + selects ───────────────────────────────── */
.page-app-shell .text-input,
.page-app-shell .wpi_payment_form input[type="text"],
.page-app-shell .wpi_payment_form input[type="email"],
.page-app-shell .wpi_payment_form input[type="tel"],
.page-app-shell .wpi_payment_form input[type="number"],
.page-app-shell .wpi_payment_form input[type="password"],
.page-app-shell .wpi_payment_form select,
.page-app-shell .wpi_payment_form textarea {
	width: 100%;
	max-width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--border);
	border-radius: 10px;
	background: #fff;
	color: var(--ink-900);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.4;
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
	margin: 0;
}
.page-app-shell .text-input:focus,
.page-app-shell .wpi_payment_form input:focus,
.page-app-shell .wpi_payment_form select:focus,
.page-app-shell .wpi_payment_form textarea:focus {
	outline: none;
	border-color: var(--green-500);
	box-shadow: 0 0 0 3px rgba(16, 185, 129, .2);
}
.page-app-shell .text-input.small {
	flex: 0 0 auto;
	width: 80px;
	max-width: 80px;
}

/* ── WP-Invoice: the big "Process Payment" button ────────────────────── */
.page-app-shell #wp_invoice_process_wait {
	margin: 24px 0 0;
	padding-top: 20px;
	border-top: 1px solid var(--border);
	float: none;
	display: block;
}
.page-app-shell #wp_invoice_process_wait > li { display: block; clear: both; margin: 0; min-height: 0; }
.page-app-shell #wp_invoice_process_wait .wpi-control-group,
.page-app-shell #wp_invoice_process_wait .controls { display: block; }
.page-app-shell .submit_button,
.page-app-shell #cc_pay_button,
.page-app-shell .wpi_checkout_process_payment,
.page-app-shell .paypal_button,
.page-app-shell .wpi_payment_form button[type="submit"] {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 32px;
	min-height: 56px;
	border: 0;
	border-radius: var(--r-pill);
	background: var(--grad-brand);
	color: #fff !important;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.08rem;
	letter-spacing: .01em;
	cursor: pointer;
	box-shadow:
		0 14px 30px -12px rgba(4, 120, 87, .55),
		0 6px 14px -6px rgba(16, 185, 129, .45),
		inset 0 1px 0 rgba(255, 255, 255, .25);
	transition:
		transform .25s var(--ease),
		box-shadow .25s var(--ease),
		filter .25s var(--ease);
	text-shadow: 0 1px 1px rgba(0, 0, 0, .15);
	margin: 0;
}
.page-app-shell .submit_button:hover,
.page-app-shell #cc_pay_button:hover,
.page-app-shell .wpi_checkout_process_payment:hover,
.page-app-shell .paypal_button:hover,
.page-app-shell button[type="submit"]:hover {
	transform: translateY(-2px);
	filter: brightness(1.04);
	box-shadow:
		0 22px 40px -14px rgba(4, 120, 87, .65),
		0 10px 18px -8px rgba(16, 185, 129, .55),
		inset 0 1px 0 rgba(255, 255, 255, .3);
}
.page-app-shell .submit_button:active,
.page-app-shell #cc_pay_button:active,
.page-app-shell button[type="submit"]:active { transform: translateY(0); }
.page-app-shell .submit_button:focus-visible,
.page-app-shell #cc_pay_button:focus-visible,
.page-app-shell button[type="submit"]:focus-visible {
	outline: none;
	box-shadow:
		0 0 0 3px #fff,
		0 0 0 6px var(--green-500),
		0 14px 30px -12px rgba(4, 120, 87, .55);
}

/* ── WP-Invoice: validation hints + payment response ─────────────────── */
.page-app-shell .wpi_payment_form li span.validation { color: #b03a3a; font-size: .82rem; padding-left: 0; display: block; margin-top: 4px; }
.page-app-shell .wpi_error,
.page-app-shell .wpi_checkout_input_error { border-color: #c0392b !important; background: #fef6f6 !important; }
.page-app-shell .wpi_checkout_payment_response {
	margin: 16px 0 0;
	padding: 14px 16px;
	background: var(--mint-100);
	border: 1px solid var(--green-300);
	border-radius: var(--r-md);
	color: var(--ink-900);
	width: auto;
	height: auto;
	clear: both;
}
@media (max-width: 800px) { .prose--two-col { columns: 1; } }


/* 6. ---------------------------------------------------------- HEADER */
.site-header {
	position: sticky;
	top: 0;
	z-index: 80;
	padding: 14px 0;
	transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	background: rgba(255,255,255,.78);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	border: 1px solid var(--border);
	border-radius: var(--r-pill);
	padding: 10px 12px 10px 22px;
	box-shadow: var(--shadow-1);
}
.site-header.is-scrolled { padding: 8px 0; }
.site-header.is-scrolled .site-header__inner { box-shadow: var(--shadow-2); background: rgba(255,255,255,.92); }

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--ink-900);
	letter-spacing: -0.01em;
}
.brand__mark { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; }
.brand__mark svg { width: 100%; height: 100%; filter: drop-shadow(0 6px 18px rgba(16,185,129,.35)); }
.brand__text { display: grid; line-height: 1.05; font-size: 15px; }
.brand__line2 { color: var(--green-700); font-weight: 600; }
.custom-logo { max-height: 40px; width: auto; }

.site-nav { margin-left: auto; }
.site-nav__list {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-nav__list a {
	display: inline-flex;
	padding: 10px 14px;
	border-radius: var(--r-pill);
	font-weight: 500;
	font-size: .96rem;
	color: var(--ink-700);
	transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-nav__list a:hover, .site-nav__list .current-menu-item > a, .site-nav__list .current_page_item > a {
	background: var(--mint-100);
	color: var(--ink-900);
}
.site-nav__list .menu-item-has-children { position: relative; }
/* Invisible hover-extender below the parent link so cursor can travel down
   to the dropdown without crossing a hover dead-zone. */
.site-nav__list .menu-item-has-children > a { position: relative; }
.site-nav__list .menu-item-has-children > a::after {
	content: "";
	position: absolute;
	left: 0; right: 0; top: 100%;
	height: 12px;
}
.site-nav__list .sub-menu {
	position: absolute;
	top: 100%; left: 0; min-width: 220px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	box-shadow: var(--shadow-3);
	padding: 6px;
	list-style: none;
	margin: 0; /* no gap = no hover dead-zone */
	opacity: 0; transform: translateY(10px); pointer-events: none;
	transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.site-nav__list .menu-item-has-children:hover > .sub-menu,
.site-nav__list .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1; transform: translateY(2px); pointer-events: auto;
}
.site-nav__list .sub-menu a { display: block; padding: 10px 12px; border-radius: 10px; white-space: nowrap; }

.site-header__actions { display: flex; align-items: center; gap: 8px; }
.header-phone {
	display: inline-flex; align-items: center; gap: 8px;
	font-weight: 500; font-size: .92rem; color: var(--ink-500);
	padding: 10px 12px; border-radius: var(--r-pill);
}
.header-phone:hover { color: var(--green-700); background: var(--mint-100); }
.header-phone svg { width: 16px; height: 16px; color: var(--green-600); }
.header-cta { padding: 10px 18px; }
.nav-toggle {
	display: none;
	width: 44px; height: 44px;
	align-items: center; justify-content: center;
	border-radius: var(--r-pill);
	background: var(--mint-100);
	color: var(--ink-900);
	position: relative;
}
.nav-toggle__icon { position: absolute; inset: 0; display: grid; place-items: center; transition: opacity .2s var(--ease), transform .2s var(--ease); }
.nav-toggle__icon[data-icon="close"] { opacity: 0; transform: rotate(-90deg); }
.nav-toggle.is-open .nav-toggle__icon[data-icon="open"] { opacity: 0; transform: rotate(90deg); }
.nav-toggle.is-open .nav-toggle__icon[data-icon="close"] { opacity: 1; transform: none; }

@media (max-width: 1024px) {
	.header-phone, .header-cta { display: none; }
	.site-nav { display: none; }
	.nav-toggle { display: inline-flex; }
	.site-header__inner { padding: 8px 8px 8px 16px; }
}


/* 7. ---------------------------------------------------------- MOBILE DRAWER */
.mobile-nav {
	position: fixed; inset: 0; z-index: 110;
	pointer-events: none;
	visibility: hidden;
}
.mobile-nav.is-open { pointer-events: auto; visibility: visible; }
/* Backdrop sits BEHIND the panel — explicit z-index keeps the blur off the
   panel and ensures taps on menu items reach the panel, not the backdrop. */
.mobile-nav__backdrop {
	position: absolute; inset: 0; z-index: 1;
	background: rgba(11,22,18,.45);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0; transition: opacity .3s var(--ease);
}
.mobile-nav.is-open .mobile-nav__backdrop { opacity: 1; }
.mobile-nav__panel {
	position: absolute; top: 0; right: 0; bottom: 0; z-index: 2;
	width: min(420px, 90vw);
	background: #fff;
	padding: 20px;
	display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform .35s var(--ease);
	box-shadow: -20px 0 60px rgba(11,22,18,.18);
	/* New stacking context — keeps backdrop-filter from bleeding into the panel. */
	isolation: isolate;
}
.mobile-nav.is-open .mobile-nav__panel { transform: none; }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; padding: 8px 4px; }
.mobile-nav__close { width: 44px; height: 44px; border-radius: var(--r-pill); background: var(--mint-100); display: grid; place-items: center; }
.mobile-nav__list {
	list-style: none; padding: 18px 4px; margin: 0;
	display: grid; gap: 4px;
}
.mobile-nav__list a {
	display: block; padding: 14px 12px; border-radius: var(--r-md);
	font-family: var(--font-display); font-weight: 600; font-size: 1.18rem;
	color: var(--ink-900);
}
.mobile-nav__list a:hover, .mobile-nav__list .current-menu-item > a { background: var(--mint-100); color: var(--green-700); }
.mobile-nav__list .sub-menu { list-style: none; padding-left: 12px; margin: 0; }
.mobile-nav__list .sub-menu a { font-size: .98rem; font-weight: 500; padding: 10px 12px; }
.mobile-nav__cta { margin-top: auto; padding: 16px 4px 8px; display: grid; gap: 12px; }
.mobile-nav__phone {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 12px 16px; border-radius: var(--r-pill);
	background: var(--mint-100); font-weight: 500;
	color: var(--ink-700);
}


/* 8. ---------------------------------------------------------- HERO */
.hero { position: relative; padding: clamp(48px, 7vw, 110px) 0 clamp(64px, 8vw, 120px); overflow: clip; }
.hero__inner {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	gap: clamp(28px, 4vw, 64px);
	align-items: center;
}
.hero__title { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.hero__sub { max-width: 52ch; }
.hero__proof { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-wrap: wrap; gap: 22px; }
.hero__proof li { display: inline-flex; align-items: center; gap: 8px; font-size: .94rem; color: var(--ink-500); }
.hero__proof svg { width: 18px; height: 18px; color: var(--green-600); padding: 2px; background: var(--green-50); border-radius: 50%; box-sizing: content-box; }

.hero--page { padding: clamp(64px, 7vw, 110px) 0 clamp(40px, 5vw, 60px); }
.hero--page .hero__inner { grid-template-columns: 1fr; max-width: 880px; gap: 0; }

/* Hero visual — rectangular browser card with two floating overlays.
   Visual fills its grid column (no max-width) so it commands ~55% of the
   hero width on desktop. Internal padding reserves overhang space for the
   small/badge floaters without overlapping the main card. */
.hero__visual {
	position: relative;
	width: 100%;
	margin-left: auto;
	aspect-ratio: 1.05 / 1;
	padding: 36px 32px 36px 0;
}
.hero__card {
	position: absolute;
	background: rgba(255,255,255,.92);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	box-shadow: var(--shadow-3);
}
.hero__card--main {
	inset: 36px 32px 36px 0;
	padding: 26px 28px 28px;
	display: flex; flex-direction: column;
	overflow: hidden;
	z-index: 1;
}
.hero__card-bar { display: flex; gap: 7px; padding: 0 4px 14px; border-bottom: 1px solid var(--border); }
.hero__card-bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--mint-100); border: 1px solid var(--border); }
.hero__card-body { padding-top: 18px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; min-width: 0; }
.hero__chart { flex: 1; display: grid; align-items: end; min-height: 110px; }
.hero__chart svg { width: 100%; height: 100%; }
.hero__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(10px, 1.4vw, 20px);
	padding-top: 18px;
	border-top: 1px solid var(--border);
}
.hero__metrics > div { display: grid; gap: 4px; min-width: 0; }
.hero__metrics .num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.25rem, 1.8vw, 1.6rem);
	color: var(--ink-900);
	letter-spacing: -.015em;
	line-height: 1.1;
}
.hero__metrics .lbl {
	font-size: .72rem;
	color: var(--ink-400);
	text-transform: uppercase;
	letter-spacing: .08em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hero__card--small {
	right: 0; top: 4px;
	display: flex; align-items: center; gap: 14px;
	padding: 18px 22px;
	width: 340px;
	max-width: calc(100% - 16px);
	z-index: 3;
	animation: floaty 7s ease-in-out infinite;
}
.hero__card--small svg { width: 22px; height: 22px; color: #F59E0B; }
.hero__card--small strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.05rem;
	line-height: 1.25;
	color: var(--ink-900);
}
.hero__card--small span:last-child {
	display: block;
	font-size: .88rem;
	color: var(--ink-500);
	line-height: 1.35;
	margin-top: 3px;
}
.hero__card-icon {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: rgba(245,158,11,.12);
	display: grid; place-items: center;
	flex: 0 0 44px;
}
.hero__card-icon svg { color: #F59E0B; width: 22px; height: 22px; }

.hero__card--badge {
	left: 14px; bottom: 6%;
	display: inline-flex; align-items: center; justify-content: center; gap: 11px;
	padding: 14px 26px; border-radius: var(--r-pill);
	font-weight: 600; font-size: 1rem;
	min-width: 260px;
	max-width: calc(100% - 28px);
	z-index: 3;
	animation: floaty 9s ease-in-out infinite reverse;
}
.hero__badge-dot {
	width: 10px; height: 10px;
	border-radius: 50%;
	background: var(--green-500);
	box-shadow: 0 0 0 5px rgba(16,185,129,.18);
	animation: pulse 2.4s var(--ease) infinite;
	flex: 0 0 10px;
}

/* On narrow 2-col viewports the small floater would crowd the badge — hide it */
@media (min-width: 981px) and (max-width: 1080px) {
	.hero__card--small { display: none; }
}

@keyframes floaty {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}
@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
	50% { box-shadow: 0 0 0 9px rgba(16,185,129,0); }
}

@media (max-width: 980px) {
	.hero__inner { grid-template-columns: 1fr; }
	.hero__visual { max-width: 560px; margin: 0 auto; }
}


/* Page hero (inner pages) */
.page-hero {
	position: relative; overflow: clip;
	padding: clamp(72px, 8vw, 130px) 0 clamp(40px, 5vw, 70px);
	background: linear-gradient(180deg, var(--green-50) 0%, transparent 100%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 880px; }
.page-hero__title { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.page-hero__sub { max-width: 64ch; }


/* 9. ---------------------------------------------------------- CARDS */
.card-grid {
	list-style: none; padding: 0; margin: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
}
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

.card {
	position: relative;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 28px;
	display: flex; flex-direction: column; gap: 14px;
	transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
	overflow: hidden;
}
.card::before {
	content: ""; position: absolute; inset: 0;
	background: var(--grad-brand-soft); opacity: 0;
	transition: opacity var(--dur) var(--ease);
	pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: rgba(16,185,129,.35); box-shadow: var(--shadow-3); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card__icon {
	display: grid; place-items: center;
	width: 52px; height: 52px;
	border-radius: var(--r-md);
	background: var(--green-50);
	color: var(--green-700);
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card__icon svg { width: 24px; height: 24px; }
.card:hover .card__icon { background: var(--grad-brand); color: #fff; transform: rotate(-4deg) scale(1.05); }
.card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; line-height: 1.3; margin: 0; color: var(--ink-900); }
.card__desc { color: var(--ink-500); margin: 0; font-size: .98rem; }
.card__cta {
	margin-top: auto; padding-top: 8px;
	display: inline-flex; align-items: center; gap: 6px;
	font-weight: 600; color: var(--green-700);
	font-size: .94rem;
}
.card__cta svg { transition: transform var(--dur) var(--ease); width: 16px; height: 16px; }
.card:hover .card__cta { color: var(--green-800); }
.card:hover .card__cta svg { transform: translateX(4px); }


/* Niches */
.niche-grid {
	list-style: none; padding: 0; margin: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 900px) { .niche-grid { grid-template-columns: 1fr; } }
.niche {
	border-radius: var(--r-xl);
	padding: 36px 30px;
	background: linear-gradient(180deg, #fff 0%, var(--off-white) 100%);
	border: 1px solid var(--border);
	display: flex; flex-direction: column; gap: 14px;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
	min-height: 280px;
	position: relative; overflow: hidden;
}
.niche::after {
	content: ""; position: absolute;
	right: -120px; top: -120px;
	width: 280px; height: 280px;
	background: radial-gradient(circle, rgba(16,185,129,.18), transparent 60%);
	opacity: 0; transition: opacity var(--dur) var(--ease);
}
.niche:hover { transform: translateY(-6px); border-color: rgba(16,185,129,.4); box-shadow: var(--shadow-3); }
.niche:hover::after { opacity: 1; }
.niche__tag {
	align-self: flex-start;
	font-family: var(--font-mono); font-size: 11px;
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--green-700);
	background: var(--green-50);
	padding: 6px 10px; border-radius: var(--r-pill);
}
.niche__title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; margin: 0; line-height: 1.2; color: var(--ink-900); }
.niche__desc { color: var(--ink-500); margin: 0; }
.niche__link { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--green-700); }
.niche__link svg { transition: transform var(--dur) var(--ease); width: 16px; height: 16px; }
.niche:hover .niche__link svg { transform: translateX(4px); }


/* Expertise (services overview) */
.expertise-grid {
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 800px) { .expertise-grid { grid-template-columns: 1fr; } }
.expertise-card {
	background: #fff; border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 36px;
	display: flex; flex-direction: column; gap: 14px;
	transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
	position: relative; overflow: hidden;
}
.expertise-card:hover { transform: translateY(-4px); border-color: rgba(16,185,129,.35); box-shadow: var(--shadow-3); }
.expertise-card__icon {
	width: 56px; height: 56px;
	background: var(--grad-brand);
	color: #fff;
	border-radius: var(--r-md);
	display: grid; place-items: center;
	box-shadow: var(--shadow-glow);
}
.expertise-card__icon svg { width: 26px; height: 26px; }
.expertise-card__tag { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-400); }
.expertise-card__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin: 0; }
.expertise-card__desc { color: var(--ink-500); margin: 0; }
.expertise-card__cta { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--green-700); }
.expertise-card__cta svg { width: 16px; transition: transform var(--dur) var(--ease); }
.expertise-card:hover .expertise-card__cta svg { transform: translateX(4px); }

/* Features grid (services fallback) */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (max-width: 800px) { .features-grid { grid-template-columns: 1fr; } }
.feature { display: flex; gap: 14px; align-items: start; }
.feature__check { flex: 0 0 32px; width: 32px; height: 32px; border-radius: 50%; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; }
.feature__check svg { width: 18px; height: 18px; }
.feature__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin: 0 0 6px; }
.feature__desc { color: var(--ink-500); font-size: .95rem; margin: 0; }

/* Tabular row variant — used on the Services page where title + desc sit
   side-by-side as a 3-column row. Fixed 220px title column means longer
   titles like "Search Engine Optimization" or "E-Commerce Integration"
   wrap cleanly to 2 lines instead of being squeezed to 3 by the flex
   algorithm. Stacks (title above desc) on narrow viewports. */
.feature--row {
	display: grid;
	grid-template-columns: 32px 220px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}
@media (max-width: 540px) {
	.feature--row {
		grid-template-columns: 32px minmax(0, 1fr);
		grid-template-areas:
			"icon title"
			"icon desc";
		row-gap: 4px;
	}
	.feature--row .feature__check { grid-area: icon; }
	.feature--row .feature__title { grid-area: title; }
	.feature--row .feature__desc  { grid-area: desc; }
}


/* Pricing */
.pricing-grid {
	list-style: none; padding: 0; margin: 0;
	display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 1.6vw, 20px);
}
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 32px 26px;
	display: flex; flex-direction: column; gap: 18px;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.pricing-card--featured {
	background: linear-gradient(180deg, #FFFFFF 0%, var(--green-50) 100%);
	border-color: rgba(16,185,129,.35);
	box-shadow: 0 24px 60px -20px rgba(16,185,129,.30);
}
.pricing-card__badge {
	position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
	background: var(--grad-brand); color: #fff;
	font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
	padding: 6px 14px; border-radius: var(--r-pill);
	box-shadow: var(--shadow-glow);
}
.pricing-card__name { font-family: var(--font-display); font-size: 1.18rem; font-weight: 700; margin: 0; }
.pricing-card__desc { color: var(--ink-500); margin: 0; font-size: .94rem; }
.pricing-card__price { margin: 0; display: flex; align-items: baseline; gap: 8px; }
.pricing-card__price .grad-text { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; }
.pricing-card__sub { font-size: .85rem; color: var(--ink-400); }
.pricing-card__feats { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pricing-card__feats li { display: flex; gap: 10px; font-size: .92rem; color: var(--ink-700); }
.pricing-card__feats svg { width: 16px; height: 16px; color: var(--green-600); flex: 0 0 16px; margin-top: 4px; }
.pricing-card .btn { margin-top: auto; justify-content: center; }


/* Pricing list (marketing services) */
.pricing-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.pricing-row {
	display: grid;
	grid-template-columns: minmax(220px, 1.2fr) 2fr auto;
	gap: clamp(16px, 3vw, 40px);
	align-items: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 22px 26px;
	transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.pricing-row:hover { border-color: rgba(16,185,129,.4); background: var(--green-50); }
.pricing-row__head h3 { font-family: var(--font-display); font-size: 1.18rem; margin: 0 0 4px; }
.pricing-row__head p { margin: 0; color: var(--ink-400); font-size: .9rem; }
.pricing-row__feats { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 14px 22px; font-size: .92rem; color: var(--ink-700); }
.pricing-row__feats li { display: inline-flex; align-items: center; gap: 8px; }
.pricing-row__feats svg { width: 14px; height: 14px; color: var(--green-600); }
@media (max-width: 900px) {
	.pricing-row { grid-template-columns: 1fr; }
	.pricing-row__cta { justify-self: stretch; }
	.pricing-row__cta .btn { width: 100%; justify-content: center; }
}


/* Post cards */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	background: #fff;
	display: flex; flex-direction: column;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.post-card:hover { transform: translateY(-4px); border-color: rgba(16,185,129,.35); box-shadow: var(--shadow-3); }
.post-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card__meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); margin: 0; }
.post-card__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin: 0; line-height: 1.3; }
.post-card__excerpt { color: var(--ink-500); font-size: .95rem; margin: 0; }
.post-card__cta { margin-top: auto; padding-top: 8px; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--green-700); font-size: .94rem; }
.post-card__cta svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.post-card:hover .post-card__cta svg { transform: translateX(4px); }


/* 10. ---------------------------------------------------------- PROCESS, STATS, MARQUEE, TESTIMONIALS */
.process { list-style: none; padding: 0; margin: 0; counter-reset: step;
	display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); position: relative; z-index: 1; }
@media (max-width: 900px) { .process { grid-template-columns: 1fr; } }
.process__step {
	background: rgba(255,255,255,.04);
	border: 1px solid var(--dark-line);
	padding: 36px;
	border-radius: var(--r-xl);
	transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.process__step:hover { background: rgba(16,185,129,.06); border-color: rgba(52,211,153,.35); transform: translateY(-4px); }
.process__num { font-family: var(--font-mono); font-size: 14px; color: var(--green-300); letter-spacing: .15em; }
.process__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; margin: 14px 0 12px; }
.process__desc { color: var(--dark-text-soft); margin: 0; }


/* Stats */
.stats {
	list-style: none; margin: 0; padding: 32px 36px;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
	background: linear-gradient(135deg, var(--green-50) 0%, #fff 100%);
	border: 1px solid rgba(16,185,129,.2);
	border-radius: var(--r-xl);
}
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stats li { display: grid; gap: 6px; }
.stats__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; }
.stats__lbl { font-size: .9rem; color: var(--ink-500); }


/* Marquee */
.marquee__label { text-align: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-400); margin: 0 0 24px; }
.marquee {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
	display: flex; gap: 56px; width: max-content;
	animation: marquee 36s linear infinite;
	will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 14px; color: var(--ink-400); }
.marquee__icon { width: 28px; height: 28px; color: var(--ink-500); transition: color var(--dur) var(--ease); }
.marquee__name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink-700); white-space: nowrap; transition: color var(--dur) var(--ease); }
.marquee__item:hover .marquee__icon, .marquee__item:hover .marquee__name { color: var(--green-700); }
@keyframes marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}


/* Testimonials */
.testimonials { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 28px;
	display: flex; flex-direction: column; gap: 18px;
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.testimonial:hover { border-color: rgba(16,185,129,.35); box-shadow: var(--shadow-2); transform: translateY(-4px); }
.testimonial__stars { display: inline-flex; gap: 2px; color: #F59E0B; }
.testimonial__stars svg { width: 16px; height: 16px; }
.testimonial blockquote { margin: 0; font-size: 1.02rem; color: var(--ink-700); line-height: 1.65; }
.testimonial__author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--border); font-size: .92rem; }
.testimonial__avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-brand); color: #fff; font-family: var(--font-display); font-weight: 700; }
.testimonial__author strong { display: block; color: var(--ink-900); font-weight: 600; }
.testimonial__author span span { color: var(--ink-400); }


/* 11. ---------------------------------------------------------- CTA BANNER + FOOTER */
.cta-banner {
	position: relative;
	margin-top: clamp(40px, 6vw, 80px);
	background: var(--ink-900);
	color: #fff;
	overflow: hidden;
}
.cta-banner::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(60% 60% at 80% 20%, rgba(16,185,129,.25), transparent 60%),
	            radial-gradient(50% 50% at 20% 80%, rgba(52,211,153,.18), transparent 60%);
	pointer-events: none;
}
.cta-banner__inner {
	position: relative; z-index: 1;
	display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
	padding-block: clamp(56px, 7vw, 100px);
}
@media (max-width: 900px) { .cta-banner__inner { grid-template-columns: 1fr; } }
.cta-banner__copy .display { color: #fff; }
.cta-banner__copy .lede { color: rgba(255,255,255,.78); }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-banner__primary { padding: 16px 26px; font-size: 1.02rem; }
.cta-banner__phone { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 500; }
.cta-banner__phone svg { color: var(--green-300); }


.site-footer {
	background: var(--off-white);
	border-top: 1px solid var(--border);
	padding-block: clamp(56px, 6vw, 96px) 0;
	color: var(--ink-500);
}
.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
	gap: clamp(24px, 4vw, 56px);
}
@media (max-width: 1000px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer__brand .brand { margin-bottom: 16px; }
.site-footer__tag { color: var(--ink-500); margin: 0 0 24px; max-width: 38ch; line-height: 1.6; }
.site-footer__contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: .94rem; }
.site-footer__contact li { display: flex; align-items: center; gap: 10px; }
.site-footer__contact svg { width: 18px; color: var(--green-600); flex: 0 0 18px; }
.site-footer__contact a:hover { color: var(--green-700); }
.site-footer__col h4 { font-family: var(--font-display); font-size: .98rem; font-weight: 600; color: var(--ink-900); margin: 0 0 16px; }
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .94rem; }
.site-footer__col a:hover { color: var(--green-700); }
.site-footer__newsletter p { margin: 0 0 14px; font-size: .94rem; }
.site-footer__social { list-style: none; padding: 0; margin: 18px 0 0; display: flex; gap: 10px; }
.site-footer__social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid var(--border); font-family: var(--font-mono); font-size: 11px; }
.site-footer__social a:hover { border-color: var(--green-600); color: var(--green-700); }

/* Cities cloud (footer band + reused on city landing page) */
.site-footer__cities {
	margin-top: clamp(40px, 5vw, 64px);
	padding-top: clamp(28px, 3.5vw, 40px);
	border-top: 1px solid var(--border);
}
.site-footer__cities-eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--green-700);
	margin: 0 0 12px;
}
.site-footer__cities-eyebrow .dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--green-500);
	box-shadow: 0 0 0 4px rgba(16,185,129,.15);
	display: inline-block;
}
.site-footer__cities-title {
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 1.8vw, 1.5rem);
	font-weight: 700;
	color: var(--ink-900);
	margin: 0 0 22px;
	letter-spacing: -.01em;
}

.cities-cloud {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-wrap: wrap; gap: 8px 10px;
}
.cities-cloud--footer { gap: 10px 12px; }

.cities-cloud__pill {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 14px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-pill);
	color: var(--ink-700);
	font-size: .9rem;
	font-weight: 500;
	text-decoration: none;
	transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cities-cloud__pill:hover {
	border-color: rgba(16,185,129,.4);
	background: var(--green-50);
	color: var(--green-700);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px -10px rgba(16,185,129,.35);
}
.cities-cloud__pill svg {
	width: 14px; height: 14px;
	color: var(--green-600);
	flex: 0 0 14px;
}
.cities-cloud--footer .cities-cloud__pill { font-size: .88rem; padding: 7px 13px; }

@media (max-width: 600px) {
	.cities-cloud__pill { font-size: .84rem; padding: 7px 12px; }
}

.site-footer__bottom {
	margin-top: clamp(48px, 6vw, 80px);
	padding-block: 24px;
	border-top: 1px solid var(--border);
	display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
	font-size: .88rem;
}
.site-footer__legal { list-style: none; padding: 0; margin: 0; display: flex; gap: 18px; }


/* 12. ---------------------------------------------------------- CONTACT, FAQ, FORMS */
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 48px);
	align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: clamp(24px, 4vw, 44px);
	box-shadow: var(--shadow-2);
}
.contact-card__head h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2rem); margin: 0 0 6px; color: var(--ink-900); font-weight: 700; }
.contact-card__head p  { color: var(--ink-500); margin: 0 0 24px; }

.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; font-size: .92rem; color: var(--ink-700); }
.field input, .field select, .field textarea {
	border: 1px solid var(--border-strong);
	background: #fff; color: var(--ink-900);
	border-radius: var(--r-md);
	padding: 12px 14px;
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
	border-color: var(--green-600); outline: none;
	box-shadow: 0 0 0 4px rgba(16,185,129,.15);
}
.contact-form__note { color: var(--ink-400); font-size: .82rem; margin: 0; }

/* Stylings for Contact Form 7 / popular form plugins */
.contact-card__embed .wpcf7 input[type="text"],
.contact-card__embed .wpcf7 input[type="email"],
.contact-card__embed .wpcf7 input[type="tel"],
.contact-card__embed .wpcf7 textarea,
.contact-card__embed .wpcf7 select,
.contact-card__embed .gform_wrapper input[type="text"],
.contact-card__embed .gform_wrapper input[type="email"],
.contact-card__embed .gform_wrapper input[type="tel"],
.contact-card__embed .gform_wrapper textarea,
.contact-card__embed .gform_wrapper select,
.contact-card__embed .fluentform input,
.contact-card__embed .fluentform textarea,
.contact-card__embed .fluentform select {
	width: 100%;
	border: 1px solid var(--border-strong) !important;
	border-radius: var(--r-md) !important;
	padding: 12px 14px !important;
	font: inherit;
	background: #fff;
}
.contact-card__embed .wpcf7-submit, .contact-card__embed .gform_button, .contact-card__embed .ff-btn-submit {
	background: var(--grad-brand) !important;
	color: #fff !important;
	border-radius: var(--r-pill) !important;
	padding: 14px 24px !important;
	font-weight: 600 !important;
	border: 0 !important;
	box-shadow: var(--shadow-glow);
	cursor: pointer;
}

.info-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 28px;
}
.info-card + .info-card { margin-top: 16px; }
.info-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin: 0 0 8px; color: var(--ink-900); font-weight: 600; }
.info-card > p { margin: 0 0 18px; color: var(--ink-500); font-size: .94rem; }
.info-card__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.info-card__list li { display: flex; align-items: flex-start; gap: 12px; }
.info-card__list svg { width: 22px; height: 22px; padding: 5px; box-sizing: content-box; background: var(--green-50); border-radius: 50%; color: var(--green-700); flex: 0 0 22px; }
.info-card__list strong { display: block; font-weight: 600; color: var(--ink-900); margin-bottom: 2px; }
.info-card__list a { color: var(--green-700); }
.info-card__small { display: block; color: var(--ink-400); font-size: .82rem; margin-top: 4px; }

.info-card--soft { background: var(--green-50); border-color: rgba(16,185,129,.18); }
.info-card__steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; counter-reset: s; }
.info-card__steps li { display: flex; align-items: center; gap: 12px; font-size: .96rem; color: var(--ink-700); }
.info-card__steps li span { width: 28px; height: 28px; border-radius: 50%; background: var(--grad-brand); color: #fff; font-weight: 700; display: grid; place-items: center; flex: 0 0 28px; font-family: var(--font-display); }


/* FAQ */
.faq { display: grid; gap: 10px; max-width: 880px; margin-inline: auto; }
.faq__item {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	padding: 16px 22px;
	transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.faq__item[open] { border-color: rgba(16,185,129,.35); background: linear-gradient(180deg, #fff, var(--green-50)); }
.faq__item summary {
	cursor: pointer; list-style: none;
	display: flex; align-items: center; justify-content: space-between;
	font-family: var(--font-display); font-weight: 600; color: var(--ink-900);
	font-size: 1.02rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { width: 18px; height: 18px; position: relative; flex: 0 0 18px; }
.faq__icon::before, .faq__icon::after {
	content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
	background: var(--ink-900);
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after  { width: 2px; height: 14px; transition: transform var(--dur) var(--ease); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__item p { margin: 12px 0 0; color: var(--ink-500); font-size: .98rem; line-height: 1.65; }


/* 13. ---------------------------------------------------------- ABOUT, PROSE LAYOUTS */
.about-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid__highlight { display: grid; gap: 14px; }
.callout {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 22px 24px;
	display: grid; gap: 6px;
	transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.callout:hover { border-color: rgba(16,185,129,.35); transform: translateX(4px); }
.callout__num { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; line-height: 1; }
.callout__lbl { color: var(--ink-500); margin: 0; font-size: .94rem; }

.team-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 28px); }
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: 32px;
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.team-card:hover { border-color: rgba(16,185,129,.35); box-shadow: var(--shadow-2); transform: translateY(-4px); }
.team-card__photo {
	position: relative;
	width: 96px; height: 96px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 18px;
	background: var(--grad-brand);
	box-shadow: var(--shadow-glow), 0 0 0 4px #fff, 0 0 0 5px rgba(16,185,129,.18);
	isolation: isolate;
}
.team-card__photo img {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	z-index: 1;
	transition: transform .6s var(--ease);
}
.team-card:hover .team-card__photo img { transform: scale(1.05); }
.team-card__photo-fallback,
.team-card__photo > span {
	position: absolute; inset: 0;
	display: grid; place-items: center;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 2.1rem;
	color: #fff;
}
.team-card__photo--alt {
	background: linear-gradient(135deg, #FBBF24 0%, #B45309 100%);
	box-shadow: 0 18px 60px -18px rgba(180,83,9,.4), 0 0 0 4px #fff, 0 0 0 5px rgba(180,83,9,.18);
}
.team-card__name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin: 0 0 4px; color: var(--ink-900); }
.team-card__role { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--green-700); margin: 0 0 16px; }
.team-card__bio { color: var(--ink-500); margin: 0 0 18px; font-size: .98rem; line-height: 1.65; }
.team-card__bio p { margin: 0; }
.team-card__bio p + p { margin-top: 1em; }
.team-card__social {
	list-style: none; padding: 0; margin: 0;
	display: flex; gap: 8px;
}
.team-card__social a {
	display: grid; place-items: center;
	width: 38px; height: 38px;
	border-radius: 50%;
	background: var(--mint-100);
	color: var(--ink-700);
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.team-card__social a:hover {
	background: var(--grad-brand);
	color: #fff;
	transform: translateY(-2px);
}
.team-card__social svg { width: 18px; height: 18px; }


.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
	border-left: 3px solid var(--green-500);
	padding: 8px 0 8px 22px;
	position: relative;
}
.pillar__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; color: var(--green-700); }
.pillar__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin: 6px 0 10px; color: var(--ink-900); }
.pillar p { margin: 0; color: var(--ink-500); }


/* Service detail prose layout (sidebar + body) */
.prose-layout {
	display: grid;
	grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: start;
}
@media (max-width: 900px) { .prose-layout { grid-template-columns: 1fr; } }
.prose-layout__aside { position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 900px) { .prose-layout__aside { position: static; } }

.aside-card {
	background: linear-gradient(180deg, #fff, var(--green-50));
	border: 1px solid rgba(16,185,129,.2);
	border-radius: var(--r-xl);
	padding: 28px;
	box-shadow: var(--shadow-2);
}
.aside-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin: 0 0 16px; color: var(--ink-900); }
.aside-card__list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 12px; }
.aside-card__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; color: var(--ink-700); }
.aside-card__list svg { width: 16px; height: 16px; color: var(--green-600); padding: 3px; background: var(--green-100); border-radius: 50%; box-sizing: content-box; flex: 0 0 16px; margin-top: 1px; }
.aside-card .btn { width: 100%; justify-content: center; }


/* 14. ---------------------------------------------------------- 404, SEARCH, COMMENTS, PAGINATION */
.error-page {
	position: relative;
	min-height: 70vh;
	display: grid; place-items: center;
	padding-block: clamp(64px, 8vw, 120px);
	overflow: clip;
}
.error-page__inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin-inline: auto; }
.error-page .eyebrow { margin-inline: auto; }
.error-page__code { font-size: clamp(5rem, 14vw, 11rem); margin: 0; line-height: 1; }
.error-page .cta-row { justify-content: center; }
.error-page__search { margin-top: 36px; }

.search-bar { max-width: 560px; margin: 0 auto 32px; }
.search-form__field {
	display: flex; align-items: center; gap: 8px;
	background: #fff;
	border: 1px solid var(--border-strong);
	border-radius: var(--r-pill);
	padding: 6px 6px 6px 18px;
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.search-form__field:focus-within { border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(16,185,129,.15); }
.search-form__icon { width: 18px; height: 18px; color: var(--ink-400); flex: 0 0 18px; }
.search-form__input { flex: 1; border: 0; background: transparent; padding: 12px 0; outline: none; font-size: 1rem; min-width: 0; }
.search-form__submit { background: var(--grad-brand); color: #fff; border-radius: var(--r-pill); padding: 10px 18px; font-weight: 600; font-size: .94rem; }


.pagination { margin-top: clamp(32px, 4vw, 56px); display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.pagination .page-numbers {
	min-width: 44px; height: 44px; padding: 0 12px;
	display: inline-grid; place-items: center;
	border-radius: var(--r-pill);
	border: 1px solid var(--border);
	background: #fff; color: var(--ink-700);
	font-weight: 600; font-size: .94rem;
}
.pagination .page-numbers:hover { border-color: var(--green-600); color: var(--green-700); }
.pagination .current { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: var(--shadow-glow); }


.post-nav { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; gap: 16px; }
.post-nav a { color: var(--green-700); font-weight: 500; }
.prose__pages { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; gap: 8px; flex-wrap: wrap; }
.prose__pages a, .prose__pages > span { padding: 8px 12px; border-radius: var(--r-md); border: 1px solid var(--border); }


.comments-area { padding-top: 48px; border-top: 1px solid var(--border); }
.comments__title { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 24px; color: var(--ink-900); }
.comment-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 24px; }
.comment-list .comment-body { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; }
.comment-list .comment-author { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.comment-list .avatar { border-radius: 50%; }
.comment-form { display: grid; gap: 14px; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
	width: 100%; border: 1px solid var(--border-strong); border-radius: var(--r-md); padding: 12px 14px;
	font: inherit; background: #fff;
}


/* 15. ---------------------------------------------------------- REVEAL MOTION & HELPERS */
[data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .8s var(--ease), transform .8s var(--ease);
	transition-delay: calc(var(--i, 0) * 70ms);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }


/* 16. ---------------------------------------------------------- LEGACY SHORTCODES (BigJunior compatibility)
 *
 * Styles the output produced by /inc/legacy-shortcodes.php so that any
 * page still using [parallax], [container], [row], [span12], [iconbox],
 * [tab_group], [tab], [button], [separator] renders as part of the new
 * OCBW design system — no orphan markup, no broken layout.
 * ============================================================ */

.legacy-wrap {
	color: var(--ink-700);
	font-size: 1.02rem;
	line-height: 1.7;
}
.legacy-wrap > * + * { margin-top: 1rem; }
.legacy-wrap h1, .legacy-wrap h2, .legacy-wrap h3, .legacy-wrap h4 {
	font-family: var(--font-display);
	color: var(--ink-900);
	letter-spacing: -0.015em;
	line-height: 1.2;
	margin-top: 1.6em;
}
.legacy-wrap h1 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.legacy-wrap h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.legacy-wrap h3 { font-size: clamp(1.18rem, 1.8vw, 1.45rem); }
.legacy-wrap h4 { font-size: 1.1rem; }
.legacy-wrap a  { color: var(--green-700); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(4,120,87,.35); }
.legacy-wrap a:hover { text-decoration-color: var(--green-700); }
.legacy-wrap strong { color: var(--ink-900); }
.legacy-wrap ul:not(.legacy-iconbox__body ul) { padding-left: 1.4em; }
.legacy-wrap img { border-radius: var(--r-md); }

/* Container — passes through to our standard width */
.legacy-container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 0; }

/* Row + 12-col grid (mirrors BigJunior's 12-column system) */
.legacy-row {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(20px, 2.4vw, 36px);
	align-items: start;
	margin-block: clamp(24px, 4vw, 56px);
}
.legacy-col-1  { grid-column: span 1; }
.legacy-col-2  { grid-column: span 2; }
.legacy-col-3  { grid-column: span 3; }
.legacy-col-4  { grid-column: span 4; }
.legacy-col-5  { grid-column: span 5; }
.legacy-col-6  { grid-column: span 6; }
.legacy-col-7  { grid-column: span 7; }
.legacy-col-8  { grid-column: span 8; }
.legacy-col-9  { grid-column: span 9; }
.legacy-col-10 { grid-column: span 10; }
.legacy-col-11 { grid-column: span 11; }
.legacy-col-12 { grid-column: span 12; }
@media (max-width: 900px) {
	.legacy-row { grid-template-columns: 1fr; gap: 24px; }
	.legacy-col-1, .legacy-col-2, .legacy-col-3, .legacy-col-4, .legacy-col-5, .legacy-col-6,
	.legacy-col-7, .legacy-col-8, .legacy-col-9, .legacy-col-10, .legacy-col-11, .legacy-col-12 {
		grid-column: span 1;
	}
}

/* Section / section_alt */
.legacy-section { margin-block: clamp(32px, 5vw, 64px); }
.legacy-section--alt {
	background: var(--off-white);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	padding: clamp(28px, 4vw, 56px);
}

/* Parallax banner */
.legacy-parallax {
	position: relative;
	background-color: var(--ink-900);
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: scroll;
	border-radius: var(--r-xl);
	margin-block: clamp(32px, 5vw, 64px);
	overflow: hidden;
	color: #fff;
}
.legacy-parallax__inner {
	padding: clamp(48px, 6vw, 96px) clamp(24px, 4vw, 56px);
	max-width: var(--container);
	margin-inline: auto;
}
.legacy-parallax h1, .legacy-parallax h2, .legacy-parallax h3, .legacy-parallax h4 { color: #fff; }
.legacy-parallax a:not(.btn) { color: #BFEFD9; }
.legacy-parallax a:not(.btn):hover { color: #fff; }
.legacy-parallax p { color: rgba(255,255,255,.86); }
.legacy-parallax .legacy-row { margin-block: 0; }

/* Separator */
.legacy-sep {
	border: 0;
	height: 1px;
	background: var(--border);
	margin-block: 1.6em;
}
.legacy-sep--small-center {
	width: 60px; height: 3px;
	background: var(--grad-brand);
	border-radius: var(--r-pill);
	margin-inline: auto;
}
.legacy-parallax .legacy-sep--small-center { background: linear-gradient(90deg, var(--green-300), var(--green-500)); }

/* Inline button (already uses .btn) — just nudge spacing for legacy contexts */
.legacy-btn { margin-top: 8px; }

/* Iconbox card */
.legacy-iconbox {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	padding: 28px;
	height: 100%;
	display: flex; flex-direction: column;
	transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.legacy-iconbox:hover { border-color: rgba(16,185,129,.35); transform: translateY(-4px); box-shadow: var(--shadow-2); }
.legacy-iconbox__icon {
	display: grid; place-items: center;
	width: 52px; height: 52px;
	border-radius: var(--r-md);
	background: var(--green-50);
	color: var(--green-700);
	margin-bottom: 16px;
}
.legacy-iconbox__icon svg { width: 24px; height: 24px; }
.legacy-iconbox:hover .legacy-iconbox__icon { background: var(--grad-brand); color: #fff; }
.legacy-iconbox__title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.18rem;
	margin: 0 0 8px;
	color: var(--ink-900);
}
.legacy-iconbox__body { color: var(--ink-500); margin: 0; font-size: .96rem; }
.legacy-iconbox__body p { margin: 0; }
.legacy-iconbox__body p + p { margin-top: .8em; }

/* Tabs → accordion */
.legacy-tabs { display: grid; gap: 10px; }
.legacy-tab {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	padding: 16px 22px;
	transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.legacy-tab[open] { border-color: rgba(16,185,129,.35); background: linear-gradient(180deg, #fff, var(--green-50)); }
.legacy-tab summary {
	cursor: pointer; list-style: none;
	display: flex; align-items: center; justify-content: space-between;
	font-family: var(--font-display);
	font-weight: 600; color: var(--ink-900);
	font-size: 1.02rem;
	gap: 16px;
}
.legacy-tab summary::-webkit-details-marker { display: none; }
.legacy-tab[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.legacy-tab__body { margin-top: 12px; color: var(--ink-500); font-size: .98rem; line-height: 1.65; }
.legacy-tab__body p:first-child { margin-top: 0; }

/* Pricing-table compatibility (BigJunior used .sep-boxed-pricing / .full-boxed-pricing) */
.sep-boxed-pricing > .legacy-row,
.full-boxed-pricing {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}
.full-boxed-pricing { grid-template-columns: repeat(5, minmax(0, 1fr)); }
@media (max-width: 1100px) { .full-boxed-pricing { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 800px)  {
	.sep-boxed-pricing > .legacy-row,
	.full-boxed-pricing { grid-template-columns: 1fr; }
}
.sep-boxed-pricing ul, .full-boxed-pricing .column ul, .full-boxed-pricing > div ul {
	list-style: none; padding: 0; margin: 0;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.sep-boxed-pricing ul:hover, .full-boxed-pricing ul:hover { transform: translateY(-4px); border-color: rgba(16,185,129,.35); box-shadow: var(--shadow-2); }
.sep-boxed-pricing .title-row, .full-boxed-pricing .title-row {
	padding: 18px 24px;
	background: var(--ink-900);
	color: #fff;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -.005em;
	text-align: center;
}
.sep-boxed-pricing .pricing-row, .full-boxed-pricing .pricing-row {
	padding: 24px;
	text-align: center;
	background: var(--green-50);
	border-bottom: 1px solid var(--border);
}
.sep-boxed-pricing .pricing-row h5, .sep-boxed-pricing .webDesignPrice {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 2.2rem;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.full-boxed-pricing .pricing-row img { margin: 0 auto; max-height: 80px; }
.sep-boxed-pricing .normal-row, .full-boxed-pricing .normal-row {
	padding: 12px 22px;
	font-size: .95rem;
	color: var(--ink-700);
	border-bottom: 1px solid var(--border);
	text-align: center;
}
.sep-boxed-pricing .normal-row:empty, .full-boxed-pricing .normal-row:empty { display: none; }
.sep-boxed-pricing .footer-row, .full-boxed-pricing .footer-row {
	padding: 20px 24px;
	margin-top: auto;
	text-align: center;
}
.sep-boxed-pricing .footer-row .button, .full-boxed-pricing .footer-row .button {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 12px 22px;
	border-radius: var(--r-pill);
	background: var(--grad-brand);
	color: #fff;
	font-weight: 600;
	font-size: .94rem;
	box-shadow: var(--shadow-glow);
}
.sep-boxed-pricing .footer-row .button:hover, .full-boxed-pricing .footer-row .button:hover {
	transform: translateY(-1px);
	color: #fff;
}

/* Generic .button class fallback (used by inline links in legacy content) */
.legacy-wrap .button {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 22px;
	border-radius: var(--r-pill);
	background: var(--grad-brand);
	color: #fff;
	font-weight: 600;
	font-size: .94rem;
	text-decoration: none;
	box-shadow: var(--shadow-glow);
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.legacy-wrap .button:hover { transform: translateY(-1px); color: #fff; }
.legacy-wrap .button.green { background: var(--grad-brand); }

/* Friendly notice for missing CF7 plugin */
.legacy-cf7-fallback {
	background: #FFF7ED;
	border: 1px dashed #F59E0B;
	color: #7C2D12;
	border-radius: var(--r-md);
	padding: 16px 20px;
	font-size: .95rem;
}


/* 17. ---------------------------------------------------------- SERVICE PAGES */

/* Service hero — same hero rhythm as homepage but for individual service pages */
.service-hero {
	position: relative;
	padding: clamp(64px, 8vw, 130px) 0 clamp(40px, 6vw, 90px);
	overflow: clip;
	background: linear-gradient(180deg, var(--green-50) 0%, transparent 70%);
}
.service-hero__inner {
	position: relative; z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
	gap: clamp(28px, 4vw, 64px);
	align-items: center;
}
@media (max-width: 980px) {
	.service-hero__inner { grid-template-columns: 1fr; }
}
.service-hero__title { font-size: clamp(2.2rem, 4.6vw, 3.8rem); }
.service-hero__copy .lede { max-width: 52ch; }

/* Reusable visual container — same overhang treatment as homepage hero */
.service-hero__visual {
	position: relative;
	width: 100%;
	margin-left: auto;
	aspect-ratio: 1.05 / 1;
	padding: 36px 32px 36px 0;
}
@media (max-width: 980px) {
	.service-hero__visual { max-width: 560px; margin: 0 auto; aspect-ratio: 1.05 / 1; }
}
.service-hero__float {
	position: absolute; right: 0; top: 4px;
	display: flex; align-items: center; gap: 14px;
	padding: 18px 22px;
	width: 340px;
	max-width: calc(100% - 16px);
	z-index: 3;
	animation: floaty 7s ease-in-out infinite;
}
.service-hero__badge {
	position: absolute; left: 14px; bottom: 6%;
	display: inline-flex; align-items: center; justify-content: center; gap: 11px;
	padding: 14px 26px; border-radius: var(--r-pill);
	font-weight: 600; font-size: 1rem;
	min-width: 260px;
	max-width: calc(100% - 28px);
	z-index: 3;
	animation: floaty 9s ease-in-out infinite reverse;
}
@media (min-width: 981px) and (max-width: 1080px) {
	.service-hero__float { display: none; }
}

/* SERP / Google search-results mockup card (SEO Web Design hero) */
.serp-card {
	position: absolute;
	inset: 36px 32px 36px 0;
	background: rgba(255,255,255,.95);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	box-shadow: var(--shadow-3);
	padding: 22px 22px 18px;
	display: flex; flex-direction: column;
	gap: 14px;
	overflow: hidden;
	z-index: 1;
}
.serp-card__bar {
	display: flex; align-items: center; gap: 7px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border);
}
.serp-card__bar > span:not(.serp-card__url) {
	width: 11px; height: 11px; border-radius: 50%;
	background: var(--mint-100);
	border: 1px solid var(--border);
}
.serp-card__url {
	margin-left: auto;
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--ink-400);
	letter-spacing: .04em;
}
.serp-card__search {
	display: flex; align-items: center; gap: 10px;
	padding: 10px 14px;
	background: var(--off-white);
	border: 1px solid var(--border);
	border-radius: var(--r-pill);
	font-size: .9rem;
	color: var(--ink-700);
}
.serp-card__search svg { width: 16px; height: 16px; color: var(--ink-400); flex: 0 0 16px; }
.serp-card__results { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.serp-card__result {
	display: flex; gap: 12px;
	padding: 12px 14px;
	border-radius: var(--r-md);
	border: 1px solid transparent;
	background: rgba(255,255,255,.6);
	transition: background var(--dur) var(--ease);
}
.serp-card__rank {
	flex: 0 0 28px;
	width: 28px; height: 28px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: var(--mint-100);
	color: var(--ink-500);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: .9rem;
}
.serp-card__result--top {
	background: linear-gradient(135deg, var(--green-50), #fff);
	border-color: rgba(16,185,129,.35);
	box-shadow: 0 8px 24px -12px rgba(16,185,129,.4);
}
.serp-card__result--top .serp-card__rank {
	background: var(--grad-brand);
	color: #fff;
	box-shadow: var(--shadow-glow);
}
.serp-card__meta { display: grid; gap: 3px; min-width: 0; }
.serp-card__meta strong {
	font-family: var(--font-display);
	font-size: .94rem;
	font-weight: 600;
	color: var(--ink-900);
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.serp-card__url-line { font-family: var(--font-mono); font-size: 11px; color: var(--green-700); }
.serp-card__snippet {
	font-size: .8rem;
	color: var(--ink-400);
	line-height: 1.4;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.serp-card__result:not(.serp-card__result--top) .serp-card__snippet {
	-webkit-line-clamp: 1;
	line-clamp: 1;
}

/* WordPress admin mockup card (WP Website Design hero) */
.wp-card {
	position: absolute;
	inset: 36px 32px 36px 0;
	background: rgba(255,255,255,.95);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	box-shadow: var(--shadow-3);
	overflow: hidden;
	display: flex; flex-direction: column;
	z-index: 1;
}
.wp-card__bar {
	display: flex; align-items: center; gap: 7px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--border);
	background: var(--off-white);
	flex: 0 0 auto;
}
.wp-card__bar > span:not(.wp-card__url) {
	width: 11px; height: 11px; border-radius: 50%;
	background: var(--mint-100);
	border: 1px solid var(--border);
}
.wp-card__url {
	margin-left: auto;
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--ink-400);
}
.wp-card__inner { display: grid; grid-template-columns: 110px 1fr; flex: 1; min-height: 0; }
.wp-card__sidebar {
	background: linear-gradient(180deg, #1F2937 0%, #111827 100%);
	color: rgba(255,255,255,.7);
	padding: 18px 12px;
	display: flex; flex-direction: column;
	gap: 14px;
}
.wp-card__brand {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: .92rem;
	color: #fff;
	padding: 4px 6px;
}
.wp-card__brand-dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--green-500);
	box-shadow: 0 0 0 4px rgba(16,185,129,.2);
}
.wp-card__menu { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.wp-card__menu li {
	display: flex; align-items: center; gap: 8px;
	font-size: .76rem;
	padding: 7px 8px;
	border-radius: 6px;
	color: rgba(255,255,255,.55);
	letter-spacing: .01em;
}
.wp-card__menu li > span {
	width: 8px; height: 8px; border-radius: 2px;
	background: rgba(255,255,255,.18);
	flex: 0 0 8px;
}
.wp-card__menu li.is-active {
	background: rgba(16,185,129,.2);
	color: #fff;
}
.wp-card__menu li.is-active > span { background: var(--green-300); }
.wp-card__main {
	padding: 18px 22px 20px;
	display: flex; flex-direction: column; gap: 14px;
	min-width: 0;
}
.wp-card__head {
	display: flex; align-items: center; justify-content: space-between;
	gap: 12px;
}
.wp-card__head strong {
	font-family: var(--font-display); font-size: 1rem; color: var(--ink-900);
}
.wp-card__pill {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 4px 10px;
	border-radius: var(--r-pill);
	background: var(--green-50);
	color: var(--green-700);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.wp-card__pill::before {
	content: ""; width: 6px; height: 6px; border-radius: 50%;
	background: var(--green-500);
	box-shadow: 0 0 0 3px rgba(16,185,129,.18);
}
.wp-card__stats {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
	padding: 14px;
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	background: linear-gradient(135deg, var(--green-50) 0%, #fff 100%);
}
.wp-card__stats > div { display: grid; gap: 2px; min-width: 0; }
.wp-card__stat-num {
	font-family: var(--font-display); font-weight: 800;
	font-size: clamp(1.05rem, 1.5vw, 1.3rem);
	background: var(--grad-brand);
	-webkit-background-clip: text; background-clip: text;
	color: transparent;
	line-height: 1.1;
}
.wp-card__stat-lbl {
	font-size: .65rem; color: var(--ink-400);
	text-transform: uppercase; letter-spacing: .08em;
}
.wp-card__rows { display: grid; gap: 8px; flex: 1; align-content: end; }
.wp-card__row { display: flex; align-items: center; gap: 10px; }
.wp-card__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--mint-100); flex: 0 0 10px; }
.wp-card__dot--alt { background: var(--green-300); }
.wp-card__line { flex: 1; height: 8px; border-radius: 4px; background: linear-gradient(90deg, var(--mint-100), rgba(229,231,235,.3)); }
.wp-card__line--sm { max-width: 60%; }

@media (max-width: 540px) {
	.wp-card__inner { grid-template-columns: 90px 1fr; }
	.wp-card__sidebar { padding: 14px 8px; }
	.wp-card__menu li { font-size: .7rem; padding: 6px; }
	.wp-card__main { padding: 14px 16px 16px; }
}


/* Split layout — copy + visual side-by-side */
.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 80px);
	align-items: center;
}
.split--reverse .split__copy { order: 2; }
.split--reverse .split__visual { order: 1; }
@media (max-width: 900px) {
	.split { grid-template-columns: 1fr; gap: 40px; }
	.split--reverse .split__copy,
	.split--reverse .split__visual { order: unset; }
}
.split__copy h2 { margin-top: 12px; }
.split__copy p + p { margin-top: 1em; }
.split__copy .lede { margin-bottom: 18px; }

/* Bullet list (used inside .split__copy) */
.bullet-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.bullet-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-700); font-size: .98rem; line-height: 1.5; }
.bullet-list svg {
	width: 16px; height: 16px;
	color: var(--green-700);
	padding: 4px;
	background: var(--green-50);
	border: 1px solid var(--green-100);
	border-radius: 50%;
	box-sizing: content-box;
	flex: 0 0 16px;
	margin-top: 1px;
}

/* Visual card — minimalist abstract UI mockup for split sections */
.visual-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	box-shadow: var(--shadow-3);
	padding: 22px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}
.visual-card__bar {
	display: flex; gap: 7px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--border);
	margin-bottom: 18px;
}
.visual-card__bar span {
	width: 11px; height: 11px; border-radius: 50%;
	background: var(--mint-100); border: 1px solid var(--border);
}
.visual-card__body { display: grid; gap: 18px; }
.visual-card__hero {
	background: linear-gradient(135deg, var(--green-50) 0%, #fff 100%);
	border: 1px solid var(--green-100);
	border-radius: var(--r-md);
	padding: 22px;
	display: grid; gap: 14px;
}
.visual-card__pill {
	justify-self: start;
	padding: 5px 12px;
	border-radius: var(--r-pill);
	background: var(--green-100);
	color: var(--green-700);
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.visual-card__title-bar {
	height: 14px;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--green-300), var(--green-500));
	width: 80%;
}
.visual-card__title-bar--sm { width: 55%; opacity: .55; height: 10px; background: var(--mint-100); }
.visual-card__btn {
	justify-self: start;
	padding: 9px 18px;
	border-radius: var(--r-pill);
	background: var(--grad-brand);
	color: #fff;
	font-size: .82rem;
	font-weight: 600;
	box-shadow: var(--shadow-glow);
}
.visual-card__rows { display: grid; gap: 8px; }
.visual-card__row { height: 10px; border-radius: 4px; background: var(--mint-100); }
.visual-card__row--alt { width: 70%; opacity: .55; }

/* Pull quote (used in split visual on copy section) */
.pull-quote {
	max-width: 480px;
	margin: 0 auto;
	padding: 32px 36px;
	background: linear-gradient(180deg, #fff, var(--green-50));
	border: 1px solid rgba(16,185,129,.2);
	border-radius: var(--r-xl);
	box-shadow: var(--shadow-2);
	position: relative;
}
.pull-quote__mark {
	position: absolute; top: -8px; left: 24px;
	font-family: var(--font-display);
	font-size: 5rem;
	line-height: 1;
	color: var(--green-300);
	opacity: .8;
}
.pull-quote__body {
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 1.8vw, 1.5rem);
	font-weight: 600;
	color: var(--ink-900);
	line-height: 1.4;
	margin: 16px 0 18px;
}
.pull-quote__cite {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--green-700);
}

/* Featured CTA card — dark gradient block before global CTA banner */
.featured-cta {
	position: relative;
	overflow: clip;
	background:
		radial-gradient(circle at 80% -10%, rgba(16,185,129,.35), transparent 55%),
		linear-gradient(135deg, #0F172A 0%, #064E3B 100%);
	color: #fff;
	border-radius: var(--r-xl);
	padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
	box-shadow: var(--shadow-3);
}
.featured-cta__inner {
	position: relative; z-index: 1;
	max-width: 760px;
}
.featured-cta .display { color: #fff; margin-top: 10px; }
.featured-cta .lede { color: rgba(255,255,255,.78); }
.featured-cta .cta-row { margin-top: 28px; }
.featured-cta .aurora__a,
.featured-cta .aurora__b,
.featured-cta .aurora__c { opacity: .35; }

/* Light ghost button for dark backgrounds */
.btn--ghost-light {
	background: rgba(255,255,255,.06);
	color: #fff;
	border: 1px solid rgba(255,255,255,.25);
	box-shadow: none;
}
.btn--ghost-light:hover {
	background: rgba(255,255,255,.12);
	border-color: rgba(255,255,255,.4);
	color: #fff;
	transform: translateY(-1px);
}


/* App Development hero — wallet / dApp mockup card */
.app-card {
	position: absolute;
	inset: 36px 32px 36px 0;
	background: rgba(255,255,255,.95);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid var(--border);
	border-radius: var(--r-xl);
	box-shadow: var(--shadow-3);
	overflow: hidden;
	display: flex; flex-direction: column;
	z-index: 1;
}
.app-card__bar {
	display: flex; align-items: center; gap: 7px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--border);
	background: var(--off-white);
	flex: 0 0 auto;
}
.app-card__bar > span:not(.app-card__label) {
	width: 11px; height: 11px; border-radius: 50%;
	background: var(--mint-100);
	border: 1px solid var(--border);
}
.app-card__label {
	margin-left: auto;
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--ink-400);
}
.app-card__inner {
	padding: 18px 22px 20px;
	display: flex; flex-direction: column;
	gap: 14px;
	min-width: 0;
	flex: 1;
}
.app-card__head {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 12px;
}
.app-card__greet { display: block; font-size: .76rem; color: var(--ink-400); letter-spacing: .04em; text-transform: uppercase; }
.app-card__name {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--ink-900);
	display: block;
	margin-top: 2px;
}
.app-card__pill {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 5px 12px;
	border-radius: var(--r-pill);
	background: var(--green-50);
	color: var(--green-700);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	border: 1px solid var(--green-100);
}
.app-card__pill-dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--green-500);
	box-shadow: 0 0 0 3px rgba(16,185,129,.18);
}
.app-card__balance {
	background: linear-gradient(135deg, #064E3B 0%, #047857 60%, #10B981 130%);
	color: #fff;
	border-radius: var(--r-md);
	padding: 16px 18px;
	display: grid; gap: 4px;
	box-shadow: 0 18px 40px -22px rgba(16,185,129,.45);
}
.app-card__lbl {
	font-size: .7rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255,255,255,.66);
}
.app-card__num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(1.4rem, 2vw, 1.8rem);
	letter-spacing: -.01em;
	line-height: 1.1;
}
.app-card__num small {
	font-size: .65em;
	font-weight: 600;
	color: rgba(255,255,255,.7);
	margin-left: 1px;
}
.app-card__delta {
	font-size: .76rem;
	font-weight: 600;
	color: var(--green-300);
	letter-spacing: .02em;
}
.app-card__actions {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.app-card__actions span {
	padding: 10px;
	border-radius: var(--r-md);
	background: var(--green-50);
	border: 1px solid var(--green-100);
	color: var(--green-700);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: .82rem;
	text-align: center;
}
.app-card__activity {
	list-style: none; padding: 0; margin: 0;
	display: grid; gap: 8px;
	flex: 1;
	align-content: end;
}
.app-card__activity li {
	display: grid;
	grid-template-columns: 32px 1fr auto;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border-radius: var(--r-md);
	background: rgba(255,255,255,.6);
	border: 1px solid var(--border);
}
.app-card__activity strong {
	font-family: var(--font-display);
	font-size: .82rem;
	font-weight: 600;
	color: var(--ink-900);
	display: block;
	white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.app-card__activity span:not(.app-card__chip):not(.app-card__amount) {
	display: block;
	font-size: .68rem;
	color: var(--ink-400);
}
.app-card__chip {
	width: 32px; height: 32px;
	border-radius: 50%;
	display: grid; place-items: center;
	background: var(--green-50);
	color: var(--green-700);
	flex: 0 0 32px;
}
.app-card__chip svg { width: 14px; height: 14px; }
.app-card__chip--in {
	background: var(--grad-brand);
	color: #fff;
	box-shadow: var(--shadow-glow);
}
.app-card__chip--alt { background: rgba(245,158,11,.12); color: #B45309; }
.app-card__amount {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: .8rem;
	color: var(--green-700);
}
@media (max-width: 540px) {
	.app-card__inner { padding: 14px 16px 16px; gap: 12px; }
	.app-card__balance { padding: 14px; }
	.app-card__activity li { grid-template-columns: 28px 1fr auto; padding: 7px 8px; }
	.app-card__chip { width: 28px; height: 28px; flex: 0 0 28px; }
}


/* Code editor card — used in App Dev "Web3 deep dive" split */
.code-card {
	background: #0F172A;
	border: 1px solid #1F2937;
	border-radius: var(--r-xl);
	box-shadow: var(--shadow-3);
	overflow: hidden;
	max-width: 540px;
	margin: 0 auto;
}
.code-card__bar {
	display: flex; align-items: center; gap: 7px;
	padding: 12px 16px;
	background: #111827;
	border-bottom: 1px solid #1F2937;
}
.code-card__bar > span:not(.code-card__file) {
	width: 11px; height: 11px; border-radius: 50%;
	background: #374151;
}
.code-card__file {
	margin-left: auto;
	font-family: var(--font-mono);
	font-size: 11px;
	color: #94A3B8;
	letter-spacing: .04em;
}
.code-card__body {
	margin: 0;
	padding: 18px 22px 22px;
	font-family: var(--font-mono);
	font-size: .82rem;
	line-height: 1.6;
	color: #E2E8F0;
	white-space: pre;
	overflow-x: auto;
	display: block;
}
.code-card__body .code-line { display: block; }
.code-card__body .code-cmt { color: #6B7280; font-style: italic; }
.code-card__body .code-kw { color: #6EE7B7; }
.code-card__body .code-name { color: #FBBF24; }
.code-card__body .code-fn { color: #93C5FD; }
.code-card__body .code-num { color: #FCA5A5; }
.code-card__body .code-str { color: #FCD34D; }
@media (max-width: 540px) { .code-card__body { font-size: .72rem; padding: 14px 16px 16px; } }


/* Stack tag chips (App Dev tech stack section) */
.stack-groups {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(20px, 3vw, 36px);
}
@media (max-width: 800px) { .stack-groups { grid-template-columns: 1fr; } }
.stack-group__label {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--green-700);
	margin: 0 0 14px;
}
.stack-tags {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-wrap: wrap; gap: 8px;
}
.stack-tags li {
	padding: 8px 14px;
	border-radius: var(--r-pill);
	background: #fff;
	border: 1px solid var(--border);
	font-size: .88rem;
	color: var(--ink-700);
	font-weight: 500;
	transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.stack-tags li:hover {
	border-color: rgba(16,185,129,.4);
	background: var(--green-50);
	color: var(--green-700);
	transform: translateY(-1px);
}


/* 18. ---------------------------------------------------------- BACK TO TOP */
.back-to-top {
	position: fixed;
	right: clamp(16px, 3vw, 32px);
	bottom: clamp(16px, 3vw, 32px);
	z-index: 90;
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	color: #fff;
	background: var(--grad-brand);
	box-shadow:
		0 14px 30px -12px rgba(4, 120, 87, .55),
		0 6px 14px -6px rgba(16, 185, 129, .45),
		inset 0 1px 0 rgba(255, 255, 255, .25);
	opacity: 0;
	transform: translateY(16px) scale(.85);
	pointer-events: none;
	transition:
		opacity .28s var(--ease),
		transform .32s var(--ease),
		box-shadow .28s var(--ease),
		background .28s var(--ease);
}
.back-to-top[hidden] { display: none; }
.back-to-top.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}
.back-to-top:hover {
	transform: translateY(-3px) scale(1.04);
	box-shadow:
		0 22px 40px -14px rgba(4, 120, 87, .65),
		0 10px 18px -8px rgba(16, 185, 129, .55),
		inset 0 1px 0 rgba(255, 255, 255, .3);
}
.back-to-top:active { transform: translateY(-1px) scale(.98); }
.back-to-top:focus-visible {
	outline: none;
	box-shadow:
		0 0 0 3px #fff,
		0 0 0 6px var(--green-500),
		0 14px 30px -12px rgba(4, 120, 87, .55);
}
.back-to-top__icon {
	width: 22px;
	height: 22px;
	transition: transform .25s var(--ease);
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .18));
}
.back-to-top:hover .back-to-top__icon { transform: translateY(-2px); }

/* Subtle gradient progress ring — fills as the user scrolls down. */
.back-to-top__ring {
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background:
		conic-gradient(
			from 270deg,
			var(--green-300) 0deg,
			var(--green-500) calc(var(--scroll, 0) * 1deg),
			rgba(16, 185, 129, .12) calc(var(--scroll, 0) * 1deg),
			rgba(16, 185, 129, .08) 360deg
		);
	-webkit-mask:
		radial-gradient(circle, transparent 26px, #000 27px) content-box,
		radial-gradient(circle, transparent 26px, #000 27px);
	mask:
		radial-gradient(circle, transparent 26px, #000 27px) content-box,
		radial-gradient(circle, transparent 26px, #000 27px);
	opacity: .85;
	pointer-events: none;
}

@media (max-width: 600px) {
	.back-to-top { width: 46px; height: 46px; right: 16px; bottom: 16px; }
	.back-to-top__icon { width: 20px; height: 20px; }
}

@media (prefers-reduced-motion: reduce) {
	.back-to-top { transition: opacity .2s linear; transform: none !important; }
	.back-to-top:hover .back-to-top__icon { transform: none; }
}

/* 19. ---------------------------------------------------------- RESPONSIVE FINE-TUNES */
@media (max-width: 1024px) {
	.site-header__inner { gap: 12px; }
}
@media (max-width: 600px) {
	body { font-size: 16px; }
	.site-header { padding: 10px 0; }
	.site-header__inner { padding: 8px 8px 8px 12px; border-radius: var(--r-lg); gap: 10px; }
	.brand { gap: 8px; }
	.brand__mark { width: 30px; height: 30px; flex: 0 0 30px; }
	.brand__text { font-size: 13px; line-height: 1.05; }
	.btn { padding: 12px 18px; font-size: .94rem; }
	.cta-row { gap: 10px; }
	.section__head { margin-bottom: 32px; }
	.card { padding: 22px; }
	.niche { padding: 28px 22px; min-height: 0; }
	.expertise-card { padding: 26px; }
	.testimonial { padding: 22px; }
	.serp-card { padding: 16px 16px 14px; gap: 12px; }
	.serp-card__result { padding: 10px; }
	.serp-card__rank { width: 24px; height: 24px; flex: 0 0 24px; font-size: .82rem; }
	.featured-cta { padding: 36px 24px; }
}
