/* ============================================
   SMART GEEKS — Global Styles
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400&display=swap');

/* CSS Variables — Brand Colors */
:root {
  --bg-dark: #0b1d31;
  --bg-mid: #0f2640;
  --bg-surface: #143356;
  --accent-blue: #007dfe;
  --accent-light: #4da6ff;
  --accent-purple: #7c3aed;
  --accent-cyan: #22d3ee;
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --glass-border-hover: rgba(255,255,255,0.22);
  --card-bg: rgba(255,255,255,0.05);
  --success: #10B981;
  --error: #EF4444;
  --gradient-hero: linear-gradient(135deg, #0b1d31 0%, #0f2640 50%, #0b1d31 100%);
  --gradient-accent: linear-gradient(135deg, #007dfe 0%, #00a8ff 100%);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-width: 1200px;
  --section-pad: 96px 24px;
  --card-radius: 16px;
  --btn-radius: 8px;
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.35);
  --bg-secondary: #0f2640;
  --brand-blue: #007dfe;
  --accent: var(--accent-blue);
}

/* Light Theme Variables */
[data-theme="light"] {
  --bg-dark: #f0f4f8;
  --bg-mid: #ffffff;
  --bg-surface: #e2e8f0;
  --accent-blue: #007dfe;
  --accent-light: #4da6ff;
  --accent-purple: #7c3aed;
  --accent-cyan: #0ea5e9;
  --text-primary: #0f2640;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --glass-bg: rgba(15, 38, 64, 0.07);
  --glass-border: rgba(15, 38, 64, 0.14);
  --glass-border-hover: rgba(15, 38, 64, 0.25);
  --card-bg: rgba(15, 38, 64, 0.05);
  --success: #059669;
  --error: #dc2626;
  --gradient-hero: linear-gradient(160deg, #e2e8f0 0%, #c7d2e8 40%, #dde5f0 70%, #e2e8f0 100%);
  --gradient-accent: linear-gradient(135deg, #007dfe 0%, #0095e8 100%);
  --bg-secondary: #ffffff;
  --brand-blue: #007dfe;
  --shadow-lg: 0 8px 32px rgba(15, 38, 64, 0.12);
  --nav-bg: rgba(240, 244, 248, 0.92);
  --hero-grid-color: rgba(0, 125, 254, 0.06);
  --hero-glow-color: rgba(0, 125, 254, 0.08);
  --hero-overlay: linear-gradient(135deg, rgba(240,244,248,0.90) 0%, rgba(240,244,248,0.75) 50%, rgba(240,244,248,0.60) 100%);
}

/* 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-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--accent-blue); border-radius: 3px; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-secondary); line-height: 1.75; }
a { color: var(--accent-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text-primary); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Utility */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad); }
.section--dark { background: var(--bg-mid); }
.section--surface { background: var(--bg-surface); }

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-cyan { color: var(--accent-blue); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.font-mono { font-family: var(--font-mono); }

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: var(--nav-bg, rgba(11, 23, 52, 0.92));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  height: 72px;
  display: flex;
  align-items: center;
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__logo span { color: var(--accent-blue); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav__links a:hover, .nav__links a.active {
  color: var(--text-primary);
  background: var(--glass-bg);
}
[data-theme="light"] .nav__links a:hover,
[data-theme="light"] .nav__links a.active {
  background: rgba(15, 38, 64, 0.08);
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__phone {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-blue);
  white-space: nowrap;
}

/* Theme toggle */
.theme-toggle {
  background: none;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.theme-toggle:hover {
  background: var(--glass-bg);
  border-color: var(--glass-border-hover);
}
.theme-toggle--mobile {
  display: none;
}
@media (max-width: 768px) {
  .theme-toggle--desktop {
    display: none;
  }
  .theme-toggle--mobile {
    display: inline-flex;
    gap: 8px;
    font-size: 0.95rem;
    padding: 8px 14px;
    width: fit-content;
  }
  .theme-toggle--mobile span {
    font-family: var(--font-body);
    font-size: 0.95rem;
  }
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.2rem;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--accent-blue);
  color: var(--bg-dark);
}
.btn--primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 28px rgba(0,125,254,0.45);
  color: var(--bg-dark);
}
.btn--ghost {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}
.btn--secondary {
  background: var(--accent-blue);
  color: #fff;
}
.btn--secondary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(0,125,254,0.4);
  color: #fff;
  background: #006bdb;
}
.btn--ghost:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(0,125,254,0.06);
}
.btn--large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ===== Core Values Cards ===== */
.value-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
  display: flex;
  justify-content: center;
}
.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===== Services Explained (About-Us) ===== */
.services-explained {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
.service-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.service-row:last-child { border-bottom: none; }
.service-row__icon {
  width: 64px;
  height: 64px;
  background: rgba(0,125,254,0.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent);
  flex-shrink: 0;
}
.service-row__icon i { color: var(--accent); }
.service-row__content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.service-row__content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.btn--small {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* ============================================
   GLASSMORPHISM CARD
   ============================================ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  transition: all 0.3s ease;
}
.glass-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,125,254,0.08);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hero-grid-color, rgba(0,125,254,0.04)) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid-color, rgba(0,125,254,0.04)) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.hero__glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--hero-glow-color, rgba(0,125,254,0.12)) 0%, transparent 70%);
  z-index: 1;
}
.hero__glow--purple {
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--hero-glow-color, rgba(0,125,254,0.08)) 0%, transparent 70%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  text-align: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0,125,254,0.1);
  border: 1px solid rgba(0,125,254,0.25);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent-blue);
  font-weight: 500;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}
