/* ===========================================================
 * Inforadient theme — main stylesheet
 * Performance: single bundle, no @imports, no JS for layout.
 * ========================================================= */

:root {
	--ink: #06112a;
	--ink-2: #0a1f3d;
	--paper: #f6f7fb;
	--paper-2: #ffffff;
	--muted: #5b6478;
	--line: #e3e6ee;
	--accent: #2f5bff;
	--accent-2: #22d3ee;
	--accent-warm: #ffd166;
	--radius: 14px;
	--maxw: 1280px;
	--gutter: 28px;
	--shadow-sm: 0 1px 2px rgba(6,17,42,.06), 0 2px 8px rgba(6,17,42,.04);
	--shadow-md: 0 8px 24px rgba(6,17,42,.08), 0 2px 6px rgba(6,17,42,.04);
	--shadow-lg: 0 24px 60px rgba(6,17,42,.18);
	--logo-filter: none;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
	font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
	color: var(--ink);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	line-height: 1.5;
}
h1, h2, h3, h4 { margin: 0; letter-spacing: -.02em; color: var(--ink-2); font-weight: 600; }
h1 { letter-spacing: -.035em; font-weight: 500; }
p { margin: 0; color: var(--muted); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.serif { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; letter-spacing: -.01em; }
.mono  { font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, "Cascadia Mono", monospace; }
.accent { color: var(--accent); }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; background: var(--ink-2); color: #fff; padding: 8px 12px; border-radius: 6px; z-index: 100; }

/* Eyebrow */
.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 12px; border-radius: 999px;
	background: color-mix(in oklab, var(--accent) 8%, transparent);
	color: var(--accent);
	font-size: 12px; font-weight: 500;
	border: 1px solid color-mix(in oklab, var(--accent) 18%, transparent);
	letter-spacing: .02em;
}
.eyebrow .dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent);
}
.eyebrow-light { background: rgba(34,211,238,.12); color: var(--accent-2); border-color: rgba(34,211,238,.22); }
.eyebrow-light .dot.dot-cyan { background: var(--accent-2); box-shadow: 0 0 0 4px rgba(34,211,238,.2); }

/* Buttons */
.btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 18px; border-radius: 10px;
	font-size: 14px; font-weight: 500;
	border: 1px solid transparent;
	transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
	cursor: pointer; text-decoration: none;
}
.btn-primary {
	background: var(--ink-2); color: var(--paper-2);
	box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
	background: transparent; color: var(--ink-2);
	border-color: var(--line);
}
.btn-ghost:hover { background: color-mix(in oklab, var(--ink) 4%, transparent); }
.btn-link {
	color: inherit; padding: 0; gap: 6px;
	font-size: 13px; font-weight: 500; cursor: pointer;
	background: none; border: 0; display: inline-flex; align-items: center;
}
.btn-link .arrow { transition: transform .2s; display: inline-block; }
.btn-link:hover .arrow { transform: translateX(3px); }

/* Section spacing — use a single bottom rhythm so stacked sections don't double up */
section { padding: 0 0 64px; position: relative; }
section:first-of-type { padding-top: 0; }
.hero { padding-top: 40px; }
@media (max-width: 860px) { section { padding-bottom: 44px; } }
.section-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; margin-bottom: 56px; align-items: end; }
.section-head h2 { font-size: 48px; line-height: 1.05; }
.section-head p { font-size: 17px; max-width: 540px; }
section h2 { font-size: clamp(30px, 3.5vw, 42px); line-height: 1.1; margin: 0 0 14px; }
section .sub { color: var(--muted); font-size: 17px; line-height: 1.55; max-width: 680px; margin: 0 0 44px; }
.center-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.svc-scroll-hint { display: none; }

/* Header / Nav */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: color-mix(in oklab, var(--paper) 78%, transparent);
	-webkit-backdrop-filter: blur(16px) saturate(140%);
	backdrop-filter: blur(16px) saturate(140%);
	border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink-2); flex-shrink: 0; }
.logo img { height: 36px; width: auto; filter: var(--logo-filter); }
.logo-wm { font-size: 18px; letter-spacing: -.01em; }

.primary-nav { display: flex; }
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--muted); list-style: none; margin: 0; padding: 0; }
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--ink-2); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: none; padding: 8px; background: transparent; border: 1px solid var(--line); border-radius: 8px; color: var(--ink-2); }
.mobile-nav { display: none; }

@media (max-width: 860px) {
	.primary-nav { display: none; }
	.nav-toggle { display: inline-flex; }
	.nav-actions .btn-primary { display: none; }
	.mobile-nav { display: block; padding: 16px var(--gutter) 24px; border-top: 1px solid var(--line); background: var(--paper-2); }
	.mobile-nav[hidden] { display: none; }
	.mobile-links { list-style: none; margin: 0 0 16px; padding: 0; }
	.mobile-links li { padding: 12px 0; border-bottom: 1px solid var(--line); }
	.mobile-cta { display: inline-flex; width: 100%; justify-content: center; }
}

/* Hero */
.hero { padding: 56px 0 80px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(40px, 5.5vw, 76px); line-height: 0.98; margin-top: 24px; }
.hero h1 .accent { color: var(--accent); }
.hero-sub { font-size: 19px; max-width: 540px; margin-top: 20px; }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-meta {
	display: flex; gap: 24px; margin-top: 40px; font-size: 13px; color: var(--muted);
	padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap;
}
.hero-meta b { color: var(--ink-2); font-weight: 600; font-size: 22px; display: block; letter-spacing: -.02em; }
.hero-trust { display: flex; align-items: center; gap: 14px; margin-top: 18px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.hero-trust .live-dot { width: 8px; height: 8px; border-radius: 50%; background: #10b981; box-shadow: 0 0 0 4px rgba(16,185,129,.2); }
.hero-trust .stars { color: #ffb800; letter-spacing: 2px; }
.dot-sep { opacity: .4; }

.hero-visual {
	position: relative;
	aspect-ratio: 1/1;
	border-radius: 24px;
	background: var(--paper-2);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

/* Hero art — pure CSS animations */
.hero-art { position: absolute; inset: 0; }
.hero-art .orb { position: absolute; border-radius: 50%; filter: blur(40px); opacity: .55; pointer-events: none; }
.hero-art .orb-a { width: 240px; height: 240px; left: 8%; top: 10%; background: var(--accent); }
.hero-art .orb-b { width: 280px; height: 280px; right: 4%; bottom: 6%; background: var(--accent-2); }
.hero-art .hero-svg { position: absolute; inset: 0; width: 100%; height: 100%; }

@keyframes spin-cw { to { transform: rotate(360deg); } }
@keyframes spin-ccw { to { transform: rotate(-360deg); } }
.hero-art .arc-spin-cw  { transform-origin: 50px 50px; animation: spin-cw 15s linear infinite; }
.hero-art .arc-spin-ccw { transform-origin: 50px 50px; animation: spin-ccw 18s linear infinite; }
.hero-art .orbit-inner  { transform-origin: 50px 50px; animation: spin-cw 28s linear infinite; }
.hero-art .orbit-mid    { transform-origin: 50px 50px; animation: spin-ccw 40s linear infinite; }

.float-tag {
	position: absolute;
	background: var(--paper-2); border: 1px solid var(--line); border-radius: 10px;
	padding: 8px 12px; font-size: 12px; color: var(--ink-2);
	box-shadow: var(--shadow-md);
	display: inline-flex; align-items: center; gap: 8px;
	white-space: nowrap;
	animation: float 5s ease-in-out infinite;
}
.float-tag span.mono { color: var(--muted); font-size: 10px; letter-spacing: .08em; }
.float-tag-1 { top: 12%; left: 8%; animation-delay: 0s; }
.float-tag-2 { top: 20%; right: 6%; animation-delay: .8s; }
.float-tag-3 { bottom: 14%; left: 10%; animation-delay: 1.6s; }
.float-tag-4 { bottom: 22%; right: 10%; animation-delay: 2.4s; }
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-6px); }
}

/* ===== Tech-orbit chips ===== */
.tk-orbit { position: absolute; inset: 0; transform-origin: 50% 50%; }
.tk-inner { animation: spin-cw 44s linear infinite; }
.tk-outer { animation: spin-ccw 64s linear infinite; }
.tk-chip { position: absolute; transform: translate(-50%, -50%); }
.tk-chip-b {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 11px; border-radius: 999px;
	background: var(--paper-2);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	font-size: 12px; font-weight: 600; letter-spacing: -.01em;
	color: var(--ink-2); white-space: nowrap;
	transform-origin: 50% 50%;
}
.tk-inner .tk-chip-b { animation: spin-ccw 44s linear infinite; }
.tk-outer .tk-chip-b { animation: spin-cw 64s linear infinite; }
.tk-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c, var(--accent)); box-shadow: 0 0 0 3px color-mix(in oklab, var(--c, var(--accent)) 20%, transparent); flex-shrink: 0; }
.tk-chip-b:hover { border-color: var(--c, var(--accent)); }
@media (max-width: 600px) {
	.tk-chip-b { padding: 4px 8px; font-size: 10px; gap: 4px; }
	.tk-dot { width: 6px; height: 6px; }
}

