/* ============================================================
   LUMORA ANALYTICS — Premium Static Website Styles
   ============================================================ */

/* 1. Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #03040a;
  color: #f1f5f9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #03040a; }
::-webkit-scrollbar-thumb { background: #1a1e2e; border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: #252a40; }
::selection { background: rgba(52,100,240,0.35); color: #fff; }

/* 2. CSS Variables
   ============================================================ */
:root {
  --bg: #03040a;
  --bg-elevated: #070911;
  --bg-card: rgba(255,255,255,0.025);
  --brand-navy: #0d1b35;
  --brand-blue: #3464f0;
  --brand-blue-mid: #4a78f5;
  --brand-blue-light: #7fb3ff;
  --text-1: #f8fafc;
  --text-2: #94a3b8;
  --text-3: #475569;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --section-py: clamp(64px, 8vw, 120px);
  --container: 1200px;
  --container-px: clamp(20px, 4vw, 48px);
}

/* 3. Typography
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-1);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { line-height: 1.7; }

/* 4. Layout Utilities
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.section { padding: var(--section-py) 0; }
.section--alt { background: var(--bg-elevated); }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-blue-light) 0%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section header */
.section-header { margin-bottom: clamp(40px, 5vw, 72px); }
.section-header.center { text-align: center; }
.section-header p {
  color: var(--text-2);
  font-size: 1.1rem;
  max-width: 600px;
  margin-top: 16px;
}
.section-header.center p { margin: 16px auto 0; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(52,100,240,0.35);
  background: rgba(52,100,240,0.1);
  color: var(--brand-blue-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge svg { width: 12px; height: 12px; }

/* 5. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue-mid), #2856e8);
  color: #fff;
  box-shadow: 0 4px 24px rgba(52,100,240,0.32), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(52,100,240,0.52), inset 0 1px 0 rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text-1);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
}

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

/* 6. Cards
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 1px rgba(0,0,0,0.2), 0 8px 24px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 1px 1px rgba(0,0,0,0.25), 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.07);
}

/* 7. Form Inputs
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 14px; font-weight: 500; color: var(--text-2); }
.form-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.035);
  color: var(--text-1);
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease;
}
.form-input::placeholder { color: var(--text-3); }
.form-input:focus {
  border-color: rgba(52,100,240,0.6);
  background: rgba(255,255,255,0.055);
  box-shadow: 0 0 0 3px rgba(52,100,240,0.14);
}
textarea.form-input { resize: vertical; min-height: 110px; }
select.form-input { cursor: pointer; }
select.form-input option { background: #0d0f18; color: var(--text-1); }

/* 8. Navigation
   ============================================================ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
#site-nav.scrolled {
  background: rgba(3,4,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 1px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo a {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  display: flex;
  align-items: center;
}
.nav-logo-img img { height: 62px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-1);
  background: rgba(255,255,255,0.06);
}
.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 10px 20px; font-size: 14px; border-radius: 10px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.04);
  gap: 5px;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }
.nav-hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 999;
  background: rgba(8,10,20,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 16px var(--container-px) 24px;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  transition: all 0.25s ease;
}
.nav-mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile a {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  transition: all 0.2s;
}
.nav-mobile a:hover { color: var(--text-1); background: rgba(255,255,255,0.05); }
.nav-mobile .btn { margin-top: 8px; width: 100%; justify-content: center; }

/* 9. Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.11) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.22;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-orb-1 {
  top: -10%; right: -10%;
  width: 700px; height: 600px;
  background: radial-gradient(ellipse, rgba(52,100,240,0.12), transparent 65%);
}
.hero-orb-2 {
  bottom: -10%; left: -8%;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, rgba(13,27,53,0.5), transparent 60%);
}
.hero-orb-3 {
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(52,100,240,0.05), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: clamp(60px,8vh,120px) var(--container-px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 .line2 { color: var(--text-2); font-weight: 700; }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-2);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  margin-top: 48px;
  font-size: 13px;
  color: var(--text-3);
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust svg { width: 15px; height: 15px; flex-shrink: 0; }
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-3);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--text-3));
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 68px;
  text-align: center;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: clamp(60px,8vh,100px) var(--container-px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero h1 { margin-bottom: 20px; }
.page-hero p {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 32px;
}

/* 10. Stats Strip
   ============================================================ */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, transparent, rgba(52,100,240,0.04), rgba(52,100,240,0.04), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  padding: 48px 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  background: linear-gradient(135deg, #7fb3ff 0%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-label { font-weight: 600; font-size: 13px; color: var(--text-1); margin-bottom: 2px; }
.stat-sub { font-size: 12px; color: var(--text-3); }

/* 11. Services
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.service-card {
  position: relative;
  padding: 40px;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 1px;
}
.service-card.blue::before {
  background: linear-gradient(90deg, transparent, rgba(52,100,240,0.5), transparent);
}
.service-card.blue { background: linear-gradient(135deg, rgba(52,100,240,0.07), rgba(52,100,240,0.02)); }
.service-card.violet::before {
  background: linear-gradient(90deg, transparent, rgba(107,147,247,0.4), transparent);
}
.service-card.violet { background: linear-gradient(135deg, rgba(107,147,247,0.06), rgba(107,147,247,0.01)); }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon.blue { background: linear-gradient(135deg, #3464f0, #2856e8); box-shadow: 0 4px 16px rgba(52,100,240,0.35); }
.service-icon.violet { background: linear-gradient(135deg, #5b8ef7, #3464f0); box-shadow: 0 4px 16px rgba(91,142,247,0.3); }
.service-icon svg { width: 22px; height: 22px; color: #fff; stroke: #fff; }
.service-card-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.04);
}
.service-card.blue .service-card-tag { color: #7fb3ff; }
.service-card.violet .service-card-tag { color: #93bbff; }
.service-card h3 { margin-bottom: 12px; font-size: 1.4rem; }
.service-card p { color: var(--text-2); margin-bottom: 24px; font-size: 15px; }
.service-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.feature-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: #cbd5e1;
}
.feature-item svg { width: 15px; height: 15px; flex-shrink: 0; stroke: var(--brand-blue-light); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue-light);
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }
.card-link svg { width: 15px; height: 15px; }

/* 12. How It Works
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step-card {
  position: relative;
  padding: 24px;
}
.step-card:hover { border-color: var(--border-strong); }
.step-number {
  position: absolute;
  top: 16px; right: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
}
.step-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(52,100,240,0.12);
  border: 1px solid rgba(52,100,240,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.step-card:hover .step-icon { border-color: rgba(52,100,240,0.4); }
.step-icon svg { width: 18px; height: 18px; stroke: var(--brand-blue-light); }
.step-card h4 { margin-bottom: 8px; font-size: 1rem; }
.step-card p { color: var(--text-2); font-size: 13.5px; line-height: 1.6; }

/* 13. Why Lumora
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.why-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid;
  transition: transform 0.25s;
}
.why-card:hover { transform: scale(1.02); }
.why-card svg { width: 18px; height: 18px; margin-bottom: 12px; }
.why-card h4 { font-size: 14px; margin-bottom: 6px; }
.why-card p { font-size: 12.5px; color: var(--text-3); line-height: 1.5; }

/* Why card colours */
.why-card.green { background: linear-gradient(135deg,rgba(16,185,129,.08),rgba(16,185,129,.03)); border-color:rgba(16,185,129,.15); }
.why-card.green svg { stroke: #34d399; }
.why-card.blue { background: linear-gradient(135deg,rgba(52,100,240,.08),rgba(52,100,240,.03)); border-color:rgba(52,100,240,.15); }
.why-card.blue svg { stroke: var(--brand-blue-light); }
.why-card.violet { background: linear-gradient(135deg,rgba(107,147,247,.07),rgba(107,147,247,.02)); border-color:rgba(107,147,247,.14); }
.why-card.violet svg { stroke: #93bbff; }
.why-card.rose { background: linear-gradient(135deg,rgba(244,63,94,.07),rgba(244,63,94,.02)); border-color:rgba(244,63,94,.13); }
.why-card.rose svg { stroke: #fb7185; }
.why-card.amber { background: linear-gradient(135deg,rgba(245,158,11,.07),rgba(245,158,11,.02)); border-color:rgba(245,158,11,.13); }
.why-card.amber svg { stroke: #fbbf24; }
.why-card.cyan { background: linear-gradient(135deg,rgba(6,182,212,.07),rgba(6,182,212,.02)); border-color:rgba(6,182,212,.13); }
.why-card.cyan svg { stroke: #22d3ee; }
.why-card.orange { background: linear-gradient(135deg,rgba(249,115,22,.07),rgba(249,115,22,.02)); border-color:rgba(249,115,22,.13); }
.why-card.orange svg { stroke: #fb923c; }
.why-card.pink { background: linear-gradient(135deg,rgba(236,72,153,.07),rgba(236,72,153,.02)); border-color:rgba(236,72,153,.13); }
.why-card.pink svg { stroke: #f472b6; }

/* 14. Pricing
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: linear-gradient(160deg, rgba(52,100,240,0.18), rgba(52,100,240,0.04));
  border-color: rgba(52,100,240,0.4);
  box-shadow: 0 0 60px rgba(52,100,240,0.14);
}
.pricing-card.featured:hover { transform: translateY(-6px); }
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-blue-mid), #2856e8);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(52,100,240,0.4);
  display: flex; align-items: center; gap: 5px;
}
.pricing-popular svg { width: 11px; height: 11px; }
.pricing-tier { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.pricing-price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 4px; }
.pricing-amount { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(2rem,3.5vw,2.8rem); color: var(--text-1); }
.pricing-period { color: var(--text-3); font-size: 13px; margin-bottom: 6px; }
.pricing-desc { color: var(--text-2); font-size: 14px; padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 20px; line-height: 1.6; }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #cbd5e1; }
.pricing-feature svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }
.pricing-card:not(.featured) .pricing-feature svg { stroke: var(--text-3); }
.pricing-card.featured .pricing-feature svg { stroke: var(--brand-blue-light); }
.pricing-note { text-align: center; color: var(--text-3); font-size: 13px; margin-top: 28px; }
.pricing-note a { color: var(--brand-blue-light); }
.pricing-note a:hover { text-decoration: underline; }

/* 15. FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border-strong); background: rgba(255,255,255,0.02); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
}
.faq-item.open .faq-q { color: var(--text-1); }
.faq-q:hover { color: var(--text-1); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-item.open .faq-icon {
  background: rgba(52,100,240,0.15);
  color: var(--brand-blue-light);
}
.faq-icon svg { width: 13px; height: 13px; stroke: currentColor; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 20px 18px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* 16. Booking CTA Section
   ============================================================ */
.booking-cta-box {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: clamp(48px,6vw,80px) clamp(32px,5vw,80px);
  text-align: center;
  background: linear-gradient(135deg, rgba(52,100,240,0.12), rgba(13,27,53,0.3));
  border: 1px solid rgba(52,100,240,0.28);
  box-shadow: 0 0 80px rgba(52,100,240,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}
.booking-cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52,100,240,0.6), transparent);
}
.booking-cta-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.cta-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.cta-icon.blue { background: linear-gradient(135deg, #3464f0, #2856e8); box-shadow: 0 4px 16px rgba(52,100,240,0.4); }
.cta-icon.mid { background: linear-gradient(135deg, #5b8ef7, #3464f0); box-shadow: 0 4px 16px rgba(91,142,247,0.35); }
.cta-icon svg { width: 20px; height: 20px; stroke: #fff; }
.cta-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(52,100,240,0.5); }
.booking-cta-box h2 { margin-bottom: 16px; }
.booking-cta-box p { color: var(--text-2); font-size: 1.05rem; max-width: 480px; margin: 0 auto 36px; }

/* 17. Contact
   ============================================================ */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(28px,4vw,48px);
  max-width: 680px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 8px; width: 100%; justify-content: center; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 20px;
}
.form-success.visible { display: flex; }
.success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  display: flex; align-items: center; justify-content: center;
}
.success-icon svg { width: 28px; height: 28px; stroke: #34d399; }
.form-success h3 { font-size: 1.2rem; }
.form-success p { color: var(--text-2); font-size: 14px; max-width: 280px; }

/* 18. Footer
   ============================================================ */
#site-footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding: clamp(56px,6vw,80px) 0 32px;
}
#site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52,100,240,0.4), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-logo {
  display: inline-flex;
  margin-bottom: 20px;
}
.footer-logo-img {
  display: flex;
  align-items: center;
}
.footer-logo-img img { height: 54px; width: auto; }
.footer-brand p { color: var(--text-2); font-size: 14.5px; line-height: 1.7; max-width: 300px; margin-bottom: 20px; }
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-3); }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-contact-item a { color: var(--text-3); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--text-2); }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06); color: var(--text-3); transition: background 0.2s, color 0.2s; }
.footer-social-link:hover { background: rgba(52,100,240,.2); color: #7fb3ff; }

/* ── Scarcity / Offer block ───────────────────────────────── */
.offer-scarcity { margin: 24px 0 28px; background: rgba(52,100,240,.07); border: 1px solid rgba(52,100,240,.22); border-radius: 14px; padding: 20px 22px; max-width: 520px; }

/* Badges */
.offer-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.offer-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; padding: 5px 12px; border-radius: 99px; }
.offer-badge--live { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.35); color: #f87171; }
.offer-badge--fire { background: rgba(251,146,60,.1); border: 1px solid rgba(251,146,60,.3); color: #fb923c; }

/* Pulsing live dot */
.offer-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #f87171; flex-shrink: 0; animation: offerPulse 1.6s ease-in-out infinite; }
@keyframes offerPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(248,113,113,.5); }
  50%       { transform: scale(1.15); box-shadow: 0 0 0 5px rgba(248,113,113,0); }
}

/* Fire icon flicker */
.offer-fire-icon { animation: offerFlicker 2.4s ease-in-out infinite; transform-origin: bottom center; }
@keyframes offerFlicker {
  0%, 100% { transform: scaleY(1)   rotate(0deg);   opacity: 1; }
  30%       { transform: scaleY(1.08) rotate(-3deg); opacity: .9; }
  60%       { transform: scaleY(.95) rotate(3deg);  opacity: 1; }
  80%       { transform: scaleY(1.05) rotate(-2deg); opacity: .95; }
}

/* Copy */
.offer-copy { margin: 0 0 14px; font-size: 14px; color: var(--text-2); line-height: 1.6; }
.offer-strong { color: #e2e8f0; font-weight: 700; }
.offer-urgent { color: #f87171; font-weight: 700; }

/* Slot dots */
.offer-slots { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 14px; }
.offer-slot { width: 16px; height: 10px; border-radius: 3px; }
.offer-slot--claimed { background: linear-gradient(90deg, #3464f0, #60a5fa); box-shadow: 0 0 6px rgba(52,100,240,.4); }
.offer-slot--free { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }

/* Progress bar */
.offer-bar-track { height: 14px; background: rgba(255,255,255,.07); border-radius: 99px; overflow: hidden; margin-bottom: 9px; border: 1px solid rgba(255,255,255,.06); }
.offer-bar-fill { height: 100%; width: 0%; border-radius: 99px; background: linear-gradient(90deg, #2a52d4, #3464f0, #60a5fa); box-shadow: 0 0 14px rgba(52,100,240,.6); transition: width 2s cubic-bezier(.4,0,.15,1); position: relative; overflow: hidden; }
.offer-bar-fill::after { content: ''; position: absolute; top: 0; left: -60%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent); animation: offerShimmer 2.2s ease-in-out infinite; animation-delay: 2.6s; }
@keyframes offerShimmer { 0% { left: -60%; } 100% { left: 120%; } }

/* Bar labels */
.offer-bar-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-3); }
.footer-col h4 { font-size: 13px; color: var(--text-1); margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-3); transition: color 0.2s; }
.footer-col a:hover { color: var(--text-2); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
  flex-wrap: wrap;
}
.footer-bottom a { color: #7fb3ff; display: inline-flex; align-items: center; gap: 4px; }
.footer-bottom a:hover { color: var(--brand-blue-light); }
.footer-bottom a svg { width: 12px; height: 12px; transition: transform 0.2s; }
.footer-bottom a:hover svg { transform: translateX(2px); }

/* 19. Booking Page
   ============================================================ */
.booking-layout {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px var(--container-px) 80px;
}
.booking-header { text-align: center; margin-bottom: 40px; }
.booking-header h1 { font-size: clamp(1.9rem, 3.5vw, 3rem); margin-bottom: 12px; }
.booking-header p { color: var(--text-2); }
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.04);
  color: var(--text-3);
  transition: all 0.3s;
}
.step-pill svg { width: 12px; height: 12px; }
.step-pill.active { background: linear-gradient(135deg, var(--brand-blue-mid), #2856e8); border-color: transparent; color: #fff; box-shadow: 0 4px 16px rgba(52,100,240,0.35); }
.step-pill.done { background: rgba(52,100,240,0.15); border-color: rgba(52,100,240,0.3); color: var(--brand-blue-light); }
.step-connector { width: 24px; height: 1px; background: var(--border); transition: background 0.3s; }
.step-connector.done { background: rgba(52,100,240,0.4); }
.step-panel { display: none; }
.step-panel.active { display: block; }
.booking-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; backdrop-filter: blur(12px); }
.booking-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.booking-card-header h3 { font-size: 1.1rem; }
.booking-card-header p { color: var(--text-3); font-size: 13px; margin-top: 3px; }
.back-btn { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--text-3); background: none; border: none; cursor: pointer; transition: color 0.2s; }
.back-btn:hover { color: var(--text-2); }
.back-btn svg { width: 14px; height: 14px; }

/* Calendar */
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cal-month { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 15px; }
.cal-btn { width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border-strong); background: rgba(255,255,255,0.04); color: var(--text-2); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.15s; }
.cal-btn:hover { background: rgba(255,255,255,0.08); color: var(--text-1); }
.cal-btn svg { width: 14px; height: 14px; }
.cal-days-header { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: 6px; }
.cal-day-name { text-align: center; font-size: 11px; color: var(--text-3); font-weight: 500; padding: 4px 0; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-2);
  transition: all 0.15s;
  border: 1px solid transparent;
}
.cal-day:hover:not(.disabled):not(.selected) { background: rgba(255,255,255,0.06); color: var(--text-1); }
.cal-day.disabled { color: rgba(255,255,255,0.12); cursor: default; }
.cal-day.today { border-color: rgba(52,100,240,0.35); color: var(--brand-blue-light); }
.cal-day.selected { background: linear-gradient(135deg, var(--brand-blue-mid), #2856e8); color: #fff; border-color: transparent; box-shadow: 0 2px 12px rgba(52,100,240,0.4); }
.cal-note { text-align: center; font-size: 11.5px; color: var(--text-3); margin-top: 16px; }

/* Time slots */
.time-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
@media(min-width:480px) { .time-grid { grid-template-columns: repeat(4,1fr); } }
.time-slot {
  padding: 11px 8px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.03);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
}
.time-slot:hover { border-color: var(--border-strong); background: rgba(255,255,255,0.07); color: var(--text-1); }
.time-slot.selected { background: linear-gradient(135deg, var(--brand-blue-mid), #2856e8); border-color: transparent; color: #fff; box-shadow: 0 2px 10px rgba(52,100,240,0.35); }
.time-note { text-align: center; font-size: 11.5px; color: var(--text-3); margin-top: 16px; }
.slots-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 36px 16px;
  color: var(--text-3);
  font-size: 13.5px;
}
.slots-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.1);
  border-top-color: var(--brand-blue-light);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  flex-shrink: 0;
}
.slots-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px 16px;
  color: var(--text-2);
  font-size: 14px;
}
.btn-spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

/* Help options (tag buttons) */
.help-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.help-tag {
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.03);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.help-tag:hover { border-color: var(--border-strong); color: var(--text-1); background: rgba(255,255,255,0.06); }
.help-tag.selected { background: rgba(52,100,240,0.18); border-color: rgba(52,100,240,0.45); color: var(--brand-blue-light); }

/* Confirmation */
.confirm-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(52,100,240,0.1);
  border: 1px solid rgba(52,100,240,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.confirm-icon svg { width: 30px; height: 30px; stroke: var(--brand-blue-light); }
.confirm-summary {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.confirm-row { display: flex; justify-content: space-between; align-items: center; font-size: 13.5px; }
.confirm-row span:first-child { color: var(--text-3); }
.confirm-row span:last-child { color: var(--text-2); font-weight: 500; }

/* 20. Inner page sections
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.info-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid;
}
.info-card.green { background: rgba(52,100,240,0.04); border-color: rgba(52,100,240,0.2); }
.info-card.muted { background: rgba(255,255,255,0.02); border-color: var(--border); }
.info-card h3 { font-size: 1rem; margin-bottom: 14px; }
.check-list { display: flex; flex-direction: column; gap: 8px; }
.check-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #cbd5e1; }
.check-item svg { width: 14px; height: 14px; flex-shrink: 0; }
.check-item.muted { color: var(--text-3); }
.check-item.muted svg { stroke: var(--text-3); }
.info-card-note { color: var(--text-3); font-size: 11.5px; margin-top: 14px; }

/* Maintenance grid */
.maint-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.maint-card {
  padding: 20px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.maint-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.maint-card svg { width: 18px; height: 18px; stroke: var(--brand-blue-light); margin-bottom: 12px; }
.maint-card h4 { font-size: 14px; margin-bottom: 4px; }
.maint-card p { font-size: 12.5px; color: var(--text-3); line-height: 1.5; }

/* AI services grid */
.ai-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ai-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid;
  transition: transform 0.25s;
}
.ai-card:hover { transform: scale(1.01); }
.ai-card-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 10px; }
.ai-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ai-card-icon svg { width: 18px; height: 18px; }
.ai-card h4 { font-size: 15px; margin-top: 4px; }
.ai-card p { color: var(--text-2); font-size: 13.5px; line-height: 1.6; margin-bottom: 12px; }
.ai-example {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}
.ai-example strong { color: var(--text-2); }

/* AI card colour themes */
.ai-card.blue { background: linear-gradient(135deg,rgba(52,100,240,.08),transparent); border-color:rgba(52,100,240,.15); }
.ai-card.blue .ai-card-icon svg { stroke: var(--brand-blue-light); }
.ai-card.violet { background: linear-gradient(135deg,rgba(107,147,247,.06),transparent); border-color:rgba(107,147,247,.13); }
.ai-card.violet .ai-card-icon svg { stroke: #93bbff; }
.ai-card.cyan { background: linear-gradient(135deg,rgba(6,182,212,.06),transparent); border-color:rgba(6,182,212,.12); }
.ai-card.cyan .ai-card-icon svg { stroke: #22d3ee; }
.ai-card.green { background: linear-gradient(135deg,rgba(16,185,129,.06),transparent); border-color:rgba(16,185,129,.12); }
.ai-card.green .ai-card-icon svg { stroke: #34d399; }
.ai-card.amber { background: linear-gradient(135deg,rgba(245,158,11,.06),transparent); border-color:rgba(245,158,11,.11); }
.ai-card.amber .ai-card-icon svg { stroke: #fbbf24; }
.ai-card.orange { background: linear-gradient(135deg,rgba(249,115,22,.06),transparent); border-color:rgba(249,115,22,.11); }
.ai-card.orange .ai-card-icon svg { stroke: #fb923c; }
.ai-card.pink { background: linear-gradient(135deg,rgba(236,72,153,.06),transparent); border-color:rgba(236,72,153,.11); }
.ai-card.pink .ai-card-icon svg { stroke: #f472b6; }
.ai-card.rose { background: linear-gradient(135deg,rgba(244,63,94,.06),transparent); border-color:rgba(244,63,94,.11); }
.ai-card.rose .ai-card-icon svg { stroke: #fb7185; }

/* Outcomes strip */
.outcomes-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg,transparent,rgba(52,100,240,.04),rgba(52,100,240,.04),transparent);
  padding: 48px 0;
}
.outcomes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.outcome-item { text-align: center; }
.outcome-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(52,100,240,.1); border: 1px solid rgba(52,100,240,.2); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.outcome-icon svg { width: 18px; height: 18px; stroke: var(--brand-blue-light); }
.outcome-value { font-weight: 600; color: var(--text-1); font-size: 13.5px; margin-bottom: 3px; }
.outcome-desc { font-size: 12px; color: var(--text-3); }

/* 21. Scroll Animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeInUp 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.12s; }
.hero-content > *:nth-child(3) { animation-delay: 0.2s; }
.hero-content > *:nth-child(4) { animation-delay: 0.28s; }
.hero-content > *:nth-child(5) { animation-delay: 0.36s; }

/* 22. Booking — Joseph trust card
   ============================================================ */
.booking-trust-card {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 520px;
  margin: 0 auto 36px;
  background: rgba(52,100,240,0.06);
  border: 1px solid rgba(52,100,240,0.2);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
}
.booking-trust-photo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid rgba(52,100,240,0.35);
}
.booking-trust-body { flex: 1; min-width: 0; }
.booking-trust-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 2px;
}
.booking-trust-role {
  font-size: 12px;
  color: var(--brand-blue-light);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.booking-trust-msg {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 480px) {
  .booking-trust-card { flex-direction: column; text-align: center; }
}

/* 23. Responsive — comprehensive mobile-first
   ============================================================ */

/* ── Global touch improvements (all screen sizes) ─────────── */
a, button, [role="button"],
.cal-day, .time-slot, .help-tag,
.faq-q, .nav-hamburger, .back-btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Ensure nothing ever breaks out of its container */
*, img, svg { max-width: 100%; }

/* ── Chatbot Widget
   ============================================================ */
#chatbot-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  font-family: 'Plus Jakarta Sans', sans-serif;
  width: 58px;
  height: 58px;
}
#chat-trigger {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue-mid), #2856e8);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(52,100,240,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
#chat-trigger:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(52,100,240,0.6); }
#chat-trigger svg { width: 26px; height: 26px; stroke: #fff; flex-shrink: 0; }

.chat-window {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 360px;
  max-width: calc(100vw - 40px);
  background: #0c1220;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(52,100,240,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.chat-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(135deg, #0d1b35 0%, #152344 100%);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue-mid), #2856e8);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chat-avatar svg { width: 18px; height: 18px; stroke: #fff; flex-shrink: 0; }
.chat-name { font-size: 14px; font-weight: 600; color: #fff; }
.chat-status { font-size: 11px; color: var(--brand-blue-light); margin-top: 2px; }
#chat-close {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  transition: all 0.15s;
  flex-shrink: 0;
}
#chat-close:hover { background: rgba(255,255,255,0.13); color: var(--text-1); }
#chat-close svg { width: 14px; height: 14px; flex-shrink: 0; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  max-height: 300px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.chat-message { display: flex; }
.chat-message.user { justify-content: flex-end; }
.chat-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.6;
}
.chat-message.bot .chat-bubble {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-1);
  border-bottom-left-radius: 4px;
}
.chat-message.bot .chat-bubble a { color: var(--brand-blue-light); text-decoration: underline; }
.chat-message.user .chat-bubble {
  background: linear-gradient(135deg, var(--brand-blue-mid), #2856e8);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.typing-dots { display: flex; gap: 5px; align-items: center; padding: 2px 0; }
.typing-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-3);
  animation: typingBounce 1.1s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.18s; }
.typing-dots span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .6; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  min-height: 0;
}
.chat-chips:empty { display: none; }
.chat-chip {
  padding: 6px 13px;
  border-radius: 9999px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.04);
  color: var(--text-2);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.chat-chip:hover {
  border-color: rgba(52,100,240,0.45);
  color: var(--brand-blue-light);
  background: rgba(52,100,240,0.1);
}

.chat-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
#chat-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--text-1);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}
#chat-input:focus { border-color: rgba(52,100,240,0.5); }
#chat-input::placeholder { color: var(--text-3); }
#chat-send {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-blue-mid), #2856e8);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
#chat-send:hover { opacity: 0.85; }
#chat-send svg { width: 15px; height: 15px; stroke: #fff; flex-shrink: 0; }

@media (max-width: 480px) {
  #chatbot-widget    { bottom: 16px; right: 16px; width: 52px; height: 52px; }
  .chat-window       { right: 16px; left: 16px; width: auto; bottom: 84px; }
  #chat-trigger      { width: 52px; height: 52px; }
  #chat-trigger svg  { width: 22px; height: 22px; }
}

/* ── 1024px and below ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid            { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid        { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .footer-brand        { grid-column: 1 / -1; }
}

/* ── 860px and below ───────────────────────────────────────── */
@media (max-width: 860px) {
  .services-grid       { grid-template-columns: 1fr; }
  .steps-grid          { grid-template-columns: 1fr 1fr; }
  .why-grid            { grid-template-columns: repeat(2, 1fr); }
  .two-col             { grid-template-columns: 1fr; gap: 32px; }
  .ai-services-grid    { grid-template-columns: 1fr; }
  .maint-grid          { grid-template-columns: 1fr 1fr; }
  .outcomes-grid       { grid-template-columns: repeat(2, 1fr); }
  .form-row            { grid-template-columns: 1fr; }

  /* Reduce service card padding */
  .service-card        { padding: 28px; }

  /* Booking CTA box padding */
  .booking-cta-box     { padding: 40px 28px; }
}

/* ── 768px and below (phones / small tablets) ──────────────── */
@media (max-width: 768px) {
  /* Navigation */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger       { display: flex; }

  /* Stats */
  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .stat-item           { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 16px; }
  .stat-item:nth-child(odd)     { border-right: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-value          { font-size: 2.2rem; }

  /* Cards — reduce padding */
  .card                { padding: 22px; }
  .service-card        { padding: 24px; }
  .pricing-card        { padding: 24px; }

  /* Buttons — stack on mobile */
  .btn-group           { flex-direction: column; align-items: stretch; }
  .btn-group .btn      { width: 100%; justify-content: center; }

  /* Hero */
  .hero-sub            { font-size: 1rem; }
  .hero-trust          { gap: 14px 0; flex-direction: column; align-items: center; }
  .hero-scroll         { display: none; }

  /* Page hero */
  .page-hero p         { font-size: 1rem; }

  /* Section headers */
  .section-header p    { font-size: 1rem; }

  /* Steps grid */
  .steps-grid          { gap: 12px; }
  .step-card           { padding: 20px; }

  /* Why grid */
  .why-card            { padding: 16px; }

  /* Footer */
  .footer-grid         { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand        { grid-column: auto; }
  .footer-bottom       { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Booking layout */
  .booking-layout      { padding: 40px var(--container-px) 60px; }
  .booking-header h1   { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .booking-card        { padding: 20px; }

  /* Step indicator — hide text labels, show icon + number only */
  .step-label          { display: none; }
  .step-connector      { width: 16px; }

  /* Calendar — larger tap targets */
  .cal-day             { font-size: 13px; min-height: 40px; }
  .cal-btn             { width: 40px; height: 40px; }
  .cal-grid            { gap: 2px; }

  /* Time slots */
  .time-slot           { padding: 13px 6px; font-size: 12.5px; }

  /* Help tags */
  .help-tag            { padding: 9px 12px; min-height: 40px; }

  /* Contact form */
  .contact-form-wrap   { padding: 24px 20px; }

  /* AI services */
  .ai-card             { padding: 20px; }

  /* Outcomes */
  .outcomes-strip      { padding: 32px 0; }

  /* Booking CTA */
  .booking-cta-box     { padding: 36px 20px; border-radius: 20px; }
  .booking-cta-icons   { margin-bottom: 20px; }
}

/* ── 520px and below (small phones) ───────────────────────── */
@media (max-width: 520px) {
  /* Typography */
  h1                   { letter-spacing: -0.025em; }
  h2                   { letter-spacing: -0.02em; }

  /* Grids go fully single-column */
  .steps-grid          { grid-template-columns: 1fr; }
  .maint-grid          { grid-template-columns: 1fr; }
  .why-grid            { grid-template-columns: 1fr 1fr; }
  .stats-grid          { grid-template-columns: 1fr 1fr; }

  /* Hero padding */
  .hero-content        { padding-top: 80px; padding-bottom: 80px; }
  .page-hero-content   { padding-top: 64px; padding-bottom: 64px; }

  /* Nav logo — slightly smaller */
  .nav-logo-img img    { height: 28px; }

  /* Cards */
  .card                { padding: 18px; border-radius: 16px; }
  .service-card        { padding: 20px; }

  /* Pricing */
  .pricing-grid        { max-width: 100%; }
  .pricing-card        { padding: 22px; }

  /* Section padding */
  :root                { --section-py: clamp(48px, 8vw, 80px); }

  /* FAQ */
  .faq-q               { font-size: 14px; padding: 16px; }
  .faq-a-inner         { padding: 0 16px 16px; font-size: 13.5px; }

  /* Booking step pills */
  .step-pill           { padding: 6px 10px; font-size: 11px; }

  /* Form inputs — slightly larger for thumb use */
  .form-input          { padding: 14px; font-size: 16px; } /* 16px prevents iOS zoom on focus */

  /* Booking CTA */
  .booking-cta-box     { padding: 28px 16px; }
  .cta-icon            { width: 38px; height: 38px; }
  .cta-icon svg        { width: 17px; height: 17px; }

  /* Why cards */
  .why-card            { padding: 14px; }
  .why-card h4         { font-size: 13px; }
  .why-card p          { font-size: 12px; }

  /* Footer */
  .footer-col h4       { margin-bottom: 12px; }
  .footer-brand p      { font-size: 14px; }
}

/* ── 380px and below (iPhone SE, older Android) ────────────── */
@media (max-width: 380px) {
  .hero-content        { padding-left: 16px; padding-right: 16px; }
  .page-hero-content   { padding-left: 16px; padding-right: 16px; }

  .nav-logo-img img    { height: 22px; }

  /* Single column everything */
  .why-grid            { grid-template-columns: 1fr; }
  .outcomes-grid       { grid-template-columns: 1fr 1fr; }

  .badge               { font-size: 10px; padding: 5px 12px; }

  /* Prevent badge + heading overflow */
  .section-header h2   { word-break: break-word; }

  .booking-layout      { padding: 32px 16px 48px; }
  .booking-card        { padding: 16px; border-radius: 14px; }

  /* Calendar cells — ensure they're tappable */
  .cal-day             { min-height: 38px; border-radius: 8px; }

  /* Btn full width always */
  .btn                 { padding: 14px 20px; font-size: 14px; }
}