.hero__badge i { font-size: 0.9rem; }
.hero h1 {
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}
.hero__trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.hero__trust-item i { color: var(--accent-blue); font-size: 1.1rem; }
.hero__trust-item strong { color: var(--text-primary); }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--bg-mid);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 24px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.trust-bar__item i { font-size: 1.3rem; color: var(--accent-blue); }
.trust-bar__item strong { color: var(--text-primary); font-weight: 600; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--brand-blue) 0%, #004a7a 100%);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 100, 180, 0.25);
}
.cta-box h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  font-weight: 700;
}
.cta-box p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-box__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-box .btn--outline-light {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.cta-box .btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  padding: 32px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,125,254,0.1);
  border: 1px solid rgba(0,125,254,0.2);
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: var(--accent-blue);
  transition: all 0.3s;
}
.service-card:hover .service-card__icon {
  background: rgba(0,125,254,0.18);
  border-color: rgba(0,125,254,0.4);
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.service-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card:hover .service-card__link { gap: 10px; }

/* Service card images - full width banner */
.service-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin-bottom: 0;
  display: block;
}
.service-card__img + * { margin-top: 0; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}
.why-grid--2col {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-grid--2col .why-grid__left h2 { margin-bottom: 20px; }
.why-grid--2col .why-grid__left p { font-size: 1.05rem; margin-bottom: 32px; }
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all 0.2s;
}
.why-list__item:hover {
  border-color: rgba(0,125,254,0.3);
  background: rgba(0,125,254,0.04);
}
.why-list__item i { font-size: 1.3rem; color: var(--accent-blue); flex-shrink: 0; }
.why-list__item span { font-weight: 500; font-size: 0.95rem; }

/* ============================================
   BIZ PHONE SYSTEM PAGE — Grid Layouts
   ============================================ */
.biz-why-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
}

.biz-built-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
}

.biz-steps-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
}

.why-card {
  padding: 28px 24px;
  text-align: center;
}
.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0,125,254,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--accent-blue);
}
.why-card__icon i { font-size: 1.5rem; }
.why-card h3 { font-size: 1rem; margin-bottom: 8px; }
.why-card p { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* ============================================
   PROCESS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  padding: 36px 28px;
  text-align: center;
  position: relative;
}
.process-step__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(0,125,254,0.15);
  line-height: 1;
  margin-bottom: 8px;
}
.process-step__icon {
  font-size: 2rem;
  color: var(--accent-blue);
  margin-bottom: 16px;
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  padding: 32px;
}
.testimonial-card__stars {
  color: #FBBF24;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,125,254,0.15);
  border: 1px solid rgba(0,125,254,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-blue);
}
.testimonial-card__name { font-weight: 600; font-size: 0.95rem; }
.testimonial-card__location { font-size: 0.82rem; color: var(--text-muted); }

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.area-chip {
  padding: 18px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.area-chip:hover {
  border-color: rgba(0,125,254,0.4);
  color: var(--accent-blue);
  background: rgba(0,125,254,0.06);
}

/* ============================================
   OFFERS / SPECIALS
   ============================================ */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.offers-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.offers-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   OFFER ICONS (used on Business pages)
   ============================================ */
.offer-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,125,254,0.1);
  border: 1px solid rgba(0,125,254,0.2);
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--accent-blue);
  transition: all 0.3s;
}

.glass-card:hover .offer-icon {
  background: rgba(0,125,254,0.18);
  border-color: rgba(0,125,254,0.4);
  transform: scale(1.05);
}



/* ============================================
   PRICING SECTION (two-column layout)
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-category-nav__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s;
}

.pricing-category-nav__item.active,
.pricing-category-nav__item:hover {
  background: rgba(0,125,254,0.15);
  color: var(--accent-blue);
}

.pricing-category {
  margin-bottom: 48px;
}

.pricing-category h3 {
  margin-bottom: 20px;
}

.pricing-card {
  padding: 0;
  overflow: hidden;
}

.pricing-card__header {
  padding: 24px 24px 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pricing-card__title {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.pricing-card__model {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
}

.pricing-card__price-row {
  padding: 12px 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(0,125,254,0.06);
}

.pricing-card__from {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card__price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-blue);
}

.pricing-card__note {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.pricing-card__features {
  list-style: none;
  padding: 16px 24px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pricing-card__features li {
  font-size: 0.84rem;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}

.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: 700;
}

.pricing-card .btn {
  display: block;
  width: calc(100% - 48px);
  text-align: center;
  box-sizing: border-box;
  margin: 16px 24px 24px;
}

.pricing-card--wide {
  grid-column: 1 / -1;
}

.pricing-card--wide .pricing-card__header {
  flex-wrap: wrap;
}

.pricing-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,125,254,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.pricing-card__icon--warning {
  background: rgba(255, 165, 0, 0.15);
}

.pricing-card__badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffa500;
  background: rgba(255,165,0,0.12);
  border: 1px solid rgba(255,165,0,0.3);
  border-radius: 6px;
  padding: 3px 8px;
  margin-top: 4px;
}

.pricing-card__description {
  padding: 0 24px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}



/* Business Dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-mid);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 8px;
  flex-direction: column;
  gap: 2px;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.nav__dropdown:hover .nav__dropdown-menu {
  display: flex;
}
.nav__dropdown-menu a {
  display: block;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.88rem;
  background: transparent;
}
.nav__dropdown-menu a:hover {
  background: rgba(0,125,254,0.15);
}
.nav__dropdown-menu a.highlight-link {
  color: var(--accent-cyan);
  font-weight: 600;
}


/* ===== ESTIMATE BANNER ===== */
.estimate-banner {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 32px 0;
}
.estimate-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.estimate-banner__text h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.estimate-banner__text p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  max-width: 480px;
  margin: 0;
}
.estimate-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== ESTIMATE TOOL ===== */
.estimate-tool {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}
.estimate-tool__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 24px;
  border-bottom: 1px solid var(--glass-border);
}
.estimate-tool__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.estimate-tool__step.active { opacity: 1; }
.estimate-tool__step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.estimate-tool__step.active .estimate-tool__step-num {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #fff;
}
.estimate-tool__step-label {
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}
.estimate-tool__connector {
  width: 60px;
  height: 2px;
  background: var(--glass-border);
  margin: 0 8px;
  margin-bottom: 24px;
}