@media (max-width: 980px) {
	.hero-grid { grid-template-columns: 1fr; gap: 32px; }
	.hero { padding: 32px 0 48px; }
}

/* Marquee */
.marquee {
	overflow: hidden; padding: 28px 0;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
	display: flex; gap: 56px;
	animation: marquee 64s linear infinite;
	width: max-content;
}
@keyframes marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-33.333%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
	font-family: "Instrument Serif", serif; font-style: italic;
	font-size: 56px; color: var(--ink-2);
	white-space: nowrap; letter-spacing: -.02em; opacity: .85;
}
.marquee-item .star { color: var(--accent); margin: 0 24px; font-style: normal; }

/* Logo bar */
.logo-bar { padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.logo-bar-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.logo-bar-list { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; opacity: .75; }
.logo-bar-list .brand { font-family: "Instrument Serif", serif; font-size: 22px; color: var(--ink-2); font-style: italic; }
.logo-bar-list .brand.sans { font-family: "Inter", sans-serif; font-style: normal; font-weight: 600; letter-spacing: -.02em; font-size: 18px; }
.logo-bar-list .brand.mono { font-family: ui-monospace, monospace; font-style: normal; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.logo-bar-list img { max-height: 32px; width: auto; opacity: .8; }

/* Why grid */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why-card { padding: 32px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); transition: transform .25s, border-color .25s; }
.why-card:hover { transform: translateY(-3px); border-color: color-mix(in oklab, var(--accent) 50%, var(--line)); }
.why-card .icon-tile {
	width: 52px; height: 52px; border-radius: 12px;
	background: linear-gradient(135deg, color-mix(in oklab, var(--accent) 16%, transparent), color-mix(in oklab, var(--accent-2) 12%, transparent));
	color: var(--accent);
	display: grid; place-items: center;
	margin-bottom: 16px;
}
.why-card h4 { font-size: 17px; margin-bottom: 8px; }
.why-card p { font-size: 13.5px; }
@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .why-grid { grid-template-columns: 1fr; } }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.svc {
	grid-column: span 4; padding: 28px;
	border-radius: var(--radius); border: 1px solid var(--line);
	background: var(--paper-2); position: relative; overflow: hidden;
	transition: border-color .2s, transform .2s;
	min-height: 260px;
	display: flex; flex-direction: column;
}
.svc:hover { border-color: color-mix(in oklab, var(--accent) 50%, var(--line)); transform: translateY(-2px); }
.svc.featured { grid-column: span 8; background: var(--ink-2); color: #fff; border-color: transparent; }
.svc.featured h3 { color: #fff; }
.svc.featured p { color: rgba(255,255,255,.65); }
.svc h3 { font-size: 22px; margin-bottom: 8px; }
.svc p { font-size: 14px; }
.svc-num { font-family: ui-monospace, monospace; font-size: 12px; color: var(--muted); letter-spacing: .08em; font-weight: 500; }
.svc.featured .svc-num { color: rgba(255,255,255,.5); }
.svc-icon {
	width: 44px; height: 44px; border-radius: 10px;
	background: color-mix(in oklab, var(--accent) 10%, transparent);
	color: var(--accent);
	display: grid; place-items: center;
	margin: 18px 0 16px;
}
.svc.featured .svc-icon { background: color-mix(in oklab, var(--accent) 22%, transparent); color: var(--accent-2); }
.svc-foot { margin-top: auto; padding-top: 20px; }
.svc-sub { margin-top: 12px !important; font-size: 13.5px !important; }

@media (max-width: 980px) {
	.svc { grid-column: span 6; }
	.svc.featured { grid-column: span 12; }
}
@media (max-width: 640px) {
	.svc, .svc.featured { grid-column: span 12; }
}

/* Mid CTA */
.mid-cta {
	background: linear-gradient(135deg, color-mix(in oklab, var(--accent) 12%, var(--paper-2)), color-mix(in oklab, var(--accent-2) 8%, var(--paper-2)));
	border: 1px solid color-mix(in oklab, var(--accent) 25%, var(--line));
	border-radius: 18px;
	padding: 32px 40px;
	display: flex; align-items: center; justify-content: space-between; gap: 32px;
	flex-wrap: wrap;
}
.mid-cta-eyebrow { font-size: 13px; color: var(--accent); font-weight: 500; letter-spacing: .04em; margin-bottom: 8px; }
.mid-cta h3 { font-size: 26px; line-height: 1.2; max-width: 520px; }
.mid-cta p { margin-top: 10px; font-size: 14px; max-width: 520px; }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 40px 32px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { font-size: 56px; letter-spacing: -.04em; font-weight: 500; color: var(--ink-2); display: block; line-height: 1; }
.stat span { font-size: 14px; color: var(--muted); display: block; margin-top: 8px; }
@media (max-width: 720px) {
	.stats { grid-template-columns: 1fr; }
	.stat { border-right: 0; border-bottom: 1px solid var(--line); }
	.stat:last-child { border-bottom: 0; }
}

/* Approach (sticky) */
.approach-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.approach-sticky { position: sticky; top: 120px; }
.approach-sticky h2 { font-size: 48px; line-height: 1.05; margin-top: 16px; }
.approach-sticky p { margin-top: 18px; }
.approach-sticky .btn { margin-top: 32px; }
/* Breathing room between an eyebrow chip and the heading that follows it */
.eyebrow + h1, .eyebrow + h2, .eyebrow + h3 { margin-top: 18px; }
.approach-cards { display: flex; flex-direction: column; gap: 24px; }
.ap-card { padding: 32px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); transition: transform .3s, border-color .3s, box-shadow .3s; }
.ap-card:hover { transform: translateY(-4px); border-color: color-mix(in oklab, var(--accent) 50%, var(--line)); box-shadow: var(--shadow-md); }
.ap-card .step-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.ap-card .step-pill { background: var(--ink-2); color: var(--paper-2); font-family: ui-monospace, monospace; font-size: 11px; font-weight: 500; padding: 6px 10px; border-radius: 6px; letter-spacing: .08em; }
.ap-card h3 { font-size: 22px; }
.ap-card ul { margin: 14px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ap-card ul li { padding-left: 22px; position: relative; font-size: 14px; color: var(--muted); line-height: 1.5; }
.ap-card ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 12px; height: 1px; background: var(--accent); }
.ap-card ul li b { color: var(--ink-2); font-weight: 600; }
@media (max-width: 980px) {
	.approach-wrap { grid-template-columns: 1fr; gap: 32px; }
	.approach-sticky { position: static; }
}

/* Comparison table */
.compare { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--paper-2); }
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: 0; }
.compare-row > div { padding: 18px 20px; font-size: 14px; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.compare-row > div + div { border-left: 1px solid var(--line); }
.compare-head { background: color-mix(in oklab, var(--accent) 6%, var(--paper-2)); font-weight: 600; }
.compare-head .winner { background: var(--ink-2); color: #fff; margin: 0; padding: 18px 20px; display: flex; align-items: center; gap: 8px; position: relative; border-radius: 0; }
.compare-head .winner::after {
	content: 'BEST'; position: absolute; top: 50%; right: 12px; transform: translateY(-50%);
	background: var(--accent-2); color: var(--ink-2);
	font: 600 9px/1 ui-monospace, monospace; letter-spacing: .1em;
	padding: 4px 6px; border-radius: 4px;
}
.compare-row .yes { color: #10b981; font-weight: 700; }
.compare-row .partial { color: #f59e0b; font-weight: 700; }
.compare-row .no  { color: #ef4444; opacity: .6; }
.compare-row .label { font-weight: 500; }
.compare-row .winner-cell { background: color-mix(in oklab, var(--accent) 6%, transparent); font-weight: 500; }
@media (max-width: 720px) {
	.compare { font-size: 12px; }
	.compare-row > div { padding: 12px 10px; font-size: 12px; }
}

/* Quote */
.quote { padding: 64px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-text {
	font-family: "Instrument Serif", serif; font-style: italic;
	font-size: clamp(28px, 3.4vw, 44px); line-height: 1.18;
	color: var(--ink-2); max-width: 900px; letter-spacing: -.01em;
}
.quote-attr { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; display: grid; place-items: center; font-weight: 600; font-size: 14px; }
.quote-attr .who b { display: block; font-size: 14px; color: var(--ink-2); }
.quote-attr .who span { font-size: 13px; color: var(--muted); }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.blog-grid-3 { grid-template-columns: repeat(3, 1fr); }
.post { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper-2); display: flex; flex-direction: column; transition: transform .25s, border-color .25s; }
.post:hover { transform: translateY(-3px); border-color: color-mix(in oklab, var(--accent) 50%, var(--line)); }
.post-cover { aspect-ratio: 16/9; position: relative; overflow: hidden; display: block; background: var(--ink-2); }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-cover-fallback { position: absolute; inset: 0; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: grid; place-items: end; padding: 24px; color: rgba(255,255,255,.85); }
.post-cover-fallback span { font-family: "Instrument Serif", serif; font-style: italic; font-size: 36px; }
.post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-tag { font-family: ui-monospace, monospace; font-size: 11px; color: var(--accent); letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }
.post h3 { font-size: 22px; margin: 10px 0 12px; line-height: 1.25; }
.post h3 a:hover { color: var(--accent); }
.post .post-meta { margin-top: auto; padding-top: 16px; display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); align-items: center; }
@media (max-width: 860px) { .blog-grid, .blog-grid-3 { grid-template-columns: 1fr; } }

/* Lead form */
.cta-form-wrap {
	background: var(--ink-2); color: #fff;
	border-radius: 24px; padding: 72px 56px;
	display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
	position: relative; overflow: hidden;
}
.cta-form-wrap h2 { color: #fff; font-size: 48px; line-height: 1.05; margin-top: 16px; }
.cta-lead { color: rgba(255,255,255,.72); font-size: 16px; max-width: 420px; }
.cta-bullets { margin: 28px 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.cta-bullets li { list-style: none; display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,.85); }
.cta-bullets .ck { color: var(--accent-2); flex-shrink: 0; font-weight: 700; }
.cta-contact-row { display: flex; gap: 32px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.cta-contact-row .lbl { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.cta-contact-row a { color: #fff; font-size: 15px; font-weight: 500; }
.cta-contact-row a:hover { color: var(--accent-2); }

.cta-form { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.7); letter-spacing: .02em; }
.field input, .field select, .field textarea {
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 10px; padding: 12px 14px; color: #fff;
	font: 400 14px/1.4 "Inter", sans-serif;
	outline: none; transition: border-color .15s, background .15s;
	width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.35); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent-2); background: rgba(255,255,255,.07); }
.field textarea { resize: vertical; min-height: 84px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.budget-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.15); background: transparent; color: rgba(255,255,255,.75); font-size: 13px; cursor: pointer; transition: all .15s; }
.chip.active { background: var(--accent-2); color: var(--ink-2); border-color: var(--accent-2); font-weight: 500; }

.form-submit {
	margin-top: 6px;
	background: var(--accent-2); color: var(--ink-2);
	border: 0; border-radius: 10px; padding: 14px 18px;
	font-weight: 600; font-size: 14px;
	cursor: pointer;
	display: flex; align-items: center; justify-content: center; gap: 8px;
	transition: transform .15s, box-shadow .15s;
}
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(34,211,238,.25); }
.form-submit[disabled] { opacity: .6; cursor: wait; }
.btn-back { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 12px 16px; font-weight: 500; font-size: 14px; cursor: pointer; }
.btn-back:hover { background: rgba(255,255,255,.05); color: #fff; }

.ms-progress { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ms-step { flex: 1; height: 6px; border-radius: 99px; background: rgba(255,255,255,.12); overflow: hidden; }
.ms-step .fill { display: block; height: 100%; background: var(--accent-2); border-radius: 99px; transition: width .4s cubic-bezier(.2,.8,.2,1); }
.ms-label { font-family: ui-monospace, monospace; font-size: 11px; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.ms-pane[hidden] { display: none; }
.ms-actions { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.form-foot { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 6px; }
.form-error { color: #fca5a5; background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); padding: 12px 14px; border-radius: 10px; font-size: 13px; }

.hp-honey { position: absolute !important; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 980px) { .cta-form-wrap { grid-template-columns: 1fr; padding: 48px 28px; } .cta-form-wrap h2 { font-size: 36px; } }

/* Footer */
.site-footer { padding: 64px 0 32px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.foot-col h5 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 16px; font-weight: 500; }
.foot-col a { display: block; padding: 6px 0; font-size: 14px; color: var(--ink-2); transition: color .15s; }
.foot-col a:hover { color: var(--accent); }
.foot-brand img { height: 36px; margin-bottom: 16px; filter: var(--logo-filter); }
.foot-brand p { max-width: 320px; font-size: 14px; }
.foot-addr { margin-top: 16px !important; font-size: 13px !important; }
.foot-social { margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; }
.foot-social a { font-size: 13px; padding: 4px 10px; border: 1px solid var(--line); border-radius: 99px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 16px; }
.foot-bottom a { color: var(--muted); margin-left: 16px; }
.foot-bottom a:hover { color: var(--ink-2); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* WhatsApp float */
.wa-float {
	position: fixed; right: 22px; bottom: 22px; z-index: 60;
	width: 56px; height: 56px; border-radius: 50%;
	background: #25d366; color: #fff;
	display: grid; place-items: center;
	box-shadow: 0 12px 30px rgba(37,211,102,.5), 0 4px 12px rgba(0,0,0,.15);
	transition: transform .2s;
	animation: wa-pulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: scale(1.06); }
@keyframes wa-pulse {
	0%   { box-shadow: 0 12px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5); }
	70%  { box-shadow: 0 12px 30px rgba(37,211,102,.5), 0 0 0 22px rgba(37,211,102,0); }
	100% { box-shadow: 0 12px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}

/* Sticky CTA pill */
.sticky-cta {
	position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 20px);
	z-index: 40;
	background: var(--ink-2); color: #fff;
	border-radius: 999px; padding: 10px 10px 10px 22px;
	display: flex; align-items: center; gap: 14px;
	font-size: 14px; box-shadow: var(--shadow-lg);
	border: 1px solid rgba(255,255,255,.08);
	opacity: 0; transition: opacity .25s, transform .25s;
	pointer-events: none;
}
.sticky-cta.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.sticky-cta .pill { background: var(--accent-2); color: var(--ink-2); padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: 13px; }

/* Thank-you overlay */
.thanks-overlay {
	position: fixed; inset: 0; z-index: 80;
	background: rgba(6,17,42,.6);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	display: grid; place-items: center;
	padding: 20px;
	animation: fade-in .25s ease-out;
}
.thanks-overlay[hidden] { display: none; }
.thanks-card {
	max-width: 460px; width: 100%;
	background: var(--paper-2); color: var(--ink);
	border-radius: 20px; padding: 40px;
	box-shadow: var(--shadow-lg);
	text-align: center;
	animation: zoom-in .35s cubic-bezier(.2,.8,.2,1);
}
.thanks-icon {
	width: 64px; height: 64px; border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #fff;
	display: grid; place-items: center;
	margin: 0 auto 20px;
}
.thanks-card h3 { font-size: 26px; margin-bottom: 8px; }
.thanks-card p { color: var(--muted); margin-bottom: 24px; }
.thanks-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoom-in { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* Reveal animations */
.reveal, .reveal-left, .reveal-scale { opacity: 0; transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-28px); }
.reveal-scale { transform: scale(.96); }
.reveal.in, .reveal-left.in, .reveal-scale.in { opacity: 1; transform: none; }

/* Service detail page */
.crumb { padding: 18px 0 0; font-family: ui-monospace, monospace; font-size: 12px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; font-weight: 500; }
.crumb a:hover { color: var(--ink-2); }
.crumb .sep { margin: 0 10px; opacity: .5; }
.crumb-current { color: var(--ink); }

.service-hero { padding: 32px 0 56px; }
.service-hero h1 { font-size: clamp(36px, 5vw, 64px); }
.service-hero .lead { font-size: 19px; line-height: 1.55; color: var(--muted); max-width: 560px; margin: 22px 0 28px; }
.hero-bullets { display: flex; flex-wrap: wrap; gap: 10px 14px; margin: 0 0 32px; padding: 0; list-style: none; }
.hero-bullets li { padding: 8px 14px; border: 1px solid var(--line); border-radius: 99px; font-size: 13px; background: var(--paper-2); display: inline-flex; align-items: center; gap: 8px; }
.hero-bullets li::before { content: ''; width: 14px; height: 14px; border-radius: 50%; background: color-mix(in oklab, var(--accent) 18%, var(--paper-2)); display: inline-block; border: 2px solid var(--accent); flex-shrink: 0; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-card {
	border: 1px solid var(--line); border-radius: 24px; padding: 24px;
	background: linear-gradient(160deg, color-mix(in oklab, var(--accent) 8%, var(--paper-2)) 0%, var(--paper-2) 60%);
	box-shadow: var(--shadow-md);
	aspect-ratio: 1.05/1;
	display: flex; flex-direction: column; justify-content: space-between;
	position: relative; overflow: hidden;
}
.hero-card::after {
	content: ''; position: absolute; right: -40px; bottom: -40px;
	width: 240px; height: 240px; border-radius: 50%;
	background: radial-gradient(circle, color-mix(in oklab, var(--accent-2) 30%, transparent) 0%, transparent 70%);
}
.hc-stat { font-family: "Instrument Serif", serif; font-size: 88px; line-height: 1; letter-spacing: -.02em; color: var(--accent); position: relative; z-index: 1; }
.hc-stat-pct { font-size: 42px; }
.hc-stat-label { font-family: ui-monospace, monospace; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 8px; position: relative; z-index: 1; }
.hc-feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
.hc-feature-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); }
.hc-feature-list li::before { content: '→'; color: var(--accent); font-weight: 600; }

/* ===== Service hero card (filled, creative) ===== */
.svc-hero-card { aspect-ratio: auto; justify-content: flex-start; gap: 0; padding: 28px; }
.shc-label { display: inline-flex; align-items: center; gap: 8px; font: 600 11px/1 "Geist Mono", ui-monospace, monospace; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); position: relative; z-index: 1; }
.shc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent); }
.shc-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; position: relative; z-index: 1; }
.shc-list li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); }
.shc-check { width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; background: color-mix(in oklab, var(--accent) 14%, transparent); color: var(--accent); display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.shc-bars { margin: 22px 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; gap: 14px; position: relative; z-index: 1; }
.shc-bar { display: grid; grid-template-columns: 120px 1fr 40px; align-items: center; gap: 12px; font-size: 12.5px; color: var(--muted); }
.shc-bar-track { height: 7px; border-radius: 99px; background: color-mix(in oklab, var(--ink) 8%, transparent); overflow: hidden; }
.shc-bar-track i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); transform-origin: left; animation: bar-grow 1.4s cubic-bezier(.2,.8,.2,1) both; }
@keyframes bar-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.shc-bar-v { text-align: right; font-weight: 600; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.shc-foot { display: flex; align-items: flex-end; gap: 24px; flex-wrap: wrap; position: relative; z-index: 1; }
.shc-stat b { display: block; font-size: 38px; line-height: 1; letter-spacing: -.03em; font-weight: 700; background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; font-variant-numeric: tabular-nums; }
.shc-stat span { font-size: 12px; color: var(--muted); display: block; margin-top: 6px; }
.shc-rating { margin-left: auto; text-align: right; }
.shc-stars { display: block; color: #ffb800; font-size: 15px; letter-spacing: 2px; }
.shc-rating span { font-size: 12px; color: var(--muted); }
@media (max-width: 460px) { .shc-bar { grid-template-columns: 90px 1fr 36px; } .shc-rating { margin-left: 0; text-align: left; } }

/* Features grid (service detail) */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.feat { padding: 26px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper-2); transition: transform .2s, border-color .2s; }
.feat:hover { transform: translateY(-3px); border-color: color-mix(in oklab, var(--accent) 50%, var(--line)); }
.feat .ix { width: 40px; height: 40px; border-radius: 10px; background: color-mix(in oklab, var(--accent) 12%, var(--paper-2)); display: grid; place-items: center; color: var(--accent); font-weight: 600; font-family: ui-monospace, monospace; margin-bottom: 18px; }
.feat h3 { font-size: 17px; font-weight: 600; margin: 0 0 8px; }
.feat p { font-size: 14px; line-height: 1.55; }
.feat-link { display: block; text-decoration: none; }
@media (max-width: 860px) { .features { grid-template-columns: 1fr; } }

/* Process (service detail) */
.process { background: var(--ink-2); color: #fff; border-radius: 24px; padding: 80px 56px; position: relative; overflow: hidden; }
.process h2 { color: #fff; }
.process .sub { color: rgba(255,255,255,.65); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { padding: 24px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(255,255,255,.02); }
.step .n { font-family: "Instrument Serif", serif; font-size: 42px; line-height: 1; color: var(--accent-2); }
.step h4 { color: #fff; font-size: 17px; margin: 14px 0 8px; font-weight: 500; }
.step p { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.7); margin: 0; }
@media (max-width: 860px) { .process { padding: 48px 28px; } .steps { grid-template-columns: 1fr; } }

/* Deliverables */
.deliv { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; max-width: 920px; list-style: none; padding: 0; margin: 24px 0 0; }
.deliv li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--ink); }
.deliv li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@media (max-width: 720px) { .deliv { grid-template-columns: 1fr; } }

/* Industries */
.inds { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }
.ind { padding: 26px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper-2); }
.ind h4 { font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.ind p { color: var(--muted); font-size: 14px; line-height: 1.55; }
@media (max-width: 720px) { .inds { grid-template-columns: 1fr; } }

/* Tech table */
.tech-table { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--paper-2); max-width: 880px; margin-top: 24px; }
.tech-row { display: grid; grid-template-columns: 200px 1fr; }
.tech-row + .tech-row { border-top: 1px solid var(--line); }
.tech-row > div { padding: 18px 22px; }
.tech-row .k { font-weight: 600; background: color-mix(in oklab, var(--accent) 4%, var(--paper-2)); border-right: 1px solid var(--line); color: var(--ink-2); }
.tech-row .v { color: var(--muted); font-size: 14.5px; }
@media (max-width: 720px) { .tech-row { grid-template-columns: 1fr; } .tech-row .k { border-right: 0; border-bottom: 1px solid var(--line); } }

/* FAQ */
.faq-wrap { max-width: 880px; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.faq { border: 1px solid var(--line); border-radius: 14px; background: var(--paper-2); overflow: hidden; transition: border-color .2s; }
.faq[open] { border-color: color-mix(in oklab, var(--accent) 50%, var(--line)); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 17px; font-weight: 500; color: var(--ink-2); }
.faq summary::-webkit-details-marker { display: none; }
.faq .plus { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .25s, background .25s, color .25s; flex-shrink: 0; }
.faq[open] .plus { transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent); }
.faq .answer { padding: 0 26px 22px; font-size: 15px; color: var(--muted); line-height: 1.6; }

/* CTA bottom */
.cta-bottom {
	text-align: center; padding: 80px 28px;
	background: linear-gradient(160deg, color-mix(in oklab, var(--accent) 8%, var(--paper-2)), var(--paper-2));
	border-radius: 32px; border: 1px solid var(--line);
}
.cta-bottom h2 { margin: 14px auto 14px; }
.cta-bottom p { color: var(--muted); font-size: 17px; margin: 0 auto 28px; max-width: 560px; }
.cta-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* Post single */
.post-single { padding: 32px 0 64px; }
.post-header { max-width: 760px; margin-bottom: 32px; }
.post-header h1 { font-size: clamp(36px, 4.5vw, 56px); line-height: 1.1; margin: 12px 0 16px; }
.post-meta-line { font-size: 14px; color: var(--muted); display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.post-feat { margin-bottom: 32px; }
.post-feat-img { width: 100%; border-radius: 20px; aspect-ratio: 16/9; object-fit: cover; }
.post-body { display: grid; grid-template-columns: 1fr 280px; gap: 64px; max-width: 1120px; margin: 0 auto; }
.post-content { font-size: 17px; line-height: 1.7; color: var(--ink); max-width: 720px; }
.post-content h2, .post-content h3 { margin-top: 36px; margin-bottom: 14px; }
.post-content h2 { font-size: 28px; }
.post-content h3 { font-size: 22px; }
.post-content p { color: var(--ink); margin-bottom: 18px; font-size: 17px; }
.post-content a { color: var(--accent); text-decoration: underline; }
.post-content blockquote { border-left: 3px solid var(--accent); padding-left: 20px; margin: 24px 0; color: var(--muted); font-style: italic; font-size: 19px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 18px; }
.post-content li { margin-bottom: 8px; }
.post-content img { border-radius: 12px; margin: 24px 0; }
.post-aside { position: sticky; top: 100px; align-self: start; display: flex; flex-direction: column; gap: 18px; }
.aside-card { padding: 24px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; }
.aside-eyebrow { font-family: ui-monospace, monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; }
.aside-card h4 { font-size: 17px; margin-bottom: 8px; }
.aside-card p { font-size: 14px; margin-bottom: 14px; }
.share-links { display: flex; flex-wrap: wrap; gap: 8px; }
.share-links a { padding: 8px 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 99px; font-size: 13px; }
.share-links a:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 860px) {
	.post-body { grid-template-columns: 1fr; gap: 32px; }
	.post-aside { position: static; }
}

.related-posts { padding: 64px 0; }

/* Archive */
.archive-head { padding: 32px 0 48px; }
.archive-head h1 { font-size: clamp(40px, 5vw, 64px); line-height: 1.05; margin: 16px 0 18px; }
.archive-head .sub { font-size: 18px; line-height: 1.5; max-width: 600px; }

/* Search */
.search-results { display: flex; flex-direction: column; gap: 18px; }
.search-result { padding: 24px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; }
.search-result h3 { margin: 8px 0; }
.search-result h3 a:hover { color: var(--accent); }
.search-form { display: flex; gap: 10px; margin-top: 24px; }
.search-form input { flex: 1; padding: 12px 16px; border: 1px solid var(--line); border-radius: 10px; font-size: 15px; background: var(--paper-2); color: var(--ink); }
.search-form button { padding: 12px 22px; background: var(--ink-2); color: #fff; border: 0; border-radius: 10px; font-weight: 500; cursor: pointer; }

/* 404 */
.error-404 { padding: 120px 0; text-align: center; }
.error-num { display: block; font-family: "Instrument Serif", serif; font-style: italic; font-size: clamp(80px, 12vw, 160px); color: var(--accent); line-height: 1; }
.error-404 h1 { font-size: clamp(28px, 4vw, 40px); margin: 16px 0; }
.error-404 p { max-width: 480px; margin: 0 auto 28px; color: var(--muted); font-size: 17px; }

/* Pagination */
.pagination { margin-top: 48px; display: flex; justify-content: center; }
.pagination .nav-links, .pagination .page-numbers { display: flex; gap: 8px; align-items: center; }
.page-numbers { padding: 10px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: 14px; color: var(--ink-2); background: var(--paper-2); }
.page-numbers.current { background: var(--ink-2); color: #fff; border-color: var(--ink-2); }

/* Pages prose */
.page-content { padding: 32px 0 80px; max-width: 800px; }
.page-title { font-size: clamp(36px, 4.5vw, 56px); line-height: 1.1; margin: 12px 0 32px; }
.prose { font-size: 17px; line-height: 1.7; color: var(--ink); }
.prose h2 { font-size: 28px; margin: 36px 0 14px; }
.prose h3 { font-size: 22px; margin: 28px 0 12px; }
.prose p { color: var(--ink); margin-bottom: 18px; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 18px; }

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
	html { scroll-behavior: auto; }
}

/* ============================================================
 * CONSOLIDATED RESPONSIVE — tablet & mobile refinements
 * Loaded last so these win the cascade.
 * ========================================================== */

/* Section heads stack on tablet/mobile (was a fixed 2-col grid) */
@media (max-width: 900px) {
	.section-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 36px; }
	.section-head h2 { font-size: 32px; }
	.section-head p { font-size: 15.5px; max-width: 100%; }
}

/* Phone */
@media (max-width: 600px) {
	:root { --gutter: 18px; }

	section { padding-bottom: 40px; }
	.hero { padding-top: 24px; }

	/* Headlines */
	.hero h1 { font-size: clamp(32px, 9vw, 44px); line-height: 1.04; }
	.section-head h2 { font-size: 27px; }
	section h2 { font-size: 26px; }
	section .sub { font-size: 15px; margin-bottom: 28px; }
	.hero-sub { font-size: 16px; }

	/* Hero meta + trust inline rows wrap tighter */
	.hero-meta { gap: 16px; margin-top: 26px; padding-top: 18px; }
	.hero-meta b { font-size: 19px; }
	.hero-trust { gap: 8px 10px; font-size: 12px; }

	/* Hero visual: the orbit is decorative and renders as a big empty box on
	   phones — hide it so the hero isn't a huge blank gap. */
	.hero-visual { display: none; }
	.hero-grid { gap: 0; }
	.hero { padding-bottom: 8px; }

	/* Buttons go full-width & stack for easy thumb tap */
	.hero-cta, .cta-actions, .center-cta { flex-direction: column; align-items: stretch; }
	.hero-cta .btn, .cta-actions .btn, .center-cta .btn { width: 100%; justify-content: center; }
	.btn { padding: 13px 18px; font-size: 14px; }

	/* Single-column everywhere that was still multi */
	.why-grid, .stats-band, .results-grid,
	.features, .inds, .deliv, .blog-grid, .blog-grid-3 { grid-template-columns: 1fr !important; }

	/* Services become a swipeable horizontal card scroller (pro mobile pattern) */
	.svc-grid-v2, .svc-archive-grid {
		display: flex !important;
		grid-template-columns: none !important;
		gap: 14px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		margin: 0 calc(var(--gutter) * -1);
		padding: 4px var(--gutter) 14px;
	}
	.svc-grid-v2::-webkit-scrollbar, .svc-archive-grid::-webkit-scrollbar { display: none; }
	.svc-grid-v2 > *, .svc-archive-grid > * {
		flex: 0 0 80%;
		scroll-snap-align: start;
		min-height: 0;
	}
	.svc-v2.featured, .svc-archive-card.featured { grid-column: auto !important; flex: 0 0 80%; }
	/* little hint that there's more to swipe */
	.svc-scroll-hint { display: block; text-align: center; font-size: 12px; color: var(--muted); margin-top: 6px; }

	/* Stats band: smaller numbers */
	.stat-card { padding: 26px 22px; }
	.stat-card b { font-size: 40px; }
	.result-metric { font-size: 38px; }

	/* Trust bar: stack into rows, allow wrap */
	.trust-bar { gap: 14px; padding: 16px 18px; margin: 24px 0; }
	.trust-stat b { font-size: 22px; }
	.trust-item { width: 100%; }
	.trust-badges { width: 100%; }

	/* Marquees: smaller type so they don't overpower */
	.marquee-item { font-size: 38px; }
	.marquee-item .star { margin: 0 16px; }

	/* Lead form padding */
	.cta-form-wrap { padding: 32px 20px; border-radius: 18px; }
	.cta-form-wrap h2 { font-size: 28px; }
	.cta-form { padding: 20px; }
	.field-row { grid-template-columns: 1fr; }

	/* Service hero card */
	.service-hero { padding: 20px 0 40px; }
	.svc-hero-card { padding: 22px; }
	.shc-bar { grid-template-columns: 84px 1fr 34px; font-size: 11.5px; }
	.shc-foot { gap: 18px; }
	.shc-stat b { font-size: 30px; }

	/* Process card padding */
	.process { padding: 36px 20px !important; border-radius: 18px; }

	/* Comparison table: keep readable */
	.compare-row > div { padding: 11px 8px; font-size: 11px; gap: 4px; }
	.compare-head .winner::after { display: none; }

	/* Reviews cards narrower */
	.review-card { width: 80vw; max-width: 320px; }
	.reviews-head { margin-bottom: 28px; }

	/* Footer single column */
	.foot-grid { grid-template-columns: 1fr !important; gap: 28px; }
	.foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
	.foot-bottom a { margin: 0 8px; }

	/* Mid CTA stacks */
	.mid-cta { padding: 28px 22px; }
	.mid-cta h3 { font-size: 22px; }

	/* Sticky CTA: hidden on mobile — WhatsApp float + menu CTA already cover this,
	   and a centred floating bar collides with the WhatsApp/cookie buttons. */
	.sticky-cta { display: none !important; }
	.wa-float { width: 50px; height: 50px; right: 16px; bottom: 16px; }

	/* Tech orbit chips smaller already handled; tighten further */
	.tk-chip-b { padding: 4px 7px; font-size: 9.5px; }
}

/* Very small phones */
@media (max-width: 380px) {
	.hero h1 { font-size: 29px; }
	.marquee-item { font-size: 30px; }
	.stat-card b { font-size: 34px; }
}

/* ===== Engaging animations & trust elements ===== */

/* Animated gradient text */
.grad-text {
	background: linear-gradient(100deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent) 100%);
	background-size: 220% auto;
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent; color: transparent;
	animation: grad-pan 5s linear infinite;
}
@keyframes grad-pan { to { background-position: 220% center; } }

