/*
Theme Name:  Hawk Glide SEO
Theme URI:   https://hawkglide.ae
Description: Premium SEO Agency theme for UAE market. Brand: #ee4265.
Version:     3.0.0
Author:      Hawk Glide
Text Domain: hawk-glide
*/

/* ==========================================================================
DESIGN SYSTEM — Hawk Glide v3
Palette: Crimson (#ee4265) + Obsidian (#0b0b0f) + White + Slate greys
Type: Sora (display) + Inter (body)
Direction: Sharp, premium, UAE-market authority
========================================================================== */

:root {
	/* ---- Palette ---- */
	--brand:       #ee4265;
	--brand-dark:  #cc2d52;
	--brand-soft:  #ff6b8a;
	--grad:        linear-gradient(135deg, #ff5a78 0%, #ee4265 50%, #cc1f45 100%);
	--grad-subtle: linear-gradient(135deg, rgba(238,66,101,.12) 0%, rgba(238,66,101,.04) 100%);

	--ink:         #0b0b0f;
	--ink-2:       #141418;
	--ink-3:       #1e1e26;
	--surface:     #ffffff;
	--surface-2:   #f7f8fc;
	--surface-3:   #f0f2f8;
	--border:      #e4e6ef;
	--border-dark: rgba(255,255,255,.1);

	--text-body:   #3d3d4e;
	--text-muted:  #757589;
	--text-light:  #a8a8be;

	/* ---- Type ---- */
	--display:  'Sora', system-ui, sans-serif;
	--body:     'Inter', system-ui, sans-serif;

	/* ---- Spacing & Shape ---- */
	--container:   1180px;
	--radius-sm:   10px;
	--radius:      18px;
	--radius-lg:   28px;
	--radius-pill: 999px;

	--shadow-sm:   0 4px 16px -6px rgba(11,11,15,.12);
	--shadow:      0 16px 48px -16px rgba(11,11,15,.22);
	--shadow-lg:   0 32px 80px -24px rgba(11,11,15,.32);
	--shadow-brand: 0 16px 44px -14px rgba(238,66,101,.45);

	--ease:        cubic-bezier(.22,.8,.2,1);
	--ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ==========================================================================
RESET & BASE
========================================================================== */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	font-family: var(--body);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-body);
	background: var(--surface);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
svg { display: block; }

/* ==========================================================================
LAYOUT UTILITIES
========================================================================== */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
.narrow  { max-width: 760px; margin-left: auto; margin-right: auto; }
.center  { text-align: center; }
.section { padding: clamp(64px, 9vw, 112px) 0; }

.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 9999;
	background: var(--ink); color: #fff; padding: 12px 20px;
	border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
TYPOGRAPHY
========================================================================== */
h1,h2,h3,h4 {
	font-family: var(--display);
	line-height: 1.1;
	letter-spacing: -.025em;
	color: var(--ink);
	font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.32rem); font-weight: 700; letter-spacing: -.015em; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { color: var(--text-body); }

.lead {
	font-size: clamp(1.05rem, 1.6vw, 1.22rem);
	color: var(--text-body);
	line-height: 1.75;
	max-width: 640px;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--display);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--brand);
	margin-bottom: 14px;
}
.eyebrow::before {
	content: '';
	display: block;
	width: 20px; height: 2px;
	background: var(--grad);
	border-radius: 2px;
	flex-shrink: 0;
}
.eyebrow.light { color: var(--brand-soft); }
.eyebrow.light::before { background: var(--brand-soft); }

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

.section-head { margin-bottom: 56px; }
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; }
.section-head p { margin-top: 16px; font-size: 1.06rem; color: var(--text-muted); }
.section-head h2 { margin-top: 4px; }

/* ==========================================================================
BUTTONS
========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--display);
	font-weight: 700;
	font-size: .96rem;
	letter-spacing: -.01em;
	padding: 15px 30px;
	border-radius: var(--radius-pill);
	border: 2px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .22s, color .22s, border-color .22s;
	text-decoration: none;
}
.btn-sm  { padding: 11px 22px; font-size: .88rem; }
.btn-lg  { padding: 18px 38px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary {
	background: var(--grad);
	color: #fff;
	box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 24px 56px -14px rgba(238,66,101,.6);
}

.btn-dark {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}
.btn-dark:hover {
	background: var(--ink-2);
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.btn-outline {
	background: transparent;
	color: var(--ink);
	border-color: var(--border);
}
.btn-outline:hover {
	border-color: var(--brand);
	color: var(--brand);
	transform: translateY(-2px);
}

.btn-ghost {
	background: rgba(255,255,255,.1);
	color: #fff;
	border-color: rgba(255,255,255,.25);
}
.btn-ghost:hover {
	background: #fff;
	color: var(--ink);
	border-color: #fff;
	transform: translateY(-3px);
}

.btn-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}
.btn-actions.center-actions { justify-content: center; }

/* ==========================================================================
HEADER
========================================================================== */
.custom-logo {
	max-height: 40px;
	object-fit: contain;
	width: auto;
}
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 900;
	padding: 18px 0;
	transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header.scrolled {
	background: rgba(11,11,15,.94);
	backdrop-filter: blur(20px) saturate(1.4);
	-webkit-backdrop-filter: blur(20px) saturate(1.4);
	box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 16px 48px -16px rgba(0,0,0,.4);
	padding: 12px 0;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

/* Logo */
.site-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	text-decoration: none;
}
.logo-mark {
	width: 38px; height: 38px;
	background: var(--grad);
	border-radius: 10px;
	display: grid;
	place-items: center;
	font-family: var(--display);
	font-weight: 800;
	font-size: 1.2rem;
	color: #fff;
	letter-spacing: -.02em;
	flex-shrink: 0;
}
.logo-text {
	font-family: var(--display);
	font-size: 1.22rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -.02em;
	line-height: 1;
}
.logo-text span { color: var(--brand-soft); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; }
.nav-list a {
	font-family: var(--display);
	font-size: .88rem;
	font-weight: 600;
	color: rgba(255,255,255,.78);
	padding: 8px 14px;
	border-radius: var(--radius-pill);
	transition: color .2s, background .2s;
	letter-spacing: -.01em;
}
.nav-list a:hover,
.nav-list a.active {
	color: #fff;
	background: rgba(255,255,255,.1);
}

