/* ════════════════════════════════════════════════════════════
   SwiftReach — Global Stylesheet
   Single source of truth for all pages. Tokens trace to DESIGN.md.
   ════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-accent:      #0057FF;
  --color-accent-soft: #EEF2FF;
  --color-dark:        #16162A;
  --color-white:       #FFFFFF;
  --color-bg:          #FAF8F3;   /* warm cream canvas (Advisory Incubator) */
  --color-surface:     #FFFFFF;   /* white cards float on the cream */
  --color-text:        #16161A;
  --color-text-2:      #444444;
  --color-muted:       #6B6B6B;
  --color-subtle:      #999999;
  --color-border:      #E7E3DB;   /* warm-toned hairline to match cream */
  --color-green:       #22C55E;
  --color-amber:       #F59E0B;

  --font-sans:  'DM Sans', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono:  'DM Mono', 'Courier New', monospace;

  --max-width:       1200px;
  --side-padding:    clamp(20px, 5vw, 60px);
  --section-padding: 96px;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-pill: 9999px;

  --shadow-sm:  rgba(0,0,0,0.04) 0px 1px 4px;
  --shadow-md:  rgba(0,0,0,0.06) 0px 2px 10px;
  --shadow-lg:  rgba(0,0,0,0.08) 0px 4px 24px;
  --shadow-cta: rgba(0,87,255,0.28) 0px 4px 20px;

  --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

/* ── Utility ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
}
/* Primary = near-black, for use on the cream/light canvas */
.btn-primary {
  background: var(--color-dark);
  color: #fff;
  padding: 13px 26px;
  box-shadow: rgba(22,22,42,0.12) 0px 4px 16px;
}
.btn-primary:hover {
  background: #24243a;
  box-shadow: rgba(22,22,42,0.20) 0px 6px 22px;
  transform: translateY(-1px);
}
/* Light/inverse = white, for use on dark sections (CTA band, footer) */
.btn-light {
  background: #fff;
  color: var(--color-dark);
  padding: 13px 26px;
}
.btn-light:hover {
  background: #f0f0ec;
  transform: translateY(-1px);
}
/* Outline = bordered, for secondary actions on light backgrounds */
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  padding: 12px 24px;
}
.btn-outline:hover { border-color: var(--color-dark); }
/* Ghost = translucent, for dark backgrounds */
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 13px 26px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }

/* ── Eyebrow ── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ── Live dot (pulsing) ── */
.live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.8); }
}

/* ── Section header (reusable) ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow { justify-content: center; margin-bottom: 16px; }
.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.4px;
  color: var(--color-text);
  max-width: 640px;
  margin: 0 auto 16px;
}
.section-headline em { font-style: italic; color: var(--color-accent); }
.section-sub {
  font-size: 16px;
  color: var(--color-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ════════════════════════════════
   NAV (mega-nav with dropdowns)
════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,87,255,0.07);
  z-index: 100;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

/* Desktop menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0 auto;
}
.nav-item { position: relative; }
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav-trigger:hover,
.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger {
  color: var(--color-accent);
  background: var(--color-accent-soft);
}
.nav-caret {
  width: 12px; height: 12px;
  transition: transform 0.2s ease;
  opacity: 0.6;
}
.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret { transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 101;
}
/* invisible hover bridge so the gap doesn't drop the menu */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown--right { left: auto; right: 0; }

.nav-drop-link {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-drop-link:hover { background: var(--color-accent-soft); }
.nav-drop-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}
.nav-drop-link:hover .nav-drop-title { color: var(--color-accent); }
.nav-drop-desc {
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.45;
}

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 99;
  overflow-y: auto;
  padding: 12px var(--side-padding) 48px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: none;            /* hidden on desktop — see ≤1024 query */
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-group { border-bottom: 1px solid var(--color-border); }
.mobile-group-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
}
.mobile-group-trigger .nav-caret { width: 14px; height: 14px; opacity: 0.5; }
.mobile-group.open .mobile-group-trigger .nav-caret { transform: rotate(180deg); }
.mobile-sub {
  display: none;
  flex-direction: column;
  padding: 0 4px 16px;
}
.mobile-group.open .mobile-sub { display: flex; }
.mobile-sub a {
  padding: 11px 0;
  font-size: 14px;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.mobile-sub a:hover { color: var(--color-accent); }
.mobile-cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}
.mobile-cta .btn { width: 100%; justify-content: center; }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--color-bg);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.6;
}
.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at top, rgba(0,87,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-warm {
  position: absolute;
  top: -60px;
  left: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(255,140,60,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-padding) var(--side-padding);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 5px 6px 5px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-muted);
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}
.hero-chip-tag {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -1px;
  color: var(--color-text);
  max-width: 900px;
  margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--color-accent); }
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 540px;
  margin-bottom: 44px;
}

