/* ============================================================
   Tech Guardian Next — Main Stylesheet
   assets/techguardian.css
   ============================================================ */

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
	--blue:      #00a2ff;
	--blue-dim:  rgba(0,162,255,0.12);
	--blue-mid:  rgba(0,162,255,0.35);
	--blue-glow: rgba(0,162,255,0.55);
	--black:     #04080f;
	--dark:      #080f1a;
	--dark2:     #0d1826;
	--dark3:     #111f33;
	--white:     #e8f2ff;
	--muted:     #5a7a9a;
	--muted2:    #3a5a7a;
	--mono:      'DM Mono', monospace;
	--sans:      'Exo 2', sans-serif;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	background:  var(--black);
	color:       var(--white);
	font-family: var(--sans);
	overflow-x:  hidden;
	cursor:      none;
	line-height: 1.6;
}
a { color: var(--white); text-decoration: none; }
img { max-width: 100%; }

/* ─── CUSTOM CURSOR ─────────────────────────────────────────── */
#cursor {
	position: fixed; width: 12px; height: 12px;
	background: var(--blue); border-radius: 50%;
	pointer-events: none; z-index: 9999;
	transform: translate(-50%,-50%);
	transition: width .2s, height .2s;
	mix-blend-mode: screen;
}
#cursor-ring {
	position: fixed; width: 36px; height: 36px;
	border: 1px solid rgba(0,162,255,0.45); border-radius: 50%;
	pointer-events: none; z-index: 9998;
	transform: translate(-50%,-50%);
	transition: left .12s ease-out, top .12s ease-out;
}
#particles {
	position: fixed; inset: 0;
	pointer-events: none; z-index: 0; opacity: 0.55;
}