.nav-cta {
	margin-left: 12px;
	font-family: var(--display);
	font-size: .88rem;
	font-weight: 700;
	color: #fff;
	background: var(--grad);
	padding: 10px 22px;
	border-radius: var(--radius-pill);
	transition: transform .25s var(--ease), box-shadow .25s var(--ease);
	box-shadow: 0 8px 24px -8px rgba(238,66,101,.5);
	white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -10px rgba(238,66,101,.6); }

/* Hamburger */
.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	border-radius: 8px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	transition: background .2s;
}
.nav-toggle:hover { background: rgba(255,255,255,.14); }
.nav-toggle span {
	display: block;
	width: 22px; height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
HERO — Homepage
========================================================================== */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	background: var(--ink);
	overflow: hidden;
	padding: clamp(100px, 12vw, 140px) 0 clamp(80px, 10vw, 120px);
}

/* Atmospheric mesh gradient */
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 800px 600px at 80% 30%, rgba(238,66,101,.18) 0%, transparent 60%),
		radial-gradient(ellipse 600px 400px at 20% 80%, rgba(238,66,101,.08) 0%, transparent 50%),
		radial-gradient(ellipse 400px 300px at 60% 100%, rgba(204,45,82,.12) 0%, transparent 40%);
	pointer-events: none;
}

/* Animated background grid */
.hero-grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse 80% 80% at center, black 20%, transparent 80%);
	pointer-events: none;
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 64px;
	align-items: center;
}

.hero-copy h1 {
	color: #fff;
	margin-bottom: 24px;
}
.hero-copy .lead {
	color: rgba(255,255,255,.72);
	margin-bottom: 36px;
}
.hero-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 36px;
}
.hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--display);
	font-size: .8rem;
	font-weight: 600;
	color: rgba(255,255,255,.7);
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.1);
	padding: 8px 15px;
	border-radius: var(--radius-pill);
}
.hero-pill-dot {
	width: 6px; height: 6px;
	background: var(--brand-soft);
	border-radius: 50%;
	flex-shrink: 0;
}

/* Hero visual — animated SEO graphic */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-stack { position: relative; width: 360px; height: 420px; }

.hv-card {
	position: absolute;
	background: rgba(255,255,255,.06);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: var(--radius);
	padding: 20px 22px;
}

.hv-card-main {
	left: 0; right: 0; top: 60px;
	background: rgba(30,30,38,.95);
	border-color: rgba(238,66,101,.3);
}

.hv-metric {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255,255,255,.06);
}
.hv-metric:last-child { border-bottom: none; padding-bottom: 0; }
.hv-metric-label { font-size: .8rem; color: rgba(255,255,255,.5); font-family: var(--display); }
.hv-metric-val { font-family: var(--display); font-weight: 700; color: #fff; font-size: .92rem; }
.hv-metric-val.up { color: #4ade80; }
.hv-metric-val.brand { color: var(--brand-soft); }
.hv-meta { font-size: .75rem; color: rgba(255,255,255,.35); font-family: var(--display); margin-bottom: 14px; letter-spacing: .05em; text-transform: uppercase; }
.hv-title { font-family: var(--display); font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 16px; }

.hv-card-floating {
	right: -24px; top: 0;
	width: 160px;
	background: rgba(238,66,101,.9);
	backdrop-filter: blur(12px);
	animation: hvFloat 4s ease-in-out infinite;
}
.hv-card-floating .hv-fl-num {
	font-family: var(--display);
	font-weight: 800;
	font-size: 2rem;
	color: #fff;
	line-height: 1;
}
.hv-card-floating .hv-fl-label {
	font-size: .78rem;
	color: rgba(255,255,255,.75);
	font-family: var(--display);
	margin-top: 4px;
}

.hv-card-bottom {
	left: -20px; bottom: 0;
	width: 200px;
	background: rgba(20,20,24,.95);
	border-color: rgba(255,255,255,.12);
	animation: hvFloat 5s ease-in-out infinite .8s;
}
.hv-rank {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 0;
}
.hv-rank-badge {
	width: 28px; height: 28px;
	background: var(--grad);
	border-radius: 8px;
	display: grid;
	place-items: center;
	font-family: var(--display);
	font-weight: 800;
	font-size: .75rem;
	color: #fff;
	flex-shrink: 0;
}
.hv-rank-info { font-size: .8rem; }
.hv-rank-pos { font-family: var(--display); font-weight: 700; color: #fff; font-size: .82rem; }
.hv-rank-kw  { font-size: .73rem; color: rgba(255,255,255,.45); }

@keyframes hvFloat {
	0%,100% { transform: translateY(0) rotate(0deg); }
	50%      { transform: translateY(-8px) rotate(.5deg); }
}

/* ==========================================================================
PAGE HERO (interior pages)
========================================================================== */
.page-hero {
	background: var(--ink);
	position: relative;
	overflow: hidden;
	padding: clamp(100px, 11vw, 140px) 0 clamp(56px, 7vw, 88px);
	color: #fff;
}
.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 700px 400px at 80% -10%, rgba(238,66,101,.18) 0%, transparent 60%);
	pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--brand-soft); }
.page-hero h1 { color: #fff; margin: 8px 0 20px; }
.page-hero .lead { color: rgba(255,255,255,.72); }

.breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: .82rem;
	color: rgba(255,255,255,.4);
	margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.breadcrumb a:hover { color: var(--brand-soft); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }
.breadcrumb [aria-current] { color: rgba(255,255,255,.7); }

/* ==========================================================================
TRUST BAR
========================================================================== */
.trust-bar {
	background: var(--surface-2);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 18px 0;
}
.trust-bar-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 30px;
}
.trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--display);
	font-size: .82rem;
	font-weight: 600;
	color: var(--text-muted);
}
.trust-icon {
	width: 28px; height: 28px;
	background: rgba(238,66,101,.1);
	border-radius: 7px;
	display: grid;
	place-items: center;
	font-size: .9rem;
	flex-shrink: 0;
}
.trust-divider {
	width: 1px; height: 24px;
	background: var(--border);
}