/* Steps */
.estimate-step { display: none; padding: 32px 24px; }
.estimate-step.active { display: block; }
.estimate-step__prompt {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.estimate-device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.estimate-device-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.estimate-device-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}
.estimate-device-btn.selected {
  background: rgba(0,125,254,0.12);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}
.estimate-issue-list { margin-bottom: 16px; }
.estimate-issue-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-secondary);
  font-size: 0.92rem;
  width: 100%;
  text-align: left;
}
.estimate-issue-item:hover { border-color: var(--accent-blue); color: var(--text-primary); }
.estimate-issue-item.selected {
  background: rgba(0,125,254,0.12);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}
.estimate-nav { display: flex; justify-content: center; margin-top: 24px; }

/* Result */
.estimate-result {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: rgba(0,125,254,0.08);
  border-radius: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.estimate-result__icon { font-size: 2.5rem; flex-shrink: 0; }
.estimate-result__label { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 4px; }
.estimate-result__price { font-size: 2rem; font-weight: 700; color: var(--accent-blue); }
.estimate-result__note { font-size: 0.85rem; color: var(--text-secondary); }
.estimate-result__disclaimer {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
  padding: 0 16px;
  margin-bottom: 20px;
}
.estimate-result__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

/* ===== PRICING CARD BUTTON ===== */
.pricing-card__btn {
  display: block;
  width: 100%;
  text-align: center;
  justify-content: center;
  margin: 0 24px 24px;
}

/* ===== PRICING PROMISE ===== */
.pricing-promise {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.pricing-promise__icon { font-size: 2.5rem; flex-shrink: 0; margin-top: 4px; }
.pricing-promise__content h2 { margin-bottom: 8px; }
.pricing-promise__content p { color: var(--text-secondary); max-width: 600px; }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.promise-card { padding: 24px; }
.promise-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.promise-card h3 { font-size: 1rem; margin-bottom: 8px; }
.promise-card p { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }

/* ===== PRICING FAQ ===== */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  padding: 20px 24px;
  margin-bottom: 12px;
}
.faq-item__q h4 { font-size: 0.98rem; margin-bottom: 8px; }
.faq-item__a { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }




  /* Hero buttons: center on mobile */
  .hero__actions {
    justify-content: center !important;
  }
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card__features { grid-template-columns: 1fr; }
  .pricing-category-nav { gap: 8px; }

  /* Blog: single column on mobile */
  .blog-grid,
  .blog-featured {
    grid-template-columns: 1fr !important;
  }
}
.offer-card {
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.offer-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 12px;
}
.offer-card h3 { margin-bottom: 12px; }
.offer-card p { margin-bottom: 24px; font-size: 0.92rem; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-card {
  padding: 64px 48px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-card h2 { margin-bottom: 16px; }
.cta-card p { max-width: 480px; margin: 0 auto 36px; }
.cta-card .hero__actions { justify-content: center; }

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-blue);
  background: rgba(0,125,254,0.04);
}
.form-select {
  appearance: none;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hero-grid-color, rgba(0,125,254,0.03)) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid-color, rgba(0,125,254,0.03)) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 100%;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 560px; margin: 0 auto; font-size: 1.1rem; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--glass-border);
}
.faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent-blue); }
.faq-question i { color: var(--accent-blue); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { padding-bottom: 22px; font-size: 0.95rem; }
.faq-category-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 32px 0 12px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 4px;
}
.faq-category-title:first-child { padding-top: 0; }
.faq-categories { margin-bottom: 48px; }
.faq-cat-chip {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: all 0.2s;
  cursor: pointer;
}
.faq-cat-chip:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(0,125,254,0.06);
}

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-table-wrap { overflow-x: auto; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.95rem;
}
.pricing-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.pricing-table td:first-child { font-weight: 500; color: var(--text-primary); }
.pricing-table .price {
  font-family: var(--font-mono);
  color: var(--accent-blue);
  font-weight: 600;
}
.pricing-table tr:hover td { background: rgba(0,125,254,0.03); }

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card__image {
  height: 200px;
  background: var(--bg-mid);
  border-radius: var(--card-radius) var(--card-radius) 0 0;
  overflow: hidden;
  position: relative;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__body { padding: 24px; }
.blog-card__tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-blue);
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--text-primary); }
.blog-card h3 a:hover { color: var(--accent-blue); }
.blog-card p { font-size: 0.88rem; margin-bottom: 16px; }
.blog-card__meta { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-card {
  padding: 36px;
}
.contact-info-card h3 { margin-bottom: 24px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-item i {
  font-size: 1.3rem;
  color: var(--accent-blue);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 0.9rem; margin-bottom: 4px; }
.contact-info-item span, .contact-info-item a { font-size: 0.9rem; color: var(--text-secondary); }

/* ============================================
   MAP IFRAME
   ============================================ */
.map-embed {
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-top: 32px;
}
.map-embed iframe { width: 100%; height: 280px; border: none; display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--glass-border);
  padding: 64px 24px 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p {
  font-size: 0.88rem;
  margin-top: 16px;
  max-width: 260px;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
}
.footer__social a:hover {
  background: var(--accent-blue);
  color: #fff;
  border-color: var(--accent-blue);
}
.footer__col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.footer__col ul a:hover { color: var(--accent-blue); }
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer__links { display: flex; gap: 24px; }
.footer__links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer__links a:hover { color: var(--accent-blue); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
  .why-grid--2col { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--mobile-nav-bg, rgba(11,23,52,0.98));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 24px 24px;
    gap: 4px;
    z-index: 999;
  }
  .nav__links.open a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .nav__links.open .theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 10px 16px;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 8px;
    width: fit-content;
  }
  .nav__links.open .theme-toggle:hover {
    background: var(--glass-border-hover);
  }
  [data-theme="light"] .nav__links.open {
    background: var(--mobile-nav-bg, rgba(240, 244, 248, 0.97));
    --mobile-nav-bg: rgba(240, 244, 248, 0.97);
  }
  .nav__cta { display: none; }
  .nav__actions { display: flex; }
  .nav__toggle { display: flex; }

  /* Mobile theme toggle — shown beside hamburger */
  .theme-toggle--mobile {
    display: inline-flex;
    background: none;
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    padding: 8px 10px;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.1rem;
  }
  .theme-toggle--mobile span { display: none; }

  .hero { min-height: auto; padding: 140px 20px 80px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__trust { gap: 16px; }

  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .offers-grid { grid-template-columns: 1fr; }
  .offers-grid--2col { grid-template-columns: 1fr; }
  .offers-grid--3col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 24px; }
  .section-header { margin-bottom: 40px; }
  .btn--secondary { display: none; }

  /* Grid mobile breakpoints */
  .biz-why-grid,
  .biz-built-grid,
  .biz-steps-grid,
  .blog-grid,
  .areas-grid,
  .estimate-device-grid,
  .promise-grid,
  .services-grid,
  .testimonials-grid,
  .why-grid,
  .process-steps,
  .offers-grid--2col,
  .offers-grid--3col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cta-card { padding: 40px 24px; }
}