/* ─── NAV ───────────────────────────────────────────────────── */
nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 500;
	height: 68px;
	display: flex; align-items: center; justify-content: space-between;
	padding: 0 44px;
	background: linear-gradient(to bottom, rgba(4,8,15,0.96) 0%, rgba(4,8,15,0) 100%);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(0,162,255,0.07);
	transition: background .3s;
}
nav.scrolled { background: rgba(4,8,15,0.97); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-hex {
	width: 34px; height: 34px; background: var(--blue);
	clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
	display: flex; align-items: center; justify-content: center;
}
.nav-logo-inner {
	width: 18px; height: 18px; background: #000;
	clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
}
.nav-logo-text { font-size: 15px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.nav-logo-text b { color: var(--blue); }

.nav-links { display: flex; align-items: center; gap: 30px; height: 100%; }
.nav-links > a {
	font-family: var(--mono); font-size: 11px; font-weight: 400;
	letter-spacing: .12em; text-transform: uppercase;
	color: var(--muted); transition: color .2s;
}
.nav-links > a:hover { color: var(--blue); }

/* Mega dropdown */
.mega-wrap { position: relative; height: 100%; display: flex; align-items: center; }
.mega-trigger {
	font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
	text-transform: uppercase; color: var(--muted);
	cursor: pointer; display: flex; align-items: center; gap: 5px;
	border: none; background: none; transition: color .2s; padding: 0;
}
.mega-trigger:hover { color: var(--blue); }
.mega-trigger svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform .25s; }
.mega-wrap:hover .mega-trigger svg { transform: rotate(180deg); }
.mega-drop {
	position: absolute; top: calc(100% + 8px); left: 50%;
	transform: translateX(-50%);
	background: rgba(6,12,22,0.98);
	border: 1px solid rgba(0,162,255,0.13); border-radius: 10px;
	padding: 28px 24px;
	display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
	min-width: 620px;
	opacity: 0; visibility: hidden;
	transition: all .25s; pointer-events: none;
	backdrop-filter: blur(20px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.mega-wrap:hover .mega-drop {
	opacity: 1; visibility: visible;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}
.mega-col h4 {
	font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
	color: var(--blue); text-transform: uppercase; margin-bottom: 12px;
}
.mega-col a { display: block; color: var(--muted); font-size: 13px; padding: 5px 0; transition: all .18s; }
.mega-col a:hover { color: var(--white); padding-left: 6px; }

.nav-cta {
	background: transparent; border: 1px solid var(--blue); color: var(--blue);
	font-family: var(--sans); font-weight: 700; font-size: 11px;
	letter-spacing: .1em; text-transform: uppercase;
	padding: 9px 20px; border-radius: 4px; cursor: pointer;
	transition: all .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--blue); color: #000; box-shadow: 0 0 18px var(--blue-mid); }

.hamburger {
	display: none; background: none; border: none;
	color: var(--white); cursor: pointer; padding: 8px;
	flex-direction: column; gap: 5px;
}
.hamburger span {
	display: block; width: 22px; height: 2px;
	background: var(--white); border-radius: 2px; transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ───────────────────────────────────────────── */
.mobile-menu {
	display: none; position: fixed; inset: 0;
	background: rgba(4,8,15,0.99); z-index: 600;
	padding: 80px 28px 100px; overflow-y: auto; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mob-close {
	position: absolute; top: 20px; right: 22px;
	background: none; border: none; color: var(--white);
	font-size: 26px; cursor: pointer; line-height: 1;
}
.mobile-menu a {
	font-size: 17px; font-weight: 600; padding: 13px 0;
	border-bottom: 1px solid rgba(0,162,255,0.07);
	display: block; color: var(--white); transition: color .2s;
}
.mobile-menu a:hover { color: var(--blue); }
.mob-section-head {
	font-family: var(--mono); font-size: 10px; letter-spacing: .18em;
	color: var(--blue); text-transform: uppercase; padding: 16px 0 4px; margin-top: 8px;
}
.mob-sub a { font-size: 14px; color: var(--muted); padding: 9px 0 9px 12px; }
.mob-book-btn {
	display: block; background: var(--blue); color: #000;
	font-weight: 800; font-size: 15px; text-align: center;
	padding: 16px; border-radius: 6px; margin-top: 20px; letter-spacing: .05em;
}
.mob-call-btn {
	display: block; border: 1px solid rgba(0,162,255,0.4);
	color: var(--blue); font-weight: 700; font-size: 15px;
	text-align: center; padding: 14px; border-radius: 6px; margin-top: 10px;
}
.mob-book-sticky {
	position: fixed; bottom: 0; left: 0; right: 0;
	padding: 12px 20px;
	background: rgba(4,8,15,0.97);
	border-top: 1px solid rgba(0,162,255,0.12);
	z-index: 700; display: none;
}
.mob-book-sticky a {
	display: block; background: var(--blue); color: #000;
	font-weight: 800; font-size: 14px; text-align: center;
	padding: 14px; border-radius: 6px;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
	position: relative; min-height: 100vh;
	display: flex; align-items: center;
	padding: 120px 48px 100px; overflow: hidden; z-index: 1;
}
.hero-bg {
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse 65% 55% at 70% 50%, rgba(0,162,255,0.065) 0%, transparent 70%),
		radial-gradient(ellipse 40% 60% at 15% 80%, rgba(0,100,200,0.045) 0%, transparent 60%),
		linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
	pointer-events: none;
}
.hero-traces { position: absolute; right: 0; top: 0; width: 54%; height: 100%; opacity: .17; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
	text-transform: uppercase; color: var(--blue); margin-bottom: 26px;
}
.hero-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--blue); }
.hero-h1 { font-size: clamp(40px,5.5vw,72px); font-weight: 900; line-height: 1.02; letter-spacing: -.025em; margin-bottom: 22px; }
.hero-h1 .line2 { display: block; font-size: clamp(36px,5vw,66px); font-weight: 900; color: var(--blue); text-shadow: 0 0 40px rgba(0,162,255,0.4); }
.hero-sub { font-size: 16px; font-weight: 300; line-height: 1.75; color: rgba(232,242,255,.6); max-width: 540px; margin-bottom: 14px; }
.hero-sub b { color: var(--white); font-weight: 600; }
.hero-disclaimer { font-family: var(--mono); font-size: 10px; color: var(--muted2); letter-spacing: .05em; margin-bottom: 38px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 44px; margin-top: 60px; padding-top: 36px; border-top: 1px solid rgba(0,162,255,.1); flex-wrap: wrap; }
.stat-num { font-size: 34px; font-weight: 900; color: var(--blue); line-height: 1; font-family: var(--mono); }
.stat-label { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.scroll-hint {
	position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
	display: flex; flex-direction: column; align-items: center; gap: 7px;
	color: var(--muted); font-family: var(--mono); font-size: 10px;
	letter-spacing: .2em; text-transform: uppercase;
	animation: pulse 2.2s ease infinite; z-index: 2;
}
.scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, transparent, var(--blue)); }
@keyframes pulse { 0%,100%{opacity:.35} 50%{opacity:.9} }

/* ─── INNER PAGE HERO ───────────────────────────────────────── */
.inner-hero {
	position: relative; padding: 140px 48px 80px; overflow: hidden; z-index: 1;
}
.inner-hero-bg {
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(0,162,255,0.06) 0%, transparent 70%),
	            linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
	pointer-events: none;
}
.inner-hero-content { position: relative; z-index: 2; max-width: 800px; }
.inner-hero-title {
	font-size: clamp(36px,5vw,64px); font-weight: 900;
	line-height: 1.05; letter-spacing: -.025em; margin-bottom: 0;
}

/* ─── PAGE CONTENT SECTION ──────────────────────────────────── */
.page-content-section { padding: 60px 0 80px; position: relative; z-index: 1; }
.page-content-inner { max-width: 900px; margin: 0 auto; padding: 0 48px; }
.page-content-body {
	font-size: 16px; line-height: 1.8; color: rgba(232,242,255,.75);
}
.page-content-body h1,
.page-content-body h2,
.page-content-body h3,
.page-content-body h4 {
	color: var(--white); font-weight: 800; margin: 32px 0 14px; line-height: 1.2;
}
.page-content-body h2 { font-size: clamp(22px,3vw,32px); }
.page-content-body h3 { font-size: clamp(18px,2.5vw,24px); }
.page-content-body p { margin-bottom: 18px; }
.page-content-body a { color: var(--blue); border-bottom: 1px solid rgba(0,162,255,.3); transition: border-color .2s; }
.page-content-body a:hover { border-color: var(--blue); }
.page-content-body ul, .page-content-body ol { padding-left: 22px; margin-bottom: 18px; }
.page-content-body li { margin-bottom: 8px; }
.page-content-body strong { color: var(--white); font-weight: 700; }
.page-content-body table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.page-content-body th { background: var(--dark2); color: var(--blue); font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; padding: 12px 16px; text-align: left; border: 1px solid rgba(0,162,255,.12); }
.page-content-body td { padding: 11px 16px; border: 1px solid rgba(0,162,255,.08); color: rgba(232,242,255,.65); font-size: 14px; }
.page-content-body tr:hover td { background: rgba(0,162,255,.04); }

/* ─── PAGE CTA BAND ─────────────────────────────────────────── */
.page-cta-band { padding: 80px 0; background: var(--dark); border-top: 1px solid rgba(0,162,255,.08); position: relative; z-index: 1; }

/* ─── GLOW DIVIDER ──────────────────────────────────────────── */
.glow-div {
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(0,162,255,.12) 20%, rgba(0,162,255,.38) 50%, rgba(0,162,255,.12) 80%, transparent 100%);
}

/* ─── TRUST STRIP ───────────────────────────────────────────── */
.trust {
	background: rgba(0,162,255,.04);
	border-top: 1px solid rgba(0,162,255,.08);
	border-bottom: 1px solid rgba(0,162,255,.08);
	padding: 18px 24px; position: relative; z-index: 1;
}
.trust-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item {
	display: flex; align-items: center; gap: 9px;
	font-family: var(--mono); font-size: 11px; font-weight: 400;
	letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.trust-check {
	width: 16px; height: 16px; border: 1px solid rgba(0,162,255,.5);
	border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-check::after { content: '✓'; font-size: 9px; color: var(--blue); line-height: 1; }

/* ─── SECTION BASE ──────────────────────────────────────────── */
section { position: relative; z-index: 1; }
.sec-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.sec-eye {
	font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
	text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
	display: flex; align-items: center; gap: 10px;
}
.sec-eye::before { content: ''; width: 18px; height: 1px; background: var(--blue); }
.sec-title { font-size: clamp(30px,3.8vw,50px); font-weight: 900; letter-spacing: -.022em; line-height: 1.06; margin-bottom: 14px; }
.sec-sub { font-size: 15px; color: rgba(232,242,255,.55); font-weight: 300; line-height: 1.7; max-width: 560px; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
	background: var(--blue); color: #000;
	font-family: var(--sans); font-weight: 800; font-size: 13px;
	letter-spacing: .08em; text-transform: uppercase;
	padding: 15px 32px; border: none; border-radius: 4px; cursor: pointer;
	display: inline-block; position: relative; overflow: hidden;
	transition: all .2s; box-shadow: 0 0 28px rgba(0,162,255,.3); white-space: nowrap;
}
.btn-primary:hover { box-shadow: 0 0 45px rgba(0,162,255,.5); color: #000; }
.btn-ghost-blue {
	background: transparent; color: var(--blue);
	font-family: var(--sans); font-weight: 700; font-size: 13px;
	letter-spacing: .08em; text-transform: uppercase;
	padding: 14px 28px; border: 1px solid rgba(0,162,255,.35);
	border-radius: 4px; display: inline-block; transition: all .2s; white-space: nowrap;
}
.btn-ghost-blue:hover { border-color: var(--blue); box-shadow: 0 0 16px var(--blue-dim); color: var(--blue); }
.btn-ghost-w {
	background: transparent; color: rgba(232,242,255,.8);
	font-family: var(--sans); font-weight: 600; font-size: 13px;
	letter-spacing: .08em; text-transform: uppercase;
	padding: 14px 24px; border: 1px solid rgba(232,242,255,.18);
	border-radius: 4px; display: inline-block; transition: all .2s; white-space: nowrap;
}
.btn-ghost-w:hover { border-color: rgba(232,242,255,.4); color: var(--white); }

/* ─── SERVICES ──────────────────────────────────────────────── */
.services { padding: 110px 0; }
.services-grid {
	display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
	gap: 2px; margin-top: 60px;
	background: rgba(0,162,255,.05);
	border: 1px solid rgba(0,162,255,.09);
	border-radius: 12px; overflow: hidden;
}
.svc-card { background: var(--dark); padding: 36px 32px; position: relative; overflow: hidden; transition: background .3s; }
.svc-card::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
	background: linear-gradient(90deg, transparent, var(--blue), transparent);
	transform: scaleX(0); transition: transform .35s;
}
.svc-card:hover { background: var(--dark2); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card::after {
	content: attr(data-n); position: absolute; bottom: 20px; right: 24px;
	font-family: var(--mono); font-size: 60px; font-weight: 700;
	color: rgba(0,162,255,.05); line-height: 1; transition: color .3s;
}
.svc-card:hover::after { color: rgba(0,162,255,.1); }
.svc-icon {
	width: 52px; height: 52px; border: 1px solid rgba(0,162,255,.22);
	border-radius: 8px; display: flex; align-items: center; justify-content: center;
	margin-bottom: 20px; transition: border-color .3s, box-shadow .3s;
}
.svc-card:hover .svc-icon { border-color: var(--blue); box-shadow: 0 0 18px var(--blue-dim); }
.svc-icon svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-name { font-size: 18px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 9px; }
.svc-desc { font-size: 13px; line-height: 1.65; color: rgba(232,242,255,.48); font-weight: 300; margin-bottom: 18px; }
.svc-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; color: var(--blue); border: 1px solid rgba(0,162,255,.28); padding: 3px 9px; border-radius: 3px; display: inline-block; margin-bottom: 18px; }
.svc-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.svc-btn-view { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); border: 1px solid rgba(90,122,154,.3); padding: 7px 14px; border-radius: 3px; transition: all .2s; }
.svc-btn-view:hover { color: var(--white); border-color: rgba(232,242,255,.35); }
.svc-btn-book { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #000; background: var(--blue); border: 1px solid var(--blue); padding: 7px 14px; border-radius: 3px; transition: all .2s; }
.svc-btn-book:hover { box-shadow: 0 0 14px var(--blue-mid); }
.services-all-link { display: flex; justify-content: center; margin-top: 32px; }
.services-all-link a { font-family: var(--mono); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--blue); border-bottom: 1px solid rgba(0,162,255,.3); padding-bottom: 2px; transition: border-color .2s; }
.services-all-link a:hover { border-color: var(--blue); }

/* ─── WHY ───────────────────────────────────────────────────── */
.why { padding: 110px 0; background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; margin-top: 60px; align-items: start; }
.why-items { display: flex; flex-direction: column; }
.why-item { display: flex; gap: 22px; padding: 24px 0; border-bottom: 1px solid rgba(0,162,255,.07); }
.why-item:last-child { border-bottom: none; }
.why-num { font-family: var(--mono); font-size: 11px; color: var(--blue); letter-spacing: .1em; flex-shrink: 0; padding-top: 3px; }
.why-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 7px; transition: color .2s; }
.why-item:hover h3 { color: var(--blue); }
.why-body p { font-size: 13px; line-height: 1.7; color: rgba(232,242,255,.48); font-weight: 300; }
.why-visual { position: sticky; top: 90px; background: var(--dark2); border: 1px solid rgba(0,162,255,.11); border-radius: 12px; padding: 40px 36px; overflow: hidden; }
.why-visual::before { content: ''; position: absolute; top: -60%; right: -60%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(0,162,255,.07) 0%, transparent 70%); pointer-events: none; }
.metric-row { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid rgba(0,162,255,.06); }
.metric-row:last-child { border-bottom: none; }
.metric-label { font-family: var(--mono); font-size: 12px; color: var(--muted); font-weight: 300; }
.metric-val { font-size: 24px; font-weight: 900; color: var(--blue); font-family: var(--mono); text-align: right; line-height: 1; }
.metric-sub { font-size: 10px; color: var(--muted2); font-family: var(--mono); text-align: right; margin-top: 3px; }

/* ─── PROCESS ───────────────────────────────────────────────── */
.process { padding: 110px 0; }
.process-steps { display: flex; gap: 0; margin-top: 60px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 34px; left: 68px; right: 68px; height: 1px; background: linear-gradient(90deg, transparent, var(--blue-dim), var(--blue-mid), var(--blue-dim), transparent); }
.proc-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 14px; }
.proc-circle { width: 68px; height: 68px; border: 1px solid rgba(0,162,255,.28); border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--dark); position: relative; z-index: 1; margin-bottom: 22px; transition: all .3s; }
.proc-step:hover .proc-circle { border-color: var(--blue); background: var(--blue-dim); box-shadow: 0 0 26px var(--blue-dim); }
.proc-n { font-family: var(--mono); font-size: 16px; font-weight: 500; color: var(--blue); }
.proc-name { font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.proc-desc { font-size: 12px; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ─── COMPARISON ────────────────────────────────────────────── */
.comparison { padding: 110px 0; background: var(--dark); }
.comp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 60px; background: rgba(0,162,255,.05); border: 1px solid rgba(0,162,255,.09); border-radius: 12px; overflow: hidden; }
.comp-card { background: var(--dark); padding: 36px 28px; position: relative; }
.comp-card.featured { background: rgba(0,162,255,.07); border-left: 2px solid var(--blue); }
.comp-brand { font-family: var(--mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.comp-card.featured .comp-brand { color: var(--blue); }
.comp-card-title { font-size: 16px; font-weight: 800; margin-bottom: 20px; }
.comp-items { display: flex; flex-direction: column; gap: 10px; }
.comp-item { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; line-height: 1.5; color: rgba(232,242,255,.5); font-weight: 300; }
.comp-item::before { content: '—'; color: var(--muted2); flex-shrink: 0; font-family: var(--mono); }
.comp-card.featured .comp-item { color: rgba(232,242,255,.75); }
.comp-card.featured .comp-item::before { content: '✓'; color: var(--blue); }
.comp-badge { display: inline-block; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; background: var(--blue); color: #000; padding: 3px 9px; border-radius: 3px; margin-bottom: 14px; font-weight: 700; }

/* ─── CERTS ─────────────────────────────────────────────────── */
.certs { padding: 80px 0; }
.certs-grid { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 44px; justify-content: center; }
.cert-badge { background: var(--dark2); border: 1px solid rgba(0,162,255,.13); border-radius: 8px; padding: 18px 28px; display: flex; align-items: center; gap: 14px; transition: border-color .25s; }
.cert-badge:hover { border-color: rgba(0,162,255,.3); }
.cert-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 8px var(--blue-glow); flex-shrink: 0; }
.cert-text { font-size: 13px; font-weight: 600; color: var(--white); }
.cert-sub { font-family: var(--mono); font-size: 10px; color: var(--muted); margin-top: 2px; }

/* ─── REVIEWS ───────────────────────────────────────────────── */
.reviews { padding: 110px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 60px; }
.rev-card { background: var(--dark2); border: 1px solid rgba(0,162,255,.09); border-radius: 10px; padding: 30px 26px; position: relative; transition: border-color .3s, transform .3s; }
.rev-card:hover { border-color: rgba(0,162,255,.28); transform: translateY(-4px); }
.rev-quote-mark { position: absolute; top: 20px; right: 22px; font-size: 46px; color: rgba(0,162,255,.07); font-family: Georgia, serif; line-height: 1; }
.rev-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.rev-star { color: var(--blue); font-size: 13px; }
.rev-text { font-size: 13px; line-height: 1.8; color: rgba(232,242,255,.68); font-weight: 300; font-style: italic; margin-bottom: 22px; }
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--blue-dim); border: 1px solid rgba(0,162,255,.28); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: var(--blue); flex-shrink: 0; }
.rev-name { font-size: 13px; font-weight: 700; }
.rev-device { font-family: var(--mono); font-size: 10px; color: var(--muted); margin-top: 2px; }

/* ─── FINAL CTA ─────────────────────────────────────────────── */
.final-cta { padding: 130px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,162,255,.07) 0%, transparent 70%); pointer-events: none; }
.cta-title { font-size: clamp(34px,4.8vw,60px); font-weight: 900; line-height: 1.06; letter-spacing: -.022em; margin-bottom: 18px; position: relative; }
.cta-title span { color: var(--blue); }
.cta-sub { font-size: 16px; color: rgba(232,242,255,.52); font-weight: 300; margin-bottom: 40px; position: relative; max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-note { margin-top: 22px; font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: .1em; position: relative; }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer { border-top: 1px solid rgba(0,162,255,.08); background: var(--dark); position: relative; z-index: 1; }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 60px 48px 48px; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand-name { font-size: 16px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 12px; }
.footer-brand-name b { color: var(--blue); }
.footer-brand-desc { font-size: 13px; color: rgba(232,242,255,.45); line-height: 1.7; font-weight: 300; margin-bottom: 20px; max-width: 280px; }
.footer-hours { font-family: var(--mono); font-size: 11px; color: var(--muted); line-height: 1.9; }
.footer-col h4 { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(232,242,255,.45); padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(0,162,255,.07); padding: 20px 48px; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom-left { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: .05em; }
.footer-bottom-right { display: flex; gap: 24px; }
.footer-bottom-right a { font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; transition: color .2s; }
.footer-bottom-right a:hover { color: var(--blue); }

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── WORDPRESS CONTENT DEFAULTS ────────────────────────────── */
.wp-block-image { margin: 24px 0; }
.wp-block-image img { border-radius: 8px; border: 1px solid rgba(0,162,255,.12); }
.aligncenter { margin-left: auto; margin-right: auto; text-align: center; }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.comp-grid { grid-template-columns: repeat(2,1fr); }
	.footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	nav { padding: 0 20px; }
	.nav-links, .nav-cta { display: none !important; }
	.hamburger { display: flex; }
	.hero { padding: 100px 20px 80px; }
	.inner-hero { padding: 110px 20px 60px; }
	.sec-inner { padding: 0 20px; }
	.page-content-inner { padding: 0 20px; }
	.hero-stats { gap: 24px; }
	.services-grid { grid-template-columns: 1fr; }
	.why-grid { grid-template-columns: 1fr; gap: 40px; }
	.why-visual { position: static; }
	.process-steps { flex-wrap: wrap; gap: 28px; }
	.process-steps::before { display: none; }
	.proc-step { flex: 1 1 40%; }
	.comp-grid { grid-template-columns: 1fr; }
	.reviews-grid { grid-template-columns: 1fr; }
	.footer-main { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 20px; }
	.footer-bottom { padding: 16px 20px; flex-direction: column; text-align: center; }
	.mob-book-sticky { display: block; }
	body { cursor: auto; }
	#cursor, #cursor-ring { display: none; }
	.certs-grid { flex-direction: column; }
}

@media (max-width: 480px) {
	.footer-main { grid-template-columns: 1fr; }
	.proc-step { flex: 1 1 100%; }
}