/* ==========================================================================
SECTIONS — DARK
========================================================================== */
.section-dark {
	background: var(--ink);
	color: #fff;
}
.section-dark h2,
.section-dark h3 { color: #fff; }
.section-dark p  { color: var(--text-light); }
.section-dark .eyebrow { color: var(--brand-soft); }
.section-dark .eyebrow::before { background: var(--brand-soft); }

.section-ink2 {
	background: var(--ink-2);
	color: #fff;
}
.section-ink2 h2, .section-ink2 h3 { color: #fff; }
.section-ink2 p { color: var(--text-light); }

.section-tinted { background: var(--surface-2); }

/* ==========================================================================
STAT CARDS
========================================================================== */
.stats-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2px;
	background: var(--border);
	border-radius: var(--radius);
	overflow: hidden;
}
.stat-card {
	background: var(--surface);
	padding: 36px 28px;
	text-align: center;
}
.stat-num {
	font-family: var(--display);
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 800;
	color: var(--ink);
	line-height: 1;
	margin-bottom: 6px;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.stat-label {
	font-size: .88rem;
	color: var(--text-muted);
	font-family: var(--display);
	font-weight: 600;
}

/* Dark stats row variant */
.stats-row.dark { background: rgba(255,255,255,.04); }
.stats-row.dark .stat-card { background: transparent; }
.stats-row.dark .stat-label { color: var(--text-light); }

/* ==========================================================================
SERVICE CARDS
========================================================================== */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 20px;
}

.service-card {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 30px;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.service-card::after {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; height: 3px;
	background: var(--grad);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s var(--ease);
	border-radius: var(--radius) var(--radius) 0 0;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }

.service-card-icon {
	width: 54px; height: 54px;
	border-radius: 14px;
	background: var(--grad-subtle);
	display: grid;
	place-items: center;
	font-size: 1.4rem;
	transition: background .3s;
}
.service-card:hover .service-card-icon { background: var(--grad); }
.service-card:hover .service-card-icon svg,
.service-card:hover .service-card-icon .sc-emoji { filter: brightness(100) saturate(0); }

.service-card h3 { color: var(--ink); }
.service-card p  { font-size: .94rem; color: var(--text-muted); flex: 1; }
.service-card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--display);
	font-size: .86rem;
	font-weight: 700;
	color: var(--brand);
	transition: gap .2s;
	margin-top: 4px;
}
.service-card:hover .service-card-link { gap: 10px; }

/* ==========================================================================
FEATURES GRID
========================================================================== */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 28px;
}
.feature-item {
	padding: 28px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: box-shadow .3s;
}
.feature-item:hover { box-shadow: var(--shadow-sm); }
.feature-item-icon {
	width: 48px; height: 48px;
	background: var(--grad-subtle);
	border-radius: 12px;
	display: grid;
	place-items: center;
	font-size: 1.3rem;
	margin-bottom: 16px;
}
.feature-item h3 { color: var(--ink); margin-bottom: 8px; }
.feature-item p  { font-size: .93rem; color: var(--text-muted); }

/* Dark variant */
.section-dark .feature-item,
.section-ink2 .feature-item {
	background: rgba(255,255,255,.04);
	border-color: rgba(255,255,255,.07);
}
.section-dark .feature-item h3 { color: #fff; }
.section-dark .feature-item p  { color: var(--text-light); }
.section-dark .feature-item:hover { box-shadow: 0 8px 32px -12px rgba(0,0,0,.4); }

/* ==========================================================================
PROCESS STEPS
========================================================================== */
.process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 2px;
	background: rgba(255,255,255,.06);
	border-radius: var(--radius);
	overflow: hidden;
}
.process-step {
	padding: 36px 30px;
	background: rgba(255,255,255,.03);
	position: relative;
}
.process-step::before {
	content: '';
	position: absolute;
	top: 0; left: 30px; right: 30px; height: 2px;
	background: rgba(238,66,101,.3);
}
.step-num {
	font-family: var(--display);
	font-size: 2.8rem;
	font-weight: 800;
	color: rgba(238,66,101,.2);
	line-height: 1;
	margin-bottom: 16px;
	letter-spacing: -.04em;
}
.process-step h3 { color: #fff; margin-bottom: 10px; }
.process-step p  { font-size: .92rem; color: var(--text-light); }

/* ==========================================================================
SPLIT SECTIONS
========================================================================== */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-copy h2 { margin-bottom: 18px; }
.split-copy p  { margin-bottom: 14px; }
.split-copy .btn-actions { margin-top: 24px; }

.check-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: .96rem;
	color: var(--text-body);
}
.check-list li::before {
	content: '';
	display: block;
	width: 20px; height: 20px;
	background: var(--grad);
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 2px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M7 10.5l2.5 2.5 4-5'/%3E%3C/svg%3E");
	background-size: cover;
	box-shadow: 0 4px 12px -4px rgba(238,66,101,.5);
}
.check-list.light li { color: rgba(255,255,255,.8); }

/* ==========================================================================
RESULT BARS VISUAL
========================================================================== */
.result-bars-wrap {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: var(--radius);
	padding: 32px 28px 20px;
}
.result-bars-label {
	font-family: var(--display);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: rgba(255,255,255,.35);
	margin-bottom: 24px;
}
.result-bars {
	display: flex;
	align-items: flex-end;
	gap: 12px;
	height: 180px;
}
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bar {
	width: 100%;
	background: var(--grad);
	border-radius: 6px 6px 0 0;
	height: var(--h, 50%);
	transform-origin: bottom;
	animation: barGrow 1s var(--ease) both;
	animation-delay: var(--d, 0s);
	box-shadow: 0 8px 24px -8px rgba(238,66,101,.4);
}
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.bar-month { font-family: var(--display); font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.4); }

/* ==========================================================================
TESTIMONIALS
========================================================================== */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 22px;
}
.testimonial {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	transition: box-shadow .3s;
}
.testimonial:hover { box-shadow: var(--shadow); }
.testimonial-stars {
	color: var(--brand);
	font-size: 1rem;
	letter-spacing: 2px;
	margin-bottom: 14px;
}
.testimonial blockquote {
	font-size: .97rem;
	color: var(--text-body);
	line-height: 1.7;
	margin-bottom: 18px;
}
.testimonial figcaption {
	font-family: var(--display);
	font-size: .82rem;
	font-weight: 600;
	color: var(--text-muted);
}