/* Hero headline word-by-word reveal */
.hero-headline .word {
	display: inline-block;
	opacity: 0;
	transform: translateY(28px) rotate(2deg);
	animation: word-in .7s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes word-in { to { opacity: 1; transform: none; } }

/* Underline-sweep on section h2 */
.section-head h2, .svc-archive-hero h1 { position: relative; }

/* Trust bar */
.trust-bar {
	display: flex; align-items: center; flex-wrap: wrap; gap: 20px 28px;
	padding: 22px 28px; margin: 44px 0;
	background: var(--paper-2);
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: var(--shadow-sm);
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-stars { color: #ffb800; font-size: 18px; letter-spacing: 2px; }
.trust-meta b { display: block; font-size: 18px; color: var(--ink-2); line-height: 1.1; }
.trust-meta span { font-size: 12px; color: var(--muted); }
.trust-divider { width: 1px; height: 38px; background: var(--line); }
.trust-stat { display: flex; flex-direction: column; }
.trust-stat b { font-size: 26px; font-weight: 600; color: var(--ink-2); letter-spacing: -.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.trust-stat span { font-size: 12px; color: var(--muted); margin-top: 4px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-left: auto; }
.trust-badge { font-size: 12px; padding: 6px 12px; border-radius: 99px; background: color-mix(in oklab, var(--accent) 7%, transparent); color: var(--ink-2); border: 1px solid color-mix(in oklab, var(--accent) 16%, transparent); white-space: nowrap; }
@media (max-width: 860px) {
	.trust-bar { gap: 14px 18px; padding: 18px 20px; }
	.trust-divider { display: none; }
	.trust-badges { margin-left: 0; width: 100%; }
}

/* Count-up shimmer while animating */
.is-counting { color: var(--accent); }

/* Button shine sweep */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
	content: ''; position: absolute; top: 0; left: -120%;
	width: 60%; height: 100%;
	background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent);
	transform: skewX(-18deg);
	transition: left .6s ease;
}
.btn-primary:hover::after { left: 140%; }

/* Card hover lift gets a subtle accent glow */
.svc:hover, .feat:hover, .why-card:hover, .svc-archive-card:hover, .ap-card:hover {
	box-shadow: 0 18px 40px -12px color-mix(in oklab, var(--accent) 30%, transparent);
}

/* Eyebrow pulse dot */
.eyebrow .dot { animation: eb-pulse 2.4s ease-out infinite; }
@keyframes eb-pulse {
	0%   { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 40%, transparent); }
	70%  { box-shadow: 0 0 0 7px color-mix(in oklab, var(--accent) 0%, transparent); }
	100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 0%, transparent); }
}