/* ════════════════════════════════
   WHAT WE DO (services overview)
════════════════════════════════ */
.services-section {
  background: transparent;
  padding: var(--section-padding) 0;
  border-top: 1px solid var(--color-border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 20px; height: 20px; }
.service-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}
.service-desc {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.service-link {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.15s ease;
}
.service-card:hover .service-link { gap: 9px; }

/* ════════════════════════════════
   COMPARISON
════════════════════════════════ */
.compare-section {
  background: transparent;
  padding: var(--section-padding) 0;
  border-top: 1px solid var(--color-border);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-card.without { border-color: rgba(220,38,38,0.18); }
.compare-card.with    { border-color: rgba(0,87,255,0.18); }
.compare-card-head {
  padding: 18px 24px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.compare-card-head h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  flex: 1;
}
.compare-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.tag-bad  { background: rgba(220,38,38,0.08); color: #dc2626; }
.tag-good { background: var(--color-accent-soft); color: var(--color-accent); }

.mock-visual {
  padding: 18px 20px;
  background: #F7F7F7;
  border-bottom: 1px solid var(--color-border);
}
.mock-window {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.mock-bar {
  background: #F4F4F4;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid var(--color-border);
}
.mock-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
}
.mock-title {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-left: 4px;
}
.mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-bottom: 1px solid #F2F2F2;
}
.mock-row:last-child { border-bottom: none; }
.mock-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.ma { background: #A1A1AA; }
.mb { background: #CBD5E1; }
.mc { background: #B0BEC5; }
.mock-lines { flex: 1; }
.mock-line {
  height: 5px;
  border-radius: 3px;
  background: var(--color-border);
  margin-bottom: 4px;
}
.mock-line:last-child { margin-bottom: 0; }
.ml-long  { width: 78%; }
.ml-mid   { width: 52%; }
.ml-short { width: 34%; }
.mock-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.mb-bounced { background: rgba(220,38,38,0.09); color: #dc2626; }
.mb-spam    { background: rgba(245,158,11,0.09); color: #d97706; }
.mb-none    { background: #EFEFEF; color: var(--color-muted); }

.pipeline-header {
  background: #F7F7F7;
  padding: 9px 12px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pipeline-header-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}
.pipeline-header-count {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--color-accent);
  font-weight: 500;
}
.pipeline-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-bottom: 1px solid #F2F2F2;
}
.pipeline-row:last-child { border-bottom: none; }
.pa1 { background: var(--color-accent); }
.pa2 { background: #7C3AED; }
.pa3 { background: #059669; }
.pipeline-name {
  flex: 1;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text);
}
.p-stage {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.ps-booked  { background: rgba(34,197,94,0.10); color: #16a34a; }
.ps-replied { background: var(--color-accent-soft); color: var(--color-accent); }
.ps-sending { background: rgba(245,158,11,0.10); color: #d97706; }

.compare-list {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.compare-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-2);
}
.c-mark { font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.c-x     { color: #dc2626; }
.c-check { color: var(--color-accent); }

/* ════════════════════════════════
   HOW IT WORKS
════════════════════════════════ */
.system-section {
  background: transparent;
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}
.system-section .section-headline { color: var(--color-text); }
.system-section .section-sub      { color: var(--color-muted); }
.system-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.system-step {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.system-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.step-head { display: flex; align-items: flex-start; gap: 16px; }
.step-num {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--color-accent);
  background: rgba(0,87,255,0.13);
  border: 1px solid rgba(0,87,255,0.22);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px;
}
.step-body { flex: 1; }
.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.65;
}
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.step-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  color: var(--color-subtle);
}
.step-connector {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--color-border), transparent);
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--color-border);
}

/* ════════════════════════════════
   WHO IT'S FOR
════════════════════════════════ */
.qualify-section {
  background: #FFFFFF;
  padding: var(--section-padding) 0;
  border-top: 1px solid var(--color-border);
}
.qualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.qualify-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--color-text);
  margin: 16px 0 20px;
}
.qualify-left h2 em { font-style: italic; }
.qualify-left p {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.qualify-list { display: flex; flex-direction: column; gap: 14px; }
.qualify-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text-2);
  line-height: 1.55;
}
.qualify-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.qualify-right { display: flex; flex-direction: column; gap: 16px; }
.qualify-card {
  background: #FAFAFA;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.qualify-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.qualify-card-val {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 6px;
}
.qualify-card-val strong { color: var(--color-accent); font-weight: 400; }
.qualify-card-desc {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
.faq-section {
  background: transparent;
  padding: var(--section-padding) 0;
  border-top: 1px solid var(--color-border);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  padding: 26px 4px;
  transition: color 0.15s;
}
.faq-trigger:hover { color: var(--color-accent); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform 0.28s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 360px; }
.faq-answer-inner {
  padding: 0 4px 28px;
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 90%;
}

/* ════════════════════════════════
   CTA
════════════════════════════════ */
.cta-section {
  background: var(--color-dark);
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,87,255,0.20) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-subtle);
  margin-bottom: 24px;
}
.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}
.cta-headline em { font-style: italic; color: rgba(255,255,255,0.72); }
.cta-sub {
  font-size: 16px;
  color: var(--color-subtle);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* ════════════════════════════════
   COMING SOON (placeholder pages)
════════════════════════════════ */
.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 80px) var(--side-padding) 80px;
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}
.cs-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at top, rgba(0,87,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cs-inner { position: relative; z-index: 1; max-width: 640px; }
.cs-breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-subtle);
  margin-bottom: 24px;
}
.cs-breadcrumb a { color: var(--color-muted); text-decoration: none; }
.cs-breadcrumb a:hover { color: var(--color-accent); }
.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 28px;
}
.cs-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.6px;
  color: var(--color-text);
  margin-bottom: 20px;
}
.cs-title em { font-style: italic; color: var(--color-muted); }
.cs-desc {
  font-size: 17px;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
}
.cs-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ════════════════════════════════
   CONTACT PAGE