/* ==========================================================================
FAQ ACCORDION
========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	font-family: var(--display);
	font-size: 1rem;
	font-weight: 700;
	color: var(--ink);
	text-align: left;
	cursor: pointer;
	background: none;
	border: none;
	transition: color .2s;
}
.faq-q:hover { color: var(--brand); }
.faq-icon {
	width: 28px; height: 28px;
	background: var(--surface-3);
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 1.1rem;
	color: var(--brand);
	flex-shrink: 0;
	transition: background .3s, transform .3s var(--ease);
	font-style: normal;
}
.faq-q[aria-expanded="true"] .faq-icon {
	background: var(--brand);
	color: #fff;
	transform: rotate(45deg);
}
.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s var(--ease);
}
.faq-a-inner {
	padding: 0 24px 20px;
	color: var(--text-muted);
	font-size: .97rem;
	line-height: 1.75;
}

/* Dark FAQ */
.section-dark .faq-item {
	background: rgba(255,255,255,.04);
	border-color: rgba(255,255,255,.07);
}
.section-dark .faq-q { color: #fff; }
.section-dark .faq-q:hover { color: var(--brand-soft); }
.section-dark .faq-icon { background: rgba(255,255,255,.08); }
.section-dark .faq-a-inner { color: var(--text-light); }

/* ==========================================================================
PRICING SECTION — GLOBAL
========================================================================== */
.pricing-toggle-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 44px;
}
.pricing-toggle {
	display: flex;
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	padding: 4px;
	gap: 0;
}
.pricing-toggle-btn {
	font-family: var(--display);
	font-size: .86rem;
	font-weight: 700;
	color: var(--text-muted);
	padding: 9px 22px;
	border-radius: var(--radius-pill);
	transition: background .25s, color .25s, box-shadow .25s;
	cursor: pointer;
	background: none;
	border: none;
}
.pricing-toggle-btn.active {
	background: var(--ink);
	color: #fff;
	box-shadow: var(--shadow-sm);
}
.pricing-save-badge {
	background: rgba(74,222,128,.15);
	color: #16a34a;
	border: 1px solid rgba(74,222,128,.3);
	font-family: var(--display);
	font-size: .76rem;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: var(--radius-pill);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 22px;
	align-items: start;
}

.pricing-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px 32px;
	position: relative;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card.featured {
	background: var(--ink);
	border-color: var(--brand);
	box-shadow: 0 0 0 1px var(--brand), var(--shadow-brand);
	transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--grad);
	color: #fff;
	font-family: var(--display);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 5px 18px;
	border-radius: var(--radius-pill);
	white-space: nowrap;
}

.pricing-name {
	font-family: var(--display);
	font-weight: 800;
	font-size: 1.05rem;
	color: var(--ink);
	margin-bottom: 6px;
}
.pricing-card.featured .pricing-name { color: #fff; }

.pricing-desc {
	font-size: .9rem;
	color: var(--text-muted);
	margin-bottom: 24px;
}
.pricing-card.featured .pricing-desc { color: var(--text-light); }

.pricing-amount-wrap {
	display: flex;
	align-items: baseline;
	gap: 4px;
	margin-bottom: 8px;
}
.pricing-currency {
	font-family: var(--display);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-muted);
}
.pricing-card.featured .pricing-currency { color: rgba(255,255,255,.6); }
.pricing-amount {
	font-family: var(--display);
	font-size: clamp(2.4rem, 4vw, 3rem);
	font-weight: 800;
	color: var(--ink);
	line-height: 1;
	transition: opacity .25s, transform .25s var(--ease-spring);
}
.pricing-card.featured .pricing-amount { color: #fff; }
.pricing-period {
	font-size: .82rem;
	color: var(--text-muted);
	margin-bottom: 28px;
}
.pricing-card.featured .pricing-period { color: var(--text-light); }

.pricing-divider {
	height: 1px;
	background: var(--border);
	margin: 24px 0;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,.1); }

.pricing-features {
	list-style: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin-bottom: 28px;
}
.pricing-feature {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: .93rem;
	color: var(--text-body);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,.8); }
.pricing-check {
	width: 18px; height: 18px;
	background: rgba(74,222,128,.15);
	border: 1px solid rgba(74,222,128,.4);
	border-radius: 50%;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	margin-top: 1px;
	font-size: .7rem;
	color: #16a34a;
}
.pricing-card.featured .pricing-check {
	background: rgba(255,255,255,.1);
	border-color: rgba(255,255,255,.2);
	color: #fff;
}

/* ==========================================================================
INDUSTRIES GRID
========================================================================== */
.industries-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 14px;
}
.industry-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
	text-decoration: none;
}
.industry-card:hover {
	transform: translateY(-3px);
	border-color: var(--brand);
	box-shadow: var(--shadow-sm);
}
.industry-card-icon {
	font-size: 1.4rem;
	flex-shrink: 0;
}
.industry-card-name {
	font-family: var(--display);
	font-size: .88rem;
	font-weight: 700;
	color: var(--ink);
}

/* ==========================================================================
LOCATION CARDS (hub pages)
========================================================================== */
.location-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 18px;
}
.location-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
	text-decoration: none;
	color: inherit;
}
.location-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
	border-color: rgba(238,66,101,.3);
}
.location-card-city {
	font-family: var(--display);
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--ink);
}
.location-card-industry {
	font-size: .86rem;
	color: var(--text-muted);
}
.location-card-arrow {
	margin-top: auto;
	font-family: var(--display);
	font-size: .82rem;
	font-weight: 700;
	color: var(--brand);
	display: flex;
	align-items: center;
	gap: 6px;
	transition: gap .2s;
}
.location-card:hover .location-card-arrow { gap: 10px; }