/* Marquee item hover color */
.marquee-item:hover { color: var(--accent); transition: color .2s; }

/* Reveal variants */
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal-stagger.in > * { opacity: 1; transform: none; }

/* ===== Reviews (continuous scroll) ===== */
.reviews-section { padding: 88px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 44px; flex-wrap: wrap; }
.reviews-head h2 { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08; margin-top: 14px; }
.reviews-summary { display: flex; align-items: center; gap: 14px; }
.reviews-stars { color: #ffb800; font-size: 20px; letter-spacing: 2px; white-space: nowrap; }
.reviews-summary b { display: block; font-size: 20px; color: var(--ink-2); }
.reviews-summary span { font-size: 13px; color: var(--muted); }
.reviews-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.reviews-track { display: flex; gap: 22px; width: max-content; animation: reviews-scroll 70s linear infinite; }
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes reviews-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card {
	flex: 0 0 auto; width: 380px;
	display: flex; flex-direction: column; gap: 14px;
	padding: 26px; border-radius: 16px;
	background: var(--paper-2); border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
}
.review-top { display: flex; align-items: center; justify-content: space-between; }
.review-stars { color: #ffb800; font-size: 15px; letter-spacing: 2px; }
.review-src { font-family: ui-monospace, monospace; font-size: 11px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.review-card blockquote { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink); }
.review-who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 8px; }
.review-ava { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 600; flex-shrink: 0; }
.review-who b { display: block; font-size: 14px; color: var(--ink-2); }
.review-who span { font-size: 12px; color: var(--muted); }
@media (max-width: 540px) { .review-card { width: 300px; } }

/* ===== Vibrant WHY cards ===== */
.why-card { position: relative; overflow: hidden; }
.why-card .icon-tile {
	background: linear-gradient(135deg, var(--c1, var(--accent)), var(--c2, var(--accent-2)));
	color: #fff;
	box-shadow: 0 8px 20px -6px color-mix(in oklab, var(--c1, var(--accent)) 60%, transparent);
}
.why-card::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, var(--c1, var(--accent)), var(--c2, var(--accent-2)));
	transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { border-color: color-mix(in oklab, var(--c1, var(--accent)) 50%, var(--line)); box-shadow: 0 18px 40px -14px color-mix(in oklab, var(--c1, var(--accent)) 40%, transparent); }