/* ============================================
   MOBILE NAV OPEN STATE
   ============================================ */
.nav__links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--mobile-nav-bg, rgba(11,23,52,0.97));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 24px 24px;
  gap: 4px;
  z-index: 999;
}
.nav__links.open a {
  padding: 12px 16px;
  border-radius: 8px;
}
.nav__links.open a:hover { background: var(--glass-bg); }

/* ============================================
   BADGE / CHIP UTILITIES
   ============================================ */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge--cyan {
  background: rgba(0,125,254,0.12);
  color: var(--accent-blue);
  border: 1px solid rgba(0,125,254,0.25);
}
.badge--success {
  background: rgba(16,185,129,0.12);
  color: var(--success);
  border: 1px solid rgba(16,185,129,0.25);
}

/* ============================================
   DIVIDER
   ============================================ */
.divider {
  height: 1px;
  background: var(--glass-border);
  margin: 0;
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.service-detail-sidebar { position: sticky; top: 96px; }
.service-detail-card {
  padding: 32px;
}
.sidebar-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.sidebar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.sidebar-list li i { color: var(--accent-blue); font-size: 0.85rem; }

@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-sidebar { position: static; }
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */
.testimonial-full {
  padding: 32px;
  margin-bottom: 24px;
}
.testimonial-full__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.testimonial-full__stars { color: #FBBF24; font-size: 1rem; letter-spacing: 2px; }
.testimonial-full__date { font-size: 0.8rem; color: var(--text-muted); }
.testimonial-full__text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.75;
}
.testimonial-full__author { font-weight: 600; }
.testimonial-full__location { color: var(--text-muted); font-size: 0.88rem; }

/* ============================================
   PRICING PAGE CARDS
   ============================================ */
.pricing-category { margin-bottom: 48px; }
.pricing-category h3 {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}

/* ============================================
   PRICING PAGE
   ============================================ */
.page-pricing { background: var(--bg-dark); }

.pricing-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 80px;
}
.pricing-hero__bg {
  position: absolute; inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}
