/*
 * Signal Bloom — Shared Stylesheet
 * signalbloom.co.uk
 * Used by all inner pages. index.html retains its own inline CSS.
 */

/* =============================================
   SKIP LINK
   ============================================= */
.skip-link{position:absolute;top:-100px;left:16px;z-index:9999;padding:10px 20px;background:#00e5ff;color:#050a14;font-weight:700;border-radius:8px;text-decoration:none;transition:top .2s}
.skip-link:focus{top:16px}

/* =============================================
   TOKENS
   ============================================= */
:root {
  --bg: #050a14;
  --bg-alt: #0a1020;
  --surface: #0d1628;
  --surface-hi: #111d35;
  --border: rgba(255,255,255,0.07);
  --border-hi: rgba(255,255,255,0.12);
  --accent: #00e5ff;
  --accent-2: #00ff88;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --text: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --glow: rgba(0,229,255,0.18);
  --glow-strong: rgba(0,229,255,0.35);
  --glow-green: rgba(0,255,136,0.15);
  --glow-amber: rgba(245,158,11,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --section-v: 100px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s ease;
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }

/* =============================================
   BACKGROUND GRID
   ============================================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

/* =============================================
   ORBS
   ============================================= */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: orbDrift 20s ease-in-out infinite;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 70%);
  top: -200px; left: -150px;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.05) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation-delay: -7s;
}
.orb-3 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,255,136,0.04) 0%, transparent 70%);
  bottom: -200px; right: -200px;
  animation-delay: -14s;
}
@keyframes orbDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-40px,60px) scale(1.05); }
  66% { transform: translate(50px,-30px) scale(0.95); }
}

/* =============================================
   CURSOR GLOW
   ============================================= */