/* ==========================================================================
CONTACT FORM
========================================================================== */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
	font-family: var(--display);
	font-size: .84rem;
	font-weight: 700;
	color: var(--ink);
}
.field input,
.field textarea,
.field select {
	width: 100%;
	padding: 14px 16px;
	font-family: var(--body);
	font-size: .96rem;
	color: var(--ink);
	background: var(--surface-2);
	border: 1.5px solid var(--border);
	border-radius: var(--radius-sm);
	transition: border-color .2s, box-shadow .2s, background .2s;
	outline: none;
	-webkit-appearance: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
	border-color: var(--brand);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(238,66,101,.12);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

/* Dark form variant */
.form-dark .field label { color: rgba(255,255,255,.85); }
.form-dark .field input,
.form-dark .field textarea,
.form-dark .field select {
	background: rgba(255,255,255,.06);
	border-color: rgba(255,255,255,.12);
	color: #fff;
}
.form-dark .field input::placeholder,
.form-dark .field textarea::placeholder { color: rgba(255,255,255,.3); }
.form-dark .field input:focus,
.form-dark .field textarea:focus {
	border-color: var(--brand-soft);
	background: rgba(255,255,255,.09);
	box-shadow: 0 0 0 3px rgba(238,66,101,.2);
}

.form-note { font-size: .88rem; margin-top: -6px; }
.form-note.ok { color: #16a34a; }
.form-note.err { color: #dc2626; }

/* ==========================================================================
CTA BAND — GLOBAL
========================================================================== */
.cta-band {
	background: var(--ink);
	position: relative;
	overflow: hidden;
	padding: clamp(56px, 7vw, 80px) 0;
}
.cta-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 800px 400px at 50% 50%, rgba(238,66,101,.2) 0%, transparent 60%);
	pointer-events: none;
}
.cta-band-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 28px;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.cta-band p  { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 560px; }
.cta-band .btn-actions { justify-content: center; }

/* ==========================================================================
FOOTER
========================================================================== */
.site-footer {
	background: var(--ink-2);
	color: rgba(255,255,255,.65);
	padding: clamp(56px, 7vw, 80px) 0 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr repeat(3, 1fr);
	gap: 40px 32px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand-col .site-logo { margin-bottom: 18px; }
.footer-brand-col p {
	font-size: .9rem;
	line-height: 1.7;
	color: rgba(255,255,255,.5);
	margin-bottom: 20px;
	max-width: 300px;
}
.footer-contact-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer-contact-links a {
	font-size: .88rem;
	color: rgba(255,255,255,.5);
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color .2s;
}
.footer-contact-links a:hover { color: var(--brand-soft); }

.footer-col h4 {
	font-family: var(--display);
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255,255,255,.35);
	margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
	font-size: .9rem;
	color: rgba(255,255,255,.5);
	transition: color .2s;
}
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
	padding: 22px 0;
}
.footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.3); }

/* Back to top */
.back-to-top {
	position: fixed;
	bottom: 28px; right: 28px;
	width: 44px; height: 44px;
	background: var(--grad);
	color: #fff;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-size: 1.1rem;
	box-shadow: var(--shadow-brand);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity .3s, visibility .3s, transform .3s var(--ease);
	z-index: 800;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ==========================================================================
SEO PAGE (Location × Industry pages)
========================================================================== */
.seo-page-hero { background: var(--ink); }
.seo-hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 32px;
}
.seo-hero-stat {
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: var(--radius-sm);
	padding: 14px 20px;
	min-width: 120px;
}
.seo-hero-stat strong {
	display: block;
	font-family: var(--display);
	font-size: 1.4rem;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	margin-bottom: 4px;
}
.seo-hero-stat span {
	font-size: .78rem;
	color: rgba(255,255,255,.5);
	font-family: var(--display);
}

.seo-content-block {
	font-size: 1.04rem;
	line-height: 1.82;
	color: var(--text-body);
	max-width: 820px;
}
.seo-content-block h2,
.seo-content-block h3 { margin: 28px 0 12px; }
.seo-content-block p  { margin-bottom: 16px; }

/* ==========================================================================
TAXONOMY HUB PAGES
========================================================================== */
.hub-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}
.hub-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: transform .3s var(--ease), box-shadow .3s;
	text-decoration: none;
	color: inherit;
	position: relative;
	overflow: hidden;
}
.hub-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; height: 3px;
	background: var(--grad);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s var(--ease);
}
.hub-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.hub-card:hover::before { transform: scaleX(1); }
.hub-card-eyebrow {
	font-family: var(--display);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--brand);
}
.hub-card-title {
	font-family: var(--display);
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--ink);
}
.hub-card-meta {
	font-size: .85rem;
	color: var(--text-muted);
}
.hub-card-arrow {
	margin-top: 8px;
	font-family: var(--display);
	font-size: .83rem;
	font-weight: 700;
	color: var(--brand);
	display: flex;
	align-items: center;
	gap: 6px;
	transition: gap .2s;
}
.hub-card:hover .hub-card-arrow { gap: 10px; }

/* ==========================================================================
INLINE CTA BLOCKS (from shortcodes)
========================================================================== */
.inline-cta {
	background: var(--grad);
	border-radius: var(--radius);
	padding: 28px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin: 36px 0;
}
.inline-cta p {
	color: rgba(255,255,255,.9);
	font-size: 1.02rem;
	max-width: 480px;
	flex: 1;
}
.inline-cta a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: var(--brand-dark);
	font-family: var(--display);
	font-weight: 700;
	font-size: .96rem;
	padding: 13px 26px;
	border-radius: var(--radius-pill);
	transition: transform .25s var(--ease), box-shadow .25s;
	white-space: nowrap;
	flex-shrink: 0;
}
.inline-cta a:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -10px rgba(0,0,0,.25); }
.inline-cta a svg { width: 18px; height: 18px; }
.inline-cta.soft {
	background: rgba(238,66,101,.07);
	border: 1px solid rgba(238,66,101,.2);
}
.inline-cta.soft p { color: var(--text-body); }
.inline-cta.soft a { background: var(--grad); color: #fff; box-shadow: var(--shadow-brand); }

/* ==========================================================================
SCROLL REVEAL
========================================================================== */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
BLOG / SINGULAR
========================================================================== */
.entry-content {
	font-size: 1.06rem;
	line-height: 1.85;
	color: var(--text-body);
}
.entry-content h2,
.entry-content h3 { margin: 32px 0 14px; }
.entry-content p   { margin-bottom: 18px; }
.entry-content a   { color: var(--brand); text-decoration: underline; }
.entry-content ul,
.entry-content ol  { padding-left: 24px; margin-bottom: 18px; }
.entry-content li  { margin-bottom: 6px; }

/* ==========================================================================
404 PAGE
========================================================================== */
.notfound-section {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--ink);
	color: #fff;
	padding: 80px 0;
}
.notfound-num {
	font-family: var(--display);
	font-size: clamp(7rem, 18vw, 14rem);
	font-weight: 800;
	line-height: 1;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 16px;
}
.notfound-section h2 { color: #fff; margin-bottom: 14px; }
.notfound-section p  { color: rgba(255,255,255,.6); margin-bottom: 32px; }

/* ==========================================================================
   SEO PAGE — Two-column body layout (main + sticky sidebar)
   Add these rules to the bottom of style.css
   ========================================================================== */

/* Hero badge (large emoji above eyebrow) */
.seo-hero-badge {
  font-size: 2.6rem;
  margin-bottom: 12px;
  display: block;
}

/* Trust pills row below hero CTAs */
.seo-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 24px;
}
.seo-hero-trust span {
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}