.pricing-hero__grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,125,254,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,125,254,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.pricing-hero__glow {
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,125,254,0.15) 0%, transparent 70%);
  z-index: 1;
}
.pricing-hero__glow--purple {
  position: absolute;
  bottom: -150px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  z-index: 1;
}
.pricing-hero .container { position: relative; z-index: 2; }
.pricing-hero__content { max-width: 680px; }
.pricing-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,125,254,0.12);
  border: 1px solid rgba(0,125,254,0.25);
  color: var(--accent-blue);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.pricing-hero__sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 20px 0 28px;
  line-height: 1.7;
}
.pricing-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.pricing-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}
.pricing-hero__trust-item i { color: var(--success); font-size: 1.1rem; }
.pricing-hero__trust-item strong { color: var(--text-primary); }

@media (max-width: 768px) {
  .pricing-hero { min-height: auto; padding: 140px 0 60px; }
  .pricing-hero__trust { flex-direction: column; gap: 12px; }
}

/* Pricing hero with background image */
.pricing-hero.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pricing-hero.has-bg-image .pricing-hero__overlay {
  background: linear-gradient(135deg, rgba(11,29,49,0.92) 0%, rgba(11,29,49,0.7) 50%, rgba(11,29,49,0.55) 100%);
}
.pricing-hero.has-bg-image .pricing-hero__bg { display: none; }
.pricing-hero.has-bg-image .pricing-hero__grid-overlay { display: none; }

/* ============================================
   BOOKING PAGE
   ============================================ */
/* Legal Pages */
.page-terms, .page-privacy { background: var(--bg-dark); }

.page-booking { background: var(--bg-dark); }

/* Booking Hero */
.booking-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 80px;
}
.booking-hero__bg {
  position: absolute; inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}
.booking-hero__glow {
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,125,254,0.12) 0%, transparent 70%);
  z-index: 1;
}
.booking-hero__glow--purple {
  position: absolute;
  bottom: -100px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
  z-index: 1;
}
.booking-hero__content { position: relative; z-index: 2; max-width: 720px; }
.booking-hero__content h1 { margin-bottom: 16px; }
.booking-hero__content .hero__sub { font-size: 1.1rem; max-width: 560px; margin-bottom: 24px; }
.booking-hero .hero__trust { gap: 20px; }

/* Booking hero with background image */
.booking-hero.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.booking-hero.has-bg-image .booking-hero__overlay {
  background: linear-gradient(135deg, rgba(11,29,49,0.92) 0%, rgba(11,29,49,0.7) 50%, rgba(11,29,49,0.55) 100%);
}
.booking-hero.has-bg-image .booking-hero__bg { display: none; }
.booking-hero.has-bg-image .booking-hero__grid-overlay { display: none; }

/* Booking Section Layout */
.booking-section { padding: 80px 0; }
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}
.booking-form-card { padding: 40px; }
.booking-sidebar { display: flex; flex-direction: column; gap: 20px; }

/* Form Styles */
.booking-form { display: flex; flex-direction: column; gap: 40px; }

.form-fieldset {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}
.form-legend {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: var(--bg-dark);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.required { color: var(--accent-blue); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--btn-radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option { background: var(--bg-mid); color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0,125,254,0.12);
}
.input--error {
  border-color: var(--error) !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.12) !important;
}
.form-error {
  font-size: 0.8rem;
  color: var(--error);
  display: none;
  align-items: center;
  gap: 4px;
}
.form-error:not(:empty) { display: flex; }

/* Form Toggle Buttons */
.form-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid rgba(0,125,254,0.25);
  background: transparent;
  color: var(--text-secondary);
  transition: all 0.25s;
}
.form-toggle-btn:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(0,125,254,0.05);
}
.form-toggle-btn.active {
  background: var(--accent-blue);
  color: #fff;
  border-color: var(--accent-blue);
}

/* Radio Cards */
.radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.radio-card { cursor: pointer; }
.radio-card input { display: none; }
.radio-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s;
}
.radio-card__inner i { font-size: 1.4rem; color: var(--text-muted); transition: color 0.2s; }
.radio-card__inner span { font-weight: 600; font-size: 0.88rem; }
.radio-card__inner small { font-size: 0.75rem; color: var(--text-muted); }
.radio-card input:checked + .radio-card__inner {
  border-color: var(--accent-blue);
  background: rgba(0,125,254,0.08);
  box-shadow: 0 0 16px rgba(0,125,254,0.15);
}
.radio-card input:checked + .radio-card__inner i { color: var(--accent-blue); }
.radio-card:hover .radio-card__inner { border-color: var(--glass-border-hover); }