/* ===== Vibrant SERVICE cards (v2) ===== */
.svc-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-v2 {
	position: relative; overflow: hidden;
	display: flex; flex-direction: column;
	padding: 30px; border-radius: 20px;
	border: 1px solid var(--line); background: var(--paper-2);
	text-decoration: none; min-height: 260px;
	transition: transform .25s, border-color .25s, box-shadow .25s;
	isolation: isolate;
}
.svc-v2 .svc-v2-glow {
	position: absolute; inset: 0; z-index: -1; opacity: 0;
	background: radial-gradient(120% 100% at 100% 0%, color-mix(in oklab, var(--c2) 22%, transparent), transparent 60%);
	transition: opacity .3s ease;
}
.svc-v2:hover { transform: translateY(-5px); border-color: color-mix(in oklab, var(--c1) 55%, var(--line)); box-shadow: 0 22px 48px -18px color-mix(in oklab, var(--c1) 55%, transparent); }
.svc-v2:hover .svc-v2-glow { opacity: 1; }
.svc-v2-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.svc-v2-icon {
	width: 60px; height: 60px; border-radius: 16px;
	background: linear-gradient(135deg, var(--c1), var(--c2));
	color: #fff; display: grid; place-items: center;
	box-shadow: 0 10px 24px -8px color-mix(in oklab, var(--c1) 65%, transparent);
	transition: transform .3s ease;
}
.svc-v2:hover .svc-v2-icon { transform: scale(1.08) rotate(-4deg); }
.svc-v2-num { font-family: ui-monospace, monospace; font-size: 28px; font-weight: 700; letter-spacing: -.02em; color: color-mix(in oklab, var(--c1) 22%, var(--line)); line-height: 1; }
.svc-v2 h3 { font-size: 21px; margin-bottom: 10px; color: var(--ink-2); }
.svc-v2 > p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.svc-v2-link { margin-top: auto; padding-top: 20px; font-size: 14px; font-weight: 600; color: var(--c1); display: inline-flex; align-items: center; gap: 6px; }
.svc-v2-link .arrow { transition: transform .2s; }
.svc-v2:hover .svc-v2-link .arrow { transform: translateX(5px); }
.svc-v2.featured { grid-column: span 2; background: linear-gradient(135deg, color-mix(in oklab, var(--c1) 12%, var(--paper-2)), var(--paper-2)); }
.svc-v2.featured h3 { font-size: 26px; }
@media (max-width: 980px) { .svc-grid-v2 { grid-template-columns: 1fr 1fr; } .svc-v2.featured { grid-column: span 2; } }
@media (max-width: 640px) { .svc-grid-v2 { grid-template-columns: 1fr; } .svc-v2.featured { grid-column: span 1; } }