.cursor-glow {
  position: fixed;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%,-50%);
  transition: opacity 0.3s ease;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 2;
}
.section-pad { padding: var(--section-v) 0; }
.bg-alt { background: var(--bg-alt); }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label-center { display: block; text-align: center; }
section { position: relative; overflow: hidden; }

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.section-sub {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 560px;
  line-height: 1.7;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.anim {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.anim.visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  padding: 14px 32px;
  min-height: 44px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  background: var(--amber);
  color: var(--bg);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: #fbb02e;
  box-shadow: 0 0 30px rgba(245,158,11,0.35);
  transform: translateY(-2px);
}
.btn-ghost {
  padding: 13px 32px;
  min-height: 44px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(0,229,255,0.06);
  transform: translateY(-2px);
}
.btn-accent {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: var(--accent);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-accent:hover {
  background: #33ecff;
  box-shadow: 0 0 24px var(--glow-strong);
  transform: translateY(-1px);
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(5,10,20,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: var(--accent);
  color: var(--bg);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.nav-cta:hover {
  background: #33ecff;
  box-shadow: 0 0 24px var(--glow-strong);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(5,10,20,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mobile-cta {
  margin-top: 8px;
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 18px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
}

/* =============================================
   INNER PAGE HERO
   ============================================= */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  background: var(--bg);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 30% 50%, rgba(0,229,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(0,229,255,0.25);
  background: rgba(0,229,255,0.08);
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 860px;
}
.page-hero p {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 36px;
}
.page-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   CONTENT CARDS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: rgba(0,229,255,0.2);
  box-shadow: 0 8px 40px rgba(0,229,255,0.06);
}
.card-icon {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1;
}
.card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =============================================
   CONTENT SECTIONS (PROSE)
   ============================================= */
.content-section {
  padding: var(--section-v) 0;
}
.content-inner {
  max-width: 820px;
}
.content-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  margin-top: 48px;
  color: var(--text);
}
.content-inner h2:first-child { margin-top: 0; }
.content-inner h3 {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  margin-top: 36px;
  color: var(--accent);
}
.content-inner p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.content-inner ul {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.content-inner ul li {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
}
.content-inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.content-inner ul li strong { color: var(--text); font-weight: 600; }
.content-inner ol {
  counter-reset: step;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.content-inner ol li {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 36px;
  position: relative;
  counter-increment: step;
}
.content-inner ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,229,255,0.12);
  border: 1px solid rgba(0,229,255,0.25);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-inner ol li strong { color: var(--text); font-weight: 600; }

/* Callout box */
.callout {
  padding: 24px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,229,255,0.2);
  background: rgba(0,229,255,0.05);
  margin: 28px 0;
}
.callout p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 0 !important;
  line-height: 1.7;
}
.callout p strong { color: var(--accent); }

/* Trade / location chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}
.chip {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border-hi);
  background: var(--surface);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
a.chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,229,255,0.06);
}

/* =============================================
   PRICING CARDS (inner page version)
   ============================================= */
.pricing-container {
  border: 1px solid var(--border-hi);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
}
.pricing-card {
  padding: 44px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--transition), transform var(--transition);
  background: var(--bg);
}
.pricing-card:last-child { border-right: none; }
.pricing-card:hover {
  transform: translateY(-4px);
  background: rgba(13,22,40,0.95);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.pricing-card.popular { background: rgba(0,229,255,0.04); }
.pricing-card.popular::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.pricing-popular-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,229,255,0.12);
  border: 1px solid rgba(0,229,255,0.25);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.pricing-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.pricing-price {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.pricing-interval {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}
.pricing-feature svg { flex-shrink: 0; margin-top: 2px; color: var(--accent-2); }
.pricing-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border-hi);
  color: var(--text);
  background: transparent;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
  text-align: center;
  display: block;
}
.pricing-btn:hover,
.pricing-card.popular .pricing-btn {
  border-color: var(--accent);
  background: rgba(0,229,255,0.1);
  color: var(--accent);
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  gap: 24px;
  user-select: none;
}
.faq-q svg {
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }
.faq-a p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =============================================
   CTA BAND (inner pages)
   ============================================= */
.cta-band {
  padding: 80px 0;
  text-align: center;
  position: relative;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,229,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-band-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =============================================
   AUDIT / CONTACT FORM
   ============================================= */
.audit-form {
  background: rgba(13,22,40,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-hi);
  border-radius: 20px;
  padding: 40px;
}
/* Form group — native elements inside .contact-form */
.contact-form {
  background: rgba(13,22,40,0.6);
  border: 1px solid var(--border-hi);
  border-radius: 16px;
  padding: 36px 40px;
}
@media (max-width: 640px) {
  .contact-form { padding: 24px 20px; }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border-hi);
  background: #050a14;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-body);
  line-height: 1.4;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #64748b; }
.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #050a14 inset !important;
  box-shadow: 0 0 0 1000px #050a14 inset !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  border-color: var(--border-hi) !important;
  caret-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.12);
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-input,
.form-select {
  width: 100%;
  padding: 14px 16px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border-hi);
  background: rgba(5,10,20,0.7);
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.12), 0 0 20px rgba(0,229,255,0.08);
}
.form-select {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option { background: #0d1628; color: var(--text); }
.form-submit {
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: var(--bg);
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.01em;
}
.form-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,229,255,0.3);
}
.form-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  text-align: center;
  font-style: italic;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.footer-contact-item a:hover { color: var(--accent); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 1px; color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
}

/* =============================================
   PAGE LOADER
   ============================================= */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#page-loader.hidden { opacity: 0; }
.loader-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  animation: loaderFade 0.4s ease 0.05s forwards;
}
@keyframes loaderFade { to { opacity: 1; } }

/* =============================================
   FLOATING CTA + SCROLL TOP
   ============================================= */
#float-cta {
  position: fixed;
  bottom: 88px; right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  min-height: 44px;
  border-radius: 50px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0,229,255,0.35);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
  pointer-events: none;
}
#float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#float-cta:hover { background: #33ecff; box-shadow: 0 6px 32px rgba(0,229,255,0.5); }
#scroll-top {
  position: fixed;
  bottom: 148px; right: 24px;
  z-index: 200;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.25);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scroll-top:hover { background: rgba(0,229,255,0.2); }