════════════════════════════════ */
.contact-section {
  background: transparent;
  padding: calc(var(--nav-height) + 72px) 0 var(--section-padding);
  min-height: 100vh;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-left { max-width: 460px; }
.contact-left h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.7px;
  color: var(--color-text);
  margin: 16px 0 20px;
}
.contact-left h1 em { font-style: italic; color: var(--color-accent); }
.contact-lead {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  border: 1px solid rgba(0,87,255,0.18);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-step-text {
  font-size: 14px;
  color: var(--color-text-2);
  line-height: 1.55;
}
.contact-step-text strong { color: var(--color-text); font-weight: 600; }

/* Form card */
.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  font-weight: 500;
}
.form-input,
.form-textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0,87,255,0.12);
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.form-submit {
  margin-top: 4px;
  align-self: flex-start;
}
.form-submit[disabled] { opacity: 0.6; cursor: default; transform: none; }

/* Status / error message */
.form-status:empty { display: none; }
.form-status.error {
  font-size: 14px;
  line-height: 1.55;
  color: #b91c1c;
  background: rgba(220,38,38,0.06);
  border: 1px solid rgba(220,38,38,0.22);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

/* Success state */
.contact-success { padding: 6px 0; }
.contact-success-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-green);
  background: rgba(34,197,94,0.10);
  border: 1px solid rgba(34,197,94,0.22);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  margin-bottom: 20px;
}
.contact-success h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 12px;
}
.contact-success p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}
.contact-success p a { color: var(--color-accent); text-decoration: none; }
.contact-success p a:hover { text-decoration: underline; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: var(--color-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--color-subtle);
  line-height: 1.65;
  margin-bottom: 16px;
}
.footer-contact {
  display: block;
  width: fit-content;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 22px;
  transition: color 0.15s;
}
.footer-contact:hover { color: #fff; }
.footer-col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-subtle);
  margin-bottom: 14px;
}
.footer-link {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-link:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.30);
}
.footer-legal a {
  color: rgba(255,255,255,0.30);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.60); }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
}

@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-left { max-width: none; }
  .qualify-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item:nth-child(odd) { border-right: none; }
  .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--color-border); }
  .faq-item:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 540px) {
  :root { --section-padding: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .cta-btns { flex-direction: column; }
}