/* Checkbox Cards */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkbox-card { cursor: pointer; }
.checkbox-card input { display: none; }
.checkbox-card__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: all 0.2s;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.checkbox-card__inner::before {
  content: '';
  width: 18px; height: 18px;
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
  transition: all 0.2s;
  background-image: none;
}
.checkbox-card input:checked + .checkbox-card__inner {
  border-color: var(--accent-blue);
  background: rgba(0,125,254,0.06);
  color: var(--text-primary);
}
.checkbox-card input:checked + .checkbox-card__inner::before {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='9' viewBox='0 0 12 9'%3E%3Cpath d='M1 4l3 3 7-7' stroke='%230B1734' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.checkbox-card--consent .checkbox-card__inner { align-items: flex-start; padding: 16px; border-radius: 12px; font-size: 0.88rem; line-height: 1.6; }
.checkbox-card--consent .checkbox-card__inner a { color: var(--accent-blue); }
.checkbox-card:hover .checkbox-card__inner { border-color: var(--glass-border-hover); }

/* Form Actions */
.form-consent { display: flex; flex-direction: column; gap: 8px; }
.form-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.form-submit { min-width: 240px; }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none !important; }
.btn--success { background: var(--success) !important; color: #fff !important; }
.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-note i { font-size: 0.9rem; }

/* Sidebar Cards */
.sidebar-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
}
.sidebar-card h3 i { color: var(--accent-blue); }
.sidebar-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sidebar-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 4px 0;
  border-bottom: 1px solid var(--glass-border);
}
.sidebar-hours li:last-child { border-bottom: none; }
.sidebar-hours li span:first-child { font-weight: 500; }
.sidebar-note { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.sidebar-address { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; }
.sidebar-guarantees { display: flex; flex-direction: column; gap: 8px; }
.sidebar-guarantees li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.sidebar-rating { text-align: center; padding: 16px 0; }
.sidebar-rating__stars { font-size: 1.2rem; color: #F59E0B; margin-bottom: 8px; letter-spacing: 2px; }
.sidebar-rating p { color: var(--text-primary); font-size: 0.95rem; }
.sidebar-card--trust { text-align: center; padding: 32px 24px; }

/* Booking Success */
.booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}
.booking-success__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.booking-success__icon i { font-size: 2.5rem; color: var(--success); }
.booking-success h2 { font-size: 1.8rem; }
.booking-success p { color: var(--text-secondary); max-width: 400px; }

/* Spinner animation */
@keyframes spin { to { transform: rotate(360deg); } }
.ph-spinner { animation: spin 1s linear infinite; }

/* Booking Responsive */
@media (max-width: 1024px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { flex-direction: row; flex-wrap: wrap; }
  .booking-sidebar .glass-card { flex: 1 1 280px; }
}
@media (max-width: 768px) {
  .booking-hero { min-height: auto; padding: 140px 0 60px; }
  .booking-form-card { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .radio-group { grid-template-columns: 1fr; }
  .booking-sidebar .glass-card { flex: 1 1 100%; }
}
@media (max-width: 480px) {
  .form-submit { width: 100%; justify-content: center; }
}


/* Footer column and brand — used across ALL pages */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Why-grid 2-column left column */
.why-grid__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Pricing card modifiers */
.pricing-card__popular {
  display: inline-block;
  background: var(--accent-blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.pricing-card__per-hr {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-left: 4px;
}
.pricing-card--featured {
  border: 2px solid var(--accent-blue);
  position: relative;
}
.pricing-card__icon--purple {
  background: rgba(128, 90, 213, 0.15);
}

/* 3-column inline grids — mobile breakpoint */
.testimonials-3col-grid,
.contact-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .testimonials-3col-grid,
  .contact-3col-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog featured grid — tablet breakpoint */
.blog-featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  overflow: hidden;
  min-height: 360px;
}
@media (max-width: 768px) {
  .blog-featured-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

/* Blog article narrower container */
.container--narrow {
  max-width: 720px;
  margin: 0 auto;
}
.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.article-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 12px;
  color: var(--text-primary);
}
.article-content p { margin-bottom: 16px; }

/* Legal page content */
.legal-content h2 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--text-primary); }
.legal-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.legal-content p:first-of-type { margin-top: 16px; }


/* Service page hero with background image */
.page-hero.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero.has-bg-image .page-hero__overlay {
  background: var(--hero-overlay, linear-gradient(
    135deg,
    rgba(11,29,49,0.92) 0%,
    rgba(11,29,49,0.75) 50%,
    rgba(11,29,49,0.6) 100%
  ));
}

/* ============================================
   INTERACTIVE MOBILE NAV (JS)
   ============================================ */

/* ============================================
   MODERN TECH BACKGROUND GRAPHICS
   Subtle, animated tech-inspired visuals
   ============================================ */

/* ── Hero background tech layer ── */
.hero__tech-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

/* Floating network nodes */
.hero__tech-layer::before,
.hero__tech-layer::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: floatNode 8s ease-in-out infinite;
}
.hero__tech-layer::before {
  top: 15%;
  right: 8%;
  width: 180px;
  height: 180px;
  border: 1.5px solid rgba(0,125,254,0.15);
  box-shadow:
    0 0 0 4px rgba(0,125,254,0.06),
    inset 0 0 20px rgba(0,125,254,0.05);
  animation-delay: 0s;
}
.hero__tech-layer::after {
  bottom: 18%;
  left: 5%;
  width: 120px;
  height: 120px;
  border: 1.5px solid rgba(0,125,254,0.12);
  box-shadow:
    0 0 0 4px rgba(0,125,254,0.04),
    inset 0 0 15px rgba(0,125,254,0.04);
  animation-delay: -4s;
}

@keyframes floatNode {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(1deg); }
  66%       { transform: translateY(6px) rotate(-1deg); }
}