/* ===== Logo marquee (continuous) ===== */
.logo-bar-v2 { padding: 36px 0; }
.logo-bar-v2 .logo-bar-label { display: block; text-align: center; margin-bottom: 24px; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; }
.logo-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-marquee-track { display: flex; gap: 16px; width: max-content; animation: logo-scroll 55s linear infinite; }
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-chip {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 14px 26px; border-radius: 12px;
	border: 1px solid var(--line); background: var(--paper-2);
	font-size: 18px; font-weight: 600; letter-spacing: -.01em; color: var(--ink-2);
	white-space: nowrap; transition: border-color .2s, color .2s, transform .2s;
}
.logo-chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.logo-chip img { max-height: 30px; width: auto; }

/* ===== Vibrant stats band ===== */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card {
	position: relative; overflow: hidden;
	padding: 36px 28px; border-radius: 18px;
	background: linear-gradient(150deg, color-mix(in oklab, var(--c1) 14%, var(--paper-2)), var(--paper-2));
	border: 1px solid color-mix(in oklab, var(--c1) 22%, var(--line));
	transition: transform .25s, box-shadow .25s;
}
.stat-card::after {
	content: ''; position: absolute; right: -30px; top: -30px;
	width: 120px; height: 120px; border-radius: 50%;
	background: radial-gradient(circle, color-mix(in oklab, var(--c2) 30%, transparent), transparent 70%);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -16px color-mix(in oklab, var(--c1) 45%, transparent); }
.stat-card b {
	display: block; font-size: 52px; line-height: 1; letter-spacing: -.04em; font-weight: 700;
	background: linear-gradient(135deg, var(--c1), var(--c2));
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
	font-variant-numeric: tabular-nums;
}
.stat-card span { display: block; margin-top: 10px; font-size: 14px; color: var(--muted); font-weight: 500; }
@media (max-width: 860px) { .stats-band { grid-template-columns: 1fr 1fr; } }

/* ===== Results / Success cards ===== */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.result-card {
	position: relative; overflow: hidden;
	padding: 30px; border-radius: 18px;
	background: var(--paper-2); border: 1px solid var(--line);
	transition: transform .25s, border-color .25s, box-shadow .25s;
}
.result-card::before {
	content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
	background: linear-gradient(var(--c1), var(--c2));
}
.result-card:hover { transform: translateY(-4px); border-color: color-mix(in oklab, var(--c1) 45%, var(--line)); box-shadow: 0 20px 44px -16px color-mix(in oklab, var(--c1) 40%, transparent); }
.result-tag {
	display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
	padding: 5px 11px; border-radius: 99px; margin-bottom: 16px;
	background: color-mix(in oklab, var(--c1) 12%, transparent); color: var(--c1);
}
.result-metric {
	font-size: 48px; line-height: 1; font-weight: 700; letter-spacing: -.03em;
	background: linear-gradient(135deg, var(--c1), var(--c2));
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
	margin-bottom: 12px;
}
.result-card p { font-size: 14.5px; color: var(--muted); line-height: 1.5; }
@media (max-width: 860px) { .results-grid { grid-template-columns: 1fr; } }