/* ── Page body wrapper ── */
.seo-page-body {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--surface);
}

/* Two-column layout: main content + sticky sidebar */
.seo-content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* Main column sections — spacing between each */
.seo-main-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.seo-section {
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--border);
}
.seo-section:first-child { padding-top: 0; }
.seo-section:last-child  { border-bottom: none; }
.seo-section > .eyebrow  { margin-bottom: 10px; }
.seo-section > h2        { margin-bottom: 18px; }
.seo-section > p         { margin-bottom: 24px; color: var(--text-muted); }

.seo-section-tinted { background: var(--surface-2); padding-left: 28px; padding-right: 28px; border-radius: var(--radius); }

.seo-section-dark {
  background: var(--ink);
  border-radius: var(--radius);
  padding-left: 32px;
  padding-right: 32px;
  border-bottom: none;
  margin-bottom: 0;
}
.seo-section-dark h2 { color: #fff; }
.seo-section-dark p  { color: var(--text-light); }

/* Why-grid: 2×2 benefit cards */
.seo-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.seo-why-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: box-shadow .25s;
}
.seo-why-card:hover { box-shadow: var(--shadow-sm); }
.seo-why-icon { font-size: 1.5rem; margin-bottom: 10px; }
.seo-why-card h4 { font-size: 1rem; color: var(--ink); margin-bottom: 6px; }
.seo-why-card p  { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* Stat strip */
.seo-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 32px;
}
.seo-stat-item {
  background: var(--surface);
  padding: 20px 16px;
  text-align: center;
}
.seo-stat-item strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.6rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}
.seo-stat-item span {
  font-size: .78rem;
  font-family: var(--display);
  font-weight: 600;
  color: var(--text-muted);
}

/* ── SIDEBAR ── */
.seo-sidebar {
  position: sticky;
  top: 90px; /* accounts for fixed header */
}

.seo-sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seo-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

/* CTA sidebar card — gradient border */
.seo-sidebar-cta {
  background: var(--ink);
  border-color: rgba(238,66,101,.4);
  box-shadow: 0 0 0 1px rgba(238,66,101,.15), var(--shadow-brand);
  text-align: center;
}
.seo-sidebar-cta-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}
.seo-sidebar-cta h3 {
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.seo-sidebar-cta p {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  margin-bottom: 0;
}

/* Quick facts list */
.seo-sidebar-card-title {
  font-family: var(--display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.seo-sidebar-facts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.seo-sidebar-facts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.seo-sidebar-facts li:last-child { border-bottom: none; padding-bottom: 0; }
.seo-sb-fact-label { color: var(--text-muted); font-size: .84rem; }
.seo-sb-fact-val { font-family: var(--display); font-weight: 700; color: var(--ink); font-size: .88rem; text-align: right; }

/* Sidebar links */
.seo-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  padding: 0;
}
.seo-sidebar-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--text-body);
  transition: background .2s, color .2s;
  text-decoration: none;
}
.seo-sidebar-links li a:hover { background: var(--surface-2); color: var(--brand); }
.seo-sb-arrow {
  margin-left: auto;
  color: var(--brand);
  font-size: .85rem;
}

/* ==========================================================================
   RESPONSIVE — SEO page two-column layout
   ========================================================================== */
@media (max-width: 1024px) {
  .seo-content-layout {
    grid-template-columns: 1fr;
  }
  .seo-sidebar {
    position: static;
    /* On mobile, show CTA card first, rest collapsed */
  }
  .seo-sidebar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .seo-sidebar-cta {
    grid-column: 1 / -1;
  }
  .seo-stat-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .seo-why-grid {
    grid-template-columns: 1fr;
  }
  .seo-sidebar-inner {
    grid-template-columns: 1fr;
  }
  .seo-stat-strip {
    grid-template-columns: 1fr 1fr;
  }
  .seo-section-tinted,
  .seo-section-dark {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: var(--radius-sm);
  }
}

@media (max-width: 480px) {
  .seo-stat-strip {
    grid-template-columns: 1fr;
  }
  .seo-hero-trust {
    gap: 8px 12px;
  }
}