/* Connecting lines between nodes (chevron shapes) */
.hero__circuit {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero__circuit-line {
  position: absolute;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,125,254,0.08) 30%,
    rgba(0,125,254,0.12) 50%,
    rgba(0,125,254,0.08) 70%,
    transparent 100%
  );
  height: 1px;
  animation: circuitPulse 6s ease-in-out infinite;
}
.hero__circuit-line:nth-child(1) {
  top: 30%; left: -10%; width: 40%;
  transform: rotate(-8deg);
  animation-delay: 0s;
}
.hero__circuit-line:nth-child(2) {
  top: 65%; right: -5%; width: 35%;
  transform: rotate(5deg);
  animation-delay: -2s;
}
.hero__circuit-line:nth-child(3) {
  bottom: 25%; left: 15%; width: 25%;
  transform: rotate(-3deg);
  animation-delay: -4s;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(124,58,237,0.07) 30%,
    rgba(124,58,237,0.1) 50%,
    rgba(124,58,237,0.07) 70%,
    transparent 100%
  );
}

@keyframes circuitPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* Floating data dots scattered on hero */
.hero__dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero__dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(0,125,254,0.25);
  animation: dotPulse 4s ease-in-out infinite;
}
.hero__dot:nth-child(1)  { top: 20%; left: 12%; animation-delay: 0s; }
.hero__dot:nth-child(2)  { top: 35%; right: 15%; animation-delay: -1s; width: 4px; height: 4px; }
.hero__dot:nth-child(3)  { top: 55%; left: 8%;  animation-delay: -2s; }
.hero__dot:nth-child(4)  { bottom: 30%; right: 22%; animation-delay: -0.5s; width: 5px; height: 5px; background: rgba(124,58,237,0.2); }
.hero__dot:nth-child(5)  { top: 15%; left: 45%; animation-delay: -3s; }
.hero__dot:nth-child(6)  { bottom: 40%; left: 30%; animation-delay: -1.5s; width: 2px; height: 2px; }
.hero__dot:nth-child(7)  { top: 70%; left: 55%; animation-delay: -2.5s; }
.hero__dot:nth-child(8)  { top: 45%; right: 8%; animation-delay: -3.5s; background: rgba(0,125,254,0.15); }

@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.9; transform: scale(1.4); }
}

/* ── Section background graphics ── */
.section__bg-graphic {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.section__bg-graphic::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(0,125,254,0.07);
  box-shadow:
    0 0 0 6px rgba(0,125,254,0.03),
    inset 0 0 30px rgba(0,125,254,0.03);
}
.section__bg-graphic::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.06);
  box-shadow:
    0 0 0 4px rgba(124,58,237,0.02),
    inset 0 0 20px rgba(124,58,237,0.03);
}

/* Section ring accent */
.section__ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,125,254,0.1);
  box-shadow: 0 0 0 3px rgba(0,125,254,0.04);
  pointer-events: none;
  z-index: 0;
  animation: ringSpin 20s linear infinite;
}
.section__ring--left {
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  animation-direction: normal;
}
.section__ring--right {
  bottom: 20%;
  right: -40px;
  transform: translateY(0);
  animation-direction: reverse;
  border-color: rgba(124,58,237,0.08);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.03);
  width: 60px;
  height: 60px;
}
@keyframes ringSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* Section dot grid pattern overlay */
.section__dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,125,254,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

/* ── dark section accent bar ── */
.section--dark .section__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,125,254,0.2) 30%,
    rgba(0,125,254,0.35) 50%,
    rgba(0,125,254,0.2) 70%,
    transparent 100%
  );
  z-index: 1;
}

/* Subtle corner bracket decorations on section headers */
.section-header--decorated {
  position: relative;
}
.section-header--decorated::before,
.section-header--decorated::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(0,125,254,0.2);
  border-style: solid;
  pointer-events: none;
}
.section-header--decorated::before {
  top: -8px;
  left: -12px;
  border-width: 2px 0 0 2px;
}
.section-header--decorated::after {
  bottom: -8px;
  right: -12px;
  border-width: 0 2px 2px 0;
}

/* ── CTA section background ── */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(0,125,254,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(124,58,237,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cta-section .container { position: relative; z-index: 1; }

/* ── Service card hover tech accent ── */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(0,125,254,0);
  transition: border-color 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.service-card:hover::before {
  border-color: rgba(0,125,254,0.25);
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), #7c3aed);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: 2px 2px 0 0;
  z-index: 1;
}
.service-card:hover::after { transform: scaleX(1); }

/* ── Footer tech accent ── */
.footer__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,125,254,0.3) 30%,
    rgba(0,125,254,0.5) 50%,
    rgba(0,125,254,0.3) 70%,
    transparent 100%
  );
  z-index: 1;
}
.footer::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,125,254,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.footer .container { position: relative; z-index: 1; }

/* ── Testimonial card tech border ── */
.testimonial-card {
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 40px;
  border-top: 2px solid rgba(0,125,254,0.2);
  border-left: 2px solid rgba(0,125,254,0.2);
  border-radius: 4px 0 0 0;
  pointer-events: none;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid rgba(0,125,254,0.2);
  border-right: 2px solid rgba(0,125,254,0.2);
  border-radius: 0 0 4px 0;
  pointer-events: none;
}

/* ── Pricing card top accent ── */
.pricing-card__top-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), #7c3aed, var(--accent-blue));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  border-radius: 4px 4px 0 0;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Trust bar subtle separator dots ── */
.trust-bar__inner {
  position: relative;
}
.trust-bar__inner::before,
.trust-bar__inner::after {
  content: '·';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0,125,254,0.3);
  font-size: 1.5rem;
  line-height: 1;
}
.trust-bar__inner::before { left: 25%; }
.trust-bar__inner::after  { right: 25%; }

/* ── Why list item tech indicator ── */
.why-list__item {
  position: relative;
  padding-left: 20px;
}
.why-list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 6px rgba(0,125,254,0.5);
  animation: dotGlow 2s ease-in-out infinite;
}
@keyframes dotGlow {
  0%, 100% { box-shadow: 0 0 4px rgba(0,125,254,0.4); }
  50%       { box-shadow: 0 0 10px rgba(0,125,254,0.8), 0 0 20px rgba(0,125,254,0.3); }
}

/* ── Biz page hero accent ── */
.biz-hero-accent {
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    rgba(0,125,254,0) 0%,
    rgba(0,125,254,0.5) 20%,
    rgba(124,58,237,0.5) 80%,
    rgba(0,125,254,0) 100%
  );
  z-index: 2;
}

/* ── Areas section tech map dots ── */
.areas-grid {
  position: relative;
}
.areas-grid::before {
  content: '';
  position: absolute;
  inset: -20px;
  background-image:
    radial-gradient(circle, rgba(0,125,254,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  border-radius: 8px;
}

/* ── Glass card inner glow on hover ── */
.glass-card:hover {
  box-shadow:
    0 8px 32px rgba(0,0,0,0.12),
    0 0 0 1px rgba(0,125,254,0.15),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ── Animated gradient orb for dark sections ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: orbDrift 12s ease-in-out infinite alternate;
}
.orb--blue {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,125,254,0.08) 0%, transparent 70%);
  top: 10%; right: 5%;
}
.orb--purple {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
  bottom: 15%; left: 3%;
  animation-delay: -6s;
}
@keyframes orbDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(20px, -30px) scale(1.1); }
}

/* ── Page hero tech layer ── */
.page-hero__tech-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.page-hero__tech-layer::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,125,254,0.12);
  box-shadow: 0 0 0 4px rgba(0,125,254,0.04), inset 0 0 20px rgba(0,125,254,0.04);
  animation: floatNode 8s ease-in-out infinite;
}
.page-hero__tech-layer::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 8%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,125,254,0.1);
  box-shadow: 0 0 0 4px rgba(0,125,254,0.03);
  animation: floatNode 8s ease-in-out infinite reverse;
  animation-delay: -3s;
}

/* ── Booking hero tech layer ── */
.booking-hero__tech-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.booking-hero__tech-layer::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 8%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,125,254,0.13);
  box-shadow: 0 0 0 4px rgba(0,125,254,0.05), inset 0 0 20px rgba(0,125,254,0.04);
  animation: floatNode 8s ease-in-out infinite;
  animation-delay: -2s;
}
.booking-hero__tech-layer::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(124,58,237,0.1);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.03);
  animation: floatNode 8s ease-in-out infinite;
  animation-delay: -5s;
}

/* Subtle scan line effect on hero (very faint) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.015) 2px,
    rgba(0,0,0,0.015) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}

@media (max-width: 768px) {
  .whatsapp-float {
    display: none !important;
  }
}

/* ===== STICKY MOBILE BOOK CTA ===== */

/* WhatsApp button in desktop header nav */
.nav__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.nav__whatsapp:hover {
  background: #20bd5a;
  transform: scale(1.05);
}
.nav__whatsapp svg {
  display: block;
}
@media (max-width: 768px) {
  .nav__whatsapp {
    display: none !important;
  }
}
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #007dfe 0%, #0058cc 100%);
  padding: 12px 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  text-align: center;
}
.sticky-mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFCD4C;
  color: #0b1d31 !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.sticky-mobile-cta a:hover { transform: scale(1.02); }
@media (min-width: 769px) { .sticky-mobile-cta { display: none !important; } }
@media (max-width: 768px) { .sticky-mobile-cta { display: block; } body { padding-bottom: 72px; } }

/* Light mode mobile nav link colors */



[data-theme="light"] .nav__links.open .nav__dropdown-menu a {
  color: #0f2640 !important;
}

/* Sticky WhatsApp button next to Book Now CTA */
.sticky-whatsapp {
  background: transparent !important;
  box-shadow: none !important;
  padding: 8px 12px !important;
  border-radius: 50px !important;
  border: 2px solid rgba(255,255,255,0.4) !important;
  flex-shrink: 0;
}
.sticky-whatsapp svg {
  display: block;
}

/* Light mode mobile nav - must be last to override all nav rules */
[data-theme="light"] .nav__links.open {
  background: rgba(240, 244, 248, 0.97) !important;
}
[data-theme="light"] .nav__links.open a {
  color: #0f2640 !important;
}
[data-theme="light"] .nav__links.open .nav__dropdown-menu {
  background: rgba(240, 244, 248, 0.95) !important;
  border: 1px solid rgba(15, 38, 64, 0.1);
}
[data-theme="light"] .nav__links.open .nav__dropdown-menu a {
  color: #0f2640 !important;
}