/* ===== Services archive / index ===== */
.svc-archive-hero { padding: 40px 0 24px; text-align: center; max-width: 820px; margin: 0 auto; }
.svc-archive-hero .eyebrow { margin-bottom: 18px; }
.svc-archive-hero h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.02; margin-bottom: 20px; }
.svc-archive-hero .sub { font-size: 18px; margin: 0 auto 28px; }
.svc-archive-hero .hero-actions { justify-content: center; }

.svc-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-archive-card {
	display: flex; flex-direction: column;
	padding: 30px; border: 1px solid var(--line); border-radius: 18px;
	background: var(--paper-2); text-decoration: none;
	transition: transform .22s, border-color .22s, box-shadow .22s;
	min-height: 280px;
}
.svc-archive-card:hover { transform: translateY(-4px); border-color: color-mix(in oklab, var(--accent) 50%, var(--line)); box-shadow: var(--shadow-md); }
.svc-archive-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.svc-archive-icon {
	width: 52px; height: 52px; border-radius: 13px;
	background: linear-gradient(135deg, color-mix(in oklab, var(--accent) 16%, transparent), color-mix(in oklab, var(--accent-2) 12%, transparent));
	color: var(--accent); display: grid; place-items: center;
}
.svc-archive-num { font-family: ui-monospace, monospace; font-size: 13px; color: var(--muted); letter-spacing: .08em; }
.svc-archive-card h3 { font-size: 21px; margin-bottom: 10px; }
.svc-archive-card > p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.svc-archive-tags { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.svc-archive-tags li { font-size: 11.5px; padding: 4px 10px; border-radius: 99px; background: color-mix(in oklab, var(--accent) 7%, transparent); color: var(--accent); border: 1px solid color-mix(in oklab, var(--accent) 15%, transparent); }
.svc-archive-link { margin-top: auto; padding-top: 20px; font-size: 14px; font-weight: 500; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; }
.svc-archive-link .arrow { transition: transform .2s; }
.svc-archive-card:hover .svc-archive-link .arrow { transform: translateX(4px); }
.svc-archive-card:hover .svc-archive-link { color: var(--accent); }
@media (max-width: 980px) { .svc-archive-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .svc-archive-grid { grid-template-columns: 1fr; } }

/* Colorful rotation for archive + feature cards */
.svc-archive-card:nth-child(7n+1), .feat:nth-child(6n+1) { --c1:#2f5bff; --c2:#22d3ee; }
.svc-archive-card:nth-child(7n+2), .feat:nth-child(6n+2) { --c1:#10b981; --c2:#34d399; }
.svc-archive-card:nth-child(7n+3), .feat:nth-child(6n+3) { --c1:#7c3aed; --c2:#c084fc; }
.svc-archive-card:nth-child(7n+4), .feat:nth-child(6n+4) { --c1:#f59e0b; --c2:#fbbf24; }
.svc-archive-card:nth-child(7n+5), .feat:nth-child(6n+5) { --c1:#ec4899; --c2:#fb7185; }
.svc-archive-card:nth-child(7n+6), .feat:nth-child(6n+6) { --c1:#06b6d4; --c2:#67e8f9; }
.svc-archive-card:nth-child(7n+7) { --c1:#ef4444; --c2:#fb923c; }

.svc-archive-icon {
	background: linear-gradient(135deg, var(--c1, var(--accent)), var(--c2, var(--accent-2)));
	color: #fff;
	box-shadow: 0 10px 24px -8px color-mix(in oklab, var(--c1, var(--accent)) 60%, transparent);
}
.svc-archive-card:hover { border-color: color-mix(in oklab, var(--c1, var(--accent)) 50%, var(--line)); box-shadow: 0 22px 48px -18px color-mix(in oklab, var(--c1, var(--accent)) 45%, transparent); }
.svc-archive-card:hover .svc-archive-link { color: var(--c1, var(--accent)); }
.svc-archive-tags li { background: color-mix(in oklab, var(--c1, var(--accent)) 8%, transparent); color: var(--c1, var(--accent)); border-color: color-mix(in oklab, var(--c1, var(--accent)) 18%, transparent); }

/* Feature card icon tiles (service detail pages) */
.feat .ix {
	background: linear-gradient(135deg, var(--c1, var(--accent)), var(--c2, var(--accent-2)));
	color: #fff;
	box-shadow: 0 8px 20px -7px color-mix(in oklab, var(--c1, var(--accent)) 60%, transparent);
}
.feat:hover { border-color: color-mix(in oklab, var(--c1, var(--accent)) 50%, var(--line)); box-shadow: 0 18px 40px -16px color-mix(in oklab, var(--c1, var(--accent)) 40%, transparent); }

/* Other-services link cards: real icon + bottom arrow */
.feat-link { display: flex; flex-direction: column; }
.feat .ix.ix-icon { width: 52px; height: 52px; border-radius: 13px; }
.feat-arrow { margin-top: auto; padding-top: 18px; font-size: 14px; font-weight: 600; color: var(--c1, var(--accent)); display: inline-flex; align-items: center; gap: 6px; }
.feat-arrow .arrow { transition: transform .2s; }
.feat-link:hover .feat-arrow .arrow { transform: translateX(5px); }