/* ==========================================================================
RESPONSIVE
========================================================================== */
@media (max-width: 1024px) {
	.hero-inner { grid-template-columns: 1fr; }
	.hero-visual { display: none; }
	.split { grid-template-columns: 1fr; gap: 40px; }
	.split.reverse { direction: ltr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.pricing-card.featured { transform: scale(1); }
}

@media (max-width: 768px) {
	.nav-toggle { display: flex; }
	.main-nav {
		display: none;
		position: fixed;
		top: 0; left: 0; right: 0; bottom: 0;
		background: rgba(11,11,15,.97);
		backdrop-filter: blur(20px);
		z-index: 850;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0;
	}
	.main-nav.open { display: flex; }
	.nav-list { flex-direction: column; gap: 8px; text-align: center; }
	.nav-list a { font-size: 1.4rem; padding: 12px 32px; }
	.nav-cta { margin: 16px 0 0; font-size: 1rem; padding: 14px 36px; }
	.nav-toggle { position: relative; z-index: 860; }
	.nav-toggle.open { background: rgba(255,255,255,.06); }

	.features-grid { grid-template-columns: 1fr; }
	.process-grid  { grid-template-columns: 1fr 1fr; }
	.pricing-grid  { grid-template-columns: 1fr; }
	.footer-grid   { grid-template-columns: 1fr; }
	.footer-brand-col p { max-width: 100%; }
	.trust-divider { display: none; }
	.field-row { grid-template-columns: 1fr; }
	.industries-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
	.stats-row { grid-template-columns: 1fr 1fr; }
	.result-bars { height: 140px; }
}

@media (max-width: 480px) {
	.hero-pills { gap: 8px; }
	.process-grid { grid-template-columns: 1fr; }
	.testimonials-grid { grid-template-columns: 1fr; }
	.pricing-grid { grid-template-columns: 1fr; }
	.hub-cards-grid { grid-template-columns: 1fr; }
	.location-cards-grid { grid-template-columns: 1fr; }
	.services-grid { grid-template-columns: 1fr; }
	.stats-row { grid-template-columns: 1fr; }
	.cta-band .btn-actions { flex-direction: column; align-items: stretch; }
	.inline-cta { flex-direction: column; text-align: center; }
}

/* ==========================================================================
SEO PAGE (single-seo-page.php) — all sp-* component styles
Append these rules to the bottom of style.css
========================================================================== */

/* ── Hero ── */
.sp-hero {
	background: var(--ink);
	color: #fff;
	padding: clamp(100px,11vw,140px) 0 clamp(56px,7vw,80px);
	position: relative;
	overflow: hidden;
}
.sp-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 700px 400px at 75% -10%, rgba(238,66,101,.2) 0%, transparent 60%),
		radial-gradient(ellipse 500px 300px at 15% 100%, rgba(238,66,101,.08) 0%, transparent 50%);
	pointer-events: none;
}
.sp-hero .container { position: relative; z-index: 2; }
.sp-hero h1 { color: #fff; margin: 14px 0 22px; max-width: 820px; }
.sp-hero .lead { color: rgba(255,255,255,.78); max-width: 660px; margin-bottom: 32px; }

/* Breadcrumb */
.sp-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 10px;
	font-size: .84rem;
	color: rgba(255,255,255,.45);
	margin-bottom: 20px;
}
.sp-breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.sp-breadcrumb a:hover { color: var(--brand-soft); }
.sp-breadcrumb span[aria-hidden] { color: rgba(255,255,255,.25); }
.sp-breadcrumb [aria-current] { color: rgba(255,255,255,.7); }

/* Tag badges */
.sp-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.sp-tag {
	background: rgba(238,66,101,.14);
	color: var(--brand-soft);
	border: 1px solid rgba(238,66,101,.28);
	padding: 5px 14px;
	border-radius: var(--radius-pill);
	font-family: var(--display);
	font-size: .8rem;
	font-weight: 600;
}

/* Hero actions */
.sp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

/* Hero stats */
.sp-hero-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 28px 40px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.sp-hero-stats li { display: flex; flex-direction: column; gap: 3px; }
.sp-hero-stats strong {
	font-family: var(--display);
	font-size: 1.7rem;
	font-weight: 800;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	line-height: 1;
}
.sp-hero-stats span {
	font-size: .78rem;
	color: rgba(255,255,255,.45);
	text-transform: uppercase;
	letter-spacing: .08em;
	font-family: var(--display);
}

/* ── Two-column layout ── */
.sp-layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 56px;
	align-items: start;
}

/* ── Content body (editor output) ── */
.sp-editor-content {
	font-size: 1.02rem;
	line-height: 1.78;
	color: var(--text-body);
}
.sp-editor-content .eyebrow { margin-bottom: 12px; }
.sp-editor-content h2 { color: var(--ink); margin: 0 0 16px; }
.sp-editor-content h3 {
	color: var(--ink);
	font-size: 1.18rem;
	font-weight: 700;
	margin: 36px 0 12px;
}
.sp-editor-content p { color: #3a3a46; margin-bottom: 18px; line-height: 1.78; }
.sp-editor-content ul {
	display: grid;
	gap: 8px;
	margin-bottom: 22px;
	padding: 0;
	list-style: none;
}
.sp-editor-content ul li {
	position: relative;
	padding-left: 28px;
	color: #3a3a46;
	font-size: .97rem;
}
.sp-editor-content ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 1px;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: var(--grad);
	color: #fff;
	display: grid;
	place-items: center;
	font-size: .65rem;
	font-weight: 700;
}

/* Area pills (from shortcode or manual HTML in editor) */
.sp-editor-content .area-pills,
.area-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 14px 0 22px;
}
.sp-editor-content .area-pill,
.area-pill {
	background: rgba(238,66,101,.08);
	border: 1px solid rgba(238,66,101,.2);
	color: var(--brand);
	padding: 6px 14px;
	border-radius: var(--radius-pill);
	font-family: var(--display);
	font-size: .84rem;
	font-weight: 600;
}

/* ── SIDEBAR ── */
.sp-sidebar {
	position: sticky;
	top: 90px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

/* Sidebar CTA card */
.sp-sidebar-cta {
	background: var(--ink);
	border-radius: var(--radius);
	padding: 26px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.sp-sidebar-cta::after {
	content: '';
	position: absolute;
	inset: auto -40% -60% auto;
	width: 220px;
	height: 220px;
	background: var(--grad);
	filter: blur(48px);
	opacity: .5;
	pointer-events: none;
}
.sp-sidebar-cta h4 {
	font-family: var(--display);
	font-size: 1.1rem;
	color: #fff;
	margin-bottom: 8px;
	position: relative;
}
.sp-sidebar-cta p {
	color: rgba(255,255,255,.6);
	font-size: .88rem;
	line-height: 1.6;
	margin-bottom: 16px;
	position: relative;
}
.sp-sidebar-cta .btn { position: relative; }

.sp-trust-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 12px;
	font-size: .78rem;
	color: rgba(255,255,255,.45);
	position: relative;
}
.sp-trust-row b { color: #fff; font-family: var(--display); }

/* Sidebar cards */
.sp-sidebar-card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: var(--shadow-sm);
}
.sp-sidebar-card h3 {
	font-family: var(--display);
	font-size: 1rem;
	color: var(--ink);
	margin-bottom: 14px;
}

/* Location/industry link list inside sidebar */
.sp-loc-list { display: grid; gap: 6px; }
.sp-loc-list a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: var(--radius-sm);
	font-size: .9rem;
	font-weight: 500;
	color: var(--ink);
	border: 1px solid var(--border);
	transition: background .15s, border-color .15s, color .15s;
	text-decoration: none;
}
.sp-loc-list a:hover {
	background: var(--surface-2);
	border-color: var(--brand-soft);
	color: var(--brand);
}
.sp-loc-list a span:first-child { font-size: 1rem; flex-shrink: 0; }