/* =============================================
   COOKIE BAR
   ============================================= */
#cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(13,22,40,0.97);
  border-top: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
#cookie-bar.shown { transform: translateY(0); }
#cookie-bar p { font-size: 13px; color: #94a3b8; margin: 0; line-height: 1.5; }
#cookie-bar a { color: var(--accent); }
#cookie-ok {
  padding: 7px 18px;
  min-height: 34px;
  border-radius: 6px;
  background: rgba(0,229,255,0.12);
  border: 1px solid rgba(0,229,255,0.25);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
#cookie-ok:hover { background: rgba(0,229,255,0.2); }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
#cookie-no {
  padding: 7px 18px;
  min-height: 34px;
  border-radius: 6px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: #64748b;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
#cookie-no:hover { background: rgba(255,255,255,0.05); color: #94a3b8; }

/* =============================================
   PORTFOLIO CARDS
   ============================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
}
.portfolio-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,229,255,0.15);
}
.mockup-browser {
  height: 240px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mockup-bar {
  height: 34px;
  background: #1e2235;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 8px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dots { display: flex; gap: 5px; flex-shrink: 0; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }
.mockup-url {
  flex: 1;
  height: 18px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  font-family: Inter, sans-serif;
  overflow: hidden;
  white-space: nowrap;
}
.mockup-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.mockup-viewport iframe {
  width: 1280px;
  height: 700px;
  border: none;
  transform: scale(0.3);
  transform-origin: top left;
  pointer-events: none;
}
.portfolio-info { padding: 24px; }
.portfolio-trade {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.portfolio-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.2);
  padding: 3px 10px;
  border-radius: 100px;
}
.portfolio-style { font-size: 12px; color: var(--text-dim); }
.portfolio-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 16px;
}
.portfolio-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.portfolio-link:hover { gap: 10px; }

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 18px);
  right: calc(16.67% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.3;
  z-index: 0;
}
.process-step { padding: 0 24px; text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg-alt);
  margin: 0 auto 24px;
  box-shadow: 0 0 0 4px rgba(0,229,255,0.08), 0 0 24px rgba(0,229,255,0.2), inset 0 0 16px rgba(0,229,255,0.05);
  transition: box-shadow var(--transition), transform var(--transition);
}
.process-step:hover .process-num {
  box-shadow: 0 0 0 6px rgba(0,229,255,0.12), 0 0 40px rgba(0,229,255,0.35), inset 0 0 20px rgba(0,229,255,0.1);
  transform: scale(1.05);
}
.process-step h3 { font-family: var(--font-head); font-size: 17px; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.process-step p { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root { --section-v: 80px; }
  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .nav-links { gap: 24px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-container { grid-template-columns: repeat(2, 1fr); }
  .pricing-card:nth-child(2) { border-right: none; }
  .pricing-card:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .pricing-card:nth-child(4) { border-top: 1px solid var(--border); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-v: 64px; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 130px 0 60px; }
  .cards-grid,
  .cards-grid-2 { grid-template-columns: 1fr; }
  .pricing-container { grid-template-columns: 1fr; }
  .pricing-card { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-card:last-child { border-bottom: none; }
  .pricing-card:nth-child(3) { border-right: none; }
  .process-steps { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .audit-form { padding: 28px 24px; }
  .content-inner { padding: 0; }
}
@media (max-width: 480px) {
  #float-cta { font-size: 13px; padding: 11px 16px; right: 16px; bottom: 80px; }
  #scroll-top { right: 16px; bottom: 136px; }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  #page-loader,nav,.orb,.cursor-glow,body::before,
  #float-cta,#scroll-top,#cookie-bar,.mobile-menu { display: none !important; }
  body { background: #fff !important; color: #000 !important; font-size: 12pt; }
  h1,h2,h3,h4 { color: #000 !important; font-family: Georgia, serif; }
  .gradient-text { -webkit-text-fill-color: #000 !important; background: none !important; color: #000 !important; }
  section { page-break-inside: avoid; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 10pt; color: #666; }
  a[href^="#"]::after, a[href^="mailto"]::after { content: none; }
}

/* =============================================
   PORTFOLIO CARDS
   ============================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.portfolio-card:hover {
  border-color: rgba(0,229,255,0.3);
  transform: translateY(-4px);
}
.portfolio-card-preview {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-deep, #050a14);
}
.portfolio-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(0,229,255,0.12);
  border: 1px solid rgba(0,229,255,0.25);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-head);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.portfolio-mock {
  width: 100%;
  height: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.portfolio-mock-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 8px 12px;
  flex-shrink: 0;
}
.portfolio-mock-bar span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.portfolio-mock-hero {
  flex: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 20px;
}
.portfolio-mock-text { width: 100%; }
.mock-line {
  height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  margin-bottom: 8px;
}
.mock-line-lg { height: 14px; margin-bottom: 12px; }
.mock-btn {
  width: 80px;
  height: 28px;
  background: var(--accent);
  border-radius: 6px;
  margin-top: 8px;
}
.portfolio-card-body { padding: 24px; }
.portfolio-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.portfolio-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.portfolio-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* Portfolio iframe browser mockup */
.portfolio-iframe-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #1a2540;
}
.portfolio-iframe-chrome {
  height: 28px;
  background: #1a2540;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.portfolio-iframe-dots {
  display: flex;
  gap: 5px;
}
.portfolio-iframe-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.portfolio-iframe-dots span:nth-child(1) { background: #ff5f57; }
.portfolio-iframe-dots span:nth-child(2) { background: #febc2e; }
.portfolio-iframe-dots span:nth-child(3) { background: #28c840; }
.portfolio-iframe-url {
  flex: 1;
  height: 16px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  padding: 0 8px;
  overflow: hidden;
  white-space: nowrap;
}
.portfolio-iframe-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: #fff;
}
.portfolio-iframe-viewport iframe {
  width: 1280px;
  height: 900px;
  border: none;
  transform: scale(0.29);
  transform-origin: top left;
  pointer-events: none;
}

/* =============================================
   SERVICE BLOCKS (websites-for-tradespeople)
   ============================================= */
.service-blocks { display: flex; flex-direction: column; gap: 64px; }
.service-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
}
.service-block-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.service-block-icon {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.service-block h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.4rem;
}
.service-block-price { color: var(--accent); font-size: 0.95rem; margin: 0; }
.service-block-price strong { color: var(--accent-2); font-size: 1.1rem; }
.service-block p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.service-block ul { margin: 1rem 0 1.5rem; padding-left: 1.25rem; }
.service-block ul li { color: var(--text-muted); margin-bottom: 0.5rem; line-height: 1.65; }
.service-block-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
@media (max-width: 768px) {
  .service-block { padding: 28px 24px; }
  .service-block-header { flex-direction: column; gap: 1rem; }
}

/* Chip links */
.chip-link {
  display: inline-block;
  text-decoration: none;
  color: var(--accent);
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  transition: background var(--transition), color var(--transition);
}
.chip-link:hover {
  background: rgba(0,229,255,0.15);
  color: #fff;
}
.chips-center { justify-content: center; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap h2,
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail-item:first-of-type { border-top: 1px solid var(--border); }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-detail-item strong {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* =============================================
   PAGE HERO — LARGE VARIANT
   ============================================= */
.page-hero-lg {
  padding: 160px 0 80px;
}
.page-hero-lg h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2rem;
}
.hero-trust span {
  font-size: 0.85rem;
  color: var(--accent-2);
  font-weight: 500;
}
@media (max-width: 768px) {
  .page-hero-lg { padding: 130px 0 60px; }
  .hero-trust { gap: 0.75rem 1.5rem; }
}

/* =============================================
   SECTION SUBHEADING
   ============================================= */
.section-subheading {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}

/* NoScript fallback */

/* =============================================
   BLOG — INDEX CARDS
   ============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s;
  color: inherit;
}
.blog-card:hover { border-color: rgba(0,229,255,0.4); transform: translateY(-3px); }
.blog-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.blog-card h3 {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}
.blog-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: flex;
  gap: 1rem;
}
.blog-card-arrow { color: var(--accent); font-size: 0.85rem; font-weight: 600; margin-top: auto; }

/* =============================================
   BLOG — POST PAGE
   ============================================= */
.blog-post-section { padding: 4rem 0 6rem; }
.blog-post-header { padding: 5rem 0 2.5rem; }
.blog-breadcrumb {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-breadcrumb a { color: var(--text-dim); text-decoration: none; }
.blog-breadcrumb a:hover { color: var(--accent); }
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.blog-post-cat {
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.2);
  color: var(--accent);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-post-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0;
}

/* Prose / article body */
.prose {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text-body);
}
.prose p { margin-bottom: 1.25rem; }
.prose h2 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.75rem 0 1rem;
  line-height: 1.3;
}
.prose h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 2rem 0 0.6rem;
}
.prose ul, .prose ol { margin: 1rem 0 1.5rem; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.6rem; line-height: 1.75; }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { opacity: 0.8; }
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(0,229,255,0.05);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-muted);
}
.prose .callout {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.prose .callout strong { color: var(--amber); }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
@media (max-width: 640px) {
  .prose { font-size: 1rem; }
  .prose h2 { font-size: 1.25rem; }
}

/* =============================================
   PHONE / TRUST — NAV
   ============================================= */
.nav-phone {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-phone:hover { color: var(--accent); }
@media (max-width: 768px) { .nav-phone { display: none; } }

.mobile-phone-cta {
  background: rgba(0,229,255,0.1) !important;
  border: 1px solid rgba(0,229,255,0.3) !important;
  border-radius: 10px !important;
  color: var(--accent) !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  text-align: center !important;
  margin: 0.5rem 0 0 !important;
  letter-spacing: 0.02em;
}

.footer-phone { margin: 0.35rem 0 0; }
.footer-phone a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-phone a:hover { opacity: 0.8; }

/* =============================================
   GUARANTEE BADGE
   ============================================= */
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0,255,136,0.06);
  border: 1px solid rgba(0,255,136,0.25);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: var(--accent-2);
  font-weight: 600;
  margin-top: 1.5rem;
}
.guarantee-badge svg { flex-shrink: 0; }

/* =============================================
   EXIT-INTENT POPUP
   ============================================= */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,10,20,0.85);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.exit-overlay.visible { opacity: 1; pointer-events: auto; }
.exit-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.exit-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.25rem;
}
.exit-modal-close:hover { color: var(--text); }
.exit-modal h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.exit-modal p { font-size: 0.9375rem; color: var(--text-dim); margin-bottom: 1.5rem; line-height: 1.7; }
.exit-form { display: flex; flex-direction: column; gap: 0.75rem; }
.exit-form input {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.exit-form input:focus { border-color: var(--accent); }
.exit-form button {
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.exit-form button:hover { opacity: 0.9; }
.exit-modal-note { font-size: 0.78rem !important; color: var(--text-dim) !important; text-align: center; margin: 0.5rem 0 0 !important; }

/* ================================================
   BREADCRUMB NAV
   ================================================ */
.page-breadcrumb {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}
.breadcrumb-ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-dim);
}
.breadcrumb-ol a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb-ol a:hover { color: var(--accent); }
.breadcrumb-ol [aria-current="page"] { color: var(--text); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); user-select: none; }

/* ================================================
   STICKY MOBILE CTA BAR
   ================================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0.625rem 1rem;
  gap: 0.625rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 68px; }
}
.mobile-bottom-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 0.5rem;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  min-height: 44px;
  transition: opacity .2s;
}
.mobile-bottom-bar a:active { opacity: 0.8; }
.bar-call {
  background: rgba(0,229,255,0.1);
  border: 1px solid rgba(0,229,255,0.25);
  color: var(--accent);
}
.bar-sms {
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.25);
  color: var(--accent-2);
}
.bar-audit {
  background: var(--accent);
  color: var(--bg);
}