.sp-sidebar-all-link {
	display: block;
	text-align: center;
	margin-top: 12px;
	font-family: var(--display);
	font-size: .84rem;
	font-weight: 700;
	color: var(--brand);
	transition: color .2s;
}
.sp-sidebar-all-link:hover { color: var(--brand-dark); }

/* ── Pricing (2-column) ── */
.sp-pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 860px;
	margin: 0 auto;
}

.sp-price-card {
	background: var(--surface);
	border: 2px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 38px 32px;
	position: relative;
	overflow: hidden;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.sp-price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.sp-price-card-featured {
	border-color: var(--brand);
	transform: scale(1.04);
}
.sp-price-card-featured:hover { transform: scale(1.04) translateY(-6px); }

.sp-popular-badge {
	position: absolute;
	top: 18px; right: 18px;
	font-family: var(--display);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	background: var(--grad);
	color: #fff;
	padding: 4px 12px;
	border-radius: var(--radius-pill);
}

.sp-price-plan {
	font-family: var(--display);
	font-size: .78rem;
	font-weight: 700;
	color: var(--brand);
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.sp-price-row {
	display: flex;
	align-items: flex-start;
	gap: 3px;
	margin-bottom: 4px;
}
.sp-price-currency {
	font-family: var(--display);
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--text-muted);
	margin-top: 10px;
}
.sp-price-num {
	font-family: var(--display);
	font-size: clamp(2.6rem, 4vw, 3.2rem);
	font-weight: 800;
	color: var(--ink);
	line-height: 1;
	letter-spacing: -.04em;
}
.sp-price-period {
	font-size: .78rem;
	color: var(--text-muted);
	margin-bottom: 18px;
}
.sp-price-desc {
	font-size: .88rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 22px;
}
.sp-price-divider {
	border: none;
	height: 1px;
	background: var(--border);
	margin-bottom: 22px;
}
.sp-price-features {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 28px;
	list-style: none;
	padding: 0;
}
.sp-price-features li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: .88rem;
	color: var(--ink);
	line-height: 1.45;
}
.sp-price-features svg {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	fill: none;
	stroke: #16a34a;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
	margin-top: 1px;
}

.sp-price-btn {
	display: block;
	width: 100%;
	text-align: center;
	padding: 14px;
	border-radius: var(--radius-sm);
	font-family: var(--display);
	font-size: .92rem;
	font-weight: 700;
	cursor: pointer;
	transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s, color .2s;
	text-decoration: none;
}
.sp-price-btn-outline {
	border: 2px solid var(--border);
	color: var(--ink);
	background: transparent;
}
.sp-price-btn-outline:hover { border-color: var(--brand); color: var(--brand); }
.sp-price-btn-filled {
	background: var(--grad);
	color: #fff;
	border: 2px solid transparent;
	box-shadow: var(--shadow-brand);
}
.sp-price-btn-filled:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(238,66,101,.6); }

.sp-pricing-enterprise {
	text-align: center;
	margin-top: 22px;
	font-size: .88rem;
	color: var(--text-muted);
}
.sp-pricing-enterprise a { color: var(--brand); font-weight: 600; }

/* ── Why choose — 6 feature cards ── */
.sp-feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 22px;
}
.sp-feature {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 30px;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.sp-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.sp-feature-num {
	display: grid;
	place-items: center;
	width: 50px; height: 50px;
	border-radius: 12px;
	background: var(--grad);
	color: #fff;
	font-family: var(--display);
	font-weight: 800;
	font-size: 1.3rem;
	margin-bottom: 18px;
}
.sp-feature h3 { color: var(--ink); margin-bottom: 8px; }
.sp-feature p  { font-size: .94rem; color: var(--text-muted); }

/* ── Process (dark section) ── */
.sp-process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 22px;
}
.sp-process-step {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.07);
	border-radius: var(--radius);
	padding: 30px 26px;
}
.sp-step-no {
	display: grid;
	place-items: center;
	width: 46px; height: 46px;
	border-radius: 50%;
	background: var(--grad);
	color: #fff;
	font-family: var(--display);
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 18px;
}
.sp-process-step h3 { color: #fff; margin-bottom: 8px; }
.sp-process-step p  { color: var(--text-light); font-size: .93rem; }

/* ── Industry grid (other industries in this city) ── */
.sp-industry-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 14px;
}
.sp-industry {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 18px 16px;
	text-align: center;
	font-family: var(--display);
	font-weight: 600;
	font-size: .93rem;
	transition: transform .25s var(--ease), color .25s, border-color .25s;
}
.sp-industry:hover { transform: translateY(-3px); color: var(--brand); border-color: var(--brand-soft); }
.sp-industry a, .sp-industry span { color: inherit; display: block; }

/* ==========================================================================
RESPONSIVE — SEO page
========================================================================== */
@media (max-width: 1024px) {
	.sp-layout {
		grid-template-columns: 1fr;
	}
	.sp-sidebar {
		position: static;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}
	.sp-sidebar-cta {
		grid-column: 1 / -1;
	}
	.sp-pricing-grid {
		grid-template-columns: 1fr;
		max-width: 520px;
	}
	.sp-price-card-featured { transform: scale(1); }
	.sp-price-card-featured:hover { transform: translateY(-6px); }
}

@media (max-width: 768px) {
	.sp-sidebar { grid-template-columns: 1fr; }
	.sp-hero-stats { gap: 20px 32px; }
	.sp-feature-grid { grid-template-columns: 1fr; }
	.sp-process-grid { grid-template-columns: 1fr 1fr; }
	.sp-industry-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

@media (max-width: 480px) {
	.sp-hero-actions { flex-direction: column; }
	.sp-hero-actions .btn { width: 100%; justify-content: center; }
	.sp-process-grid { grid-template-columns: 1fr; }
	.sp-hero-stats { gap: 16px 24px; }
	.sp-tag-row { gap: 6px; }
}