@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ═══════════════════════════════════════════════════════
   MOAT AIS — Marketing Website
   Dark navy with amber intelligence — fortress aesthetic
   ═══════════════════════════════════════════════════════ */

:root {
  --ink:       #04080f;
  --deep:      #070d1c;
  --surface:   #0c1428;
  --card:      #111d35;
  --raised:    #162240;
  --border:    rgba(255,255,255,0.07);
  --border-2:  rgba(255,255,255,0.12);

  --text-1: #e8edf5;
  --text-2: #8899bb;
  --text-3: #4a5a7a;

  --gold:       #f5a623;
  --gold-dim:   #f5a62322;
  --gold-glow:  rgba(245,166,35,0.25);
  --blue:       #3b82f6;
  --blue-dim:   rgba(59,130,246,0.15);
  --blue-glow:  rgba(59,130,246,0.25);
  --green:      #10b981;
  --red:        #ef4444;

  --font-head: 'Barlow', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'DM Mono', monospace;

  --max-w: 1140px;
  --nav-h: 68px;
  --r: 8px;
  --rl: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-1);
  background: var(--deep);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(7,13,28,0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 28px; width: 100%;
  display: flex; align-items: center; gap: 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  color: var(--text-1); letter-spacing: -.3px;
}
.nav-logo-name span { color: var(--gold); }
.nav-links {
  display: flex; gap: 4px; margin-left: 40px;
}
.nav-link {
  padding: 6px 14px; border-radius: 6px;
  font-size: 14px; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--text-1); background: rgba(255,255,255,.05); }
.nav-link.active { color: var(--gold); }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.btn-nav-outline {
  padding: 8px 18px; border-radius: var(--r);
  border: 1px solid var(--border-2); font-size: 14px; font-weight: 500;
  color: var(--text-2); text-decoration: none;
  transition: all .15s;
}
.btn-nav-outline:hover { color: var(--text-1); border-color: var(--gold); }

.btn-nav-gold {
  padding: 8px 20px; border-radius: var(--r);
  background: var(--gold); color: #0a0800;
  font-size: 14px; font-weight: 700;
  text-decoration: none; transition: all .15s;
}
.btn-nav-gold:hover { background: #f8b84a; box-shadow: 0 0 20px var(--gold-glow); }

/* Mobile menu toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; cursor: pointer; margin-left: auto;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--text-2);
  border-radius: 2px; transition: all .2s;
}

/* ── UTILITY ────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: inline-block; width: 20px; height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }

.h-display {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.08;
}
.h-section {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700; letter-spacing: -.8px;
}
.h-card { font-size: 20px; font-weight: 700; letter-spacing: -.3px; }

.text-gold { color: var(--gold); }
.text-2    { color: var(--text-2); }
.text-muted{ color: var(--text-3); }

.lead {
  font-size: 18px; line-height: 1.7; color: var(--text-2); font-weight: 400;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r);
  background: var(--gold); color: #0a0800;
  font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all .18s;
  border: none; cursor: pointer; font-family: var(--font-body);
}
.btn-primary:hover { background: #f8b84a; box-shadow: 0 0 28px var(--gold-glow); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r);
  border: 1px solid var(--border-2); color: var(--text-1);
  font-size: 15px; font-weight: 500;
  text-decoration: none; transition: all .18s; background: none;
  cursor: pointer; font-family: var(--font-body);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r);
  background: var(--blue); color: #fff;
  font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all .18s; border: none; cursor: pointer;
  font-family: var(--font-body);
}
.btn-blue:hover { background: #2563eb; box-shadow: 0 0 24px var(--blue-glow); transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--ink);
}

/* Subtle grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Gradient vignette */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 60% 50%,
    rgba(245,166,35,0.04) 0%,
    transparent 70%),
    linear-gradient(to bottom, transparent 60%, var(--ink) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
}

.hero-content { max-width: 580px; }
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}

.hero-title { margin-bottom: 24px; }
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub { margin-bottom: 36px; max-width: 500px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Radar visual */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; aspect-ratio: 1;
}
.radar-container {
  position: relative; width: 380px; height: 380px;
  flex-shrink: 0;
}
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: radar-pulse 3.6s ease-out infinite;
  opacity: 0;
}
.radar-ring:nth-child(1) { width: 100px; height: 100px; animation-delay: 0s; }
.radar-ring:nth-child(2) { width: 100px; height: 100px; animation-delay: 1.2s; }
.radar-ring:nth-child(3) { width: 100px; height: 100px; animation-delay: 2.4s; }

@keyframes radar-pulse {
  0%   { transform: translate(-50%,-50%) scale(0.6); opacity: 0.7; }
  80%  { opacity: 0.1; }
  100% { transform: translate(-50%,-50%) scale(3.8); opacity: 0; }
}

/* Static decorative rings */
.radar-static-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.radar-static-ring:nth-child(4)  { width: 160px; height: 160px; }
.radar-static-ring:nth-child(5)  { width: 240px; height: 240px; }
.radar-static-ring:nth-child(6)  { width: 320px; height: 320px; }
.radar-static-ring:nth-child(7)  { width: 380px; height: 380px; border-color: rgba(245,166,35,0.06); }

.radar-core {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80px; height: 80px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px var(--gold-glow), 0 0 80px var(--gold-dim);
}

/* Threat dots orbiting the radar */
.threat-dot {
  position: absolute;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(239,68,68,0.6);
  animation: threat-blink 2s ease-in-out infinite;
}
.threat-dot.blocked {
  background: var(--green);
  box-shadow: 0 0 8px rgba(16,185,129,0.6);
}
.threat-dot:nth-child(8)  { top: 18%;  left: 72%; animation-delay: 0s; }
.threat-dot:nth-child(9)  { top: 65%;  left: 82%; animation-delay: .6s; background: var(--green); box-shadow: 0 0 8px rgba(16,185,129,0.6); }
.threat-dot:nth-child(10) { top: 80%;  left: 28%; animation-delay: 1.2s; }
.threat-dot:nth-child(11) { top: 22%;  left: 22%; animation-delay: .9s; background: var(--green); box-shadow: 0 0 8px rgba(16,185,129,0.6); }

@keyframes threat-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}

/* ── STATS BAR ───────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-bar-inner {
  display: flex; justify-content: space-around; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-mono); font-size: 32px; font-weight: 500;
  color: var(--gold); line-height: 1;
  text-shadow: 0 0 20px var(--gold-glow);
}
.stat-label { font-size: 12px; color: var(--text-3); margin-top: 4px; letter-spacing: .5px; }
.stat-sep {
  width: 1px; height: 48px; background: var(--border);
}

/* ── FEATURES ────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 32px 28px;
  transition: border-color .2s, transform .15s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity .2s;
}
.feat-card:hover {
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.feat-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  margin-bottom: 10px; color: var(--text-1);
}
.feat-body { font-size: 14.5px; color: var(--text-2); line-height: 1.7; }

/* ── HOW IT WORKS ─────────────────────────────────────── */
.hiw-section { background: var(--ink); }
.hiw-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
  position: relative;
}
.hiw-grid::before {
  content: '';
  position: absolute; top: 32px; left: calc(16.66% + 24px); right: calc(16.66% + 24px);
  height: 1px; background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
}
.hiw-step {
  padding: 0 24px; text-align: center;
}
.hiw-number {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.3);
  background: var(--gold-dim);
  color: var(--gold);
  font-family: var(--font-mono); font-size: 22px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative; z-index: 1;
  box-shadow: 0 0 24px var(--gold-dim);
}
.hiw-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  margin-bottom: 12px;
}
.hiw-body { font-size: 14.5px; color: var(--text-2); line-height: 1.7; }

/* ── PRICING PREVIEW ─────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--raised), var(--card));
  box-shadow: 0 0 0 1px var(--gold-dim), 0 20px 50px rgba(0,0,0,.5);
  position: relative;
}
.featured-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0a0800;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 14px; border-radius: 20px; white-space: nowrap;
}
.price-card:not(.featured):hover { border-color: rgba(245,166,35,0.2); }
.price-name { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--text-2); margin-bottom: 10px; }
.price-amount {
  font-family: var(--font-mono); font-size: 44px; font-weight: 500;
  color: var(--text-1); line-height: 1; margin-bottom: 4px;
}
.price-amount sup { font-size: 22px; vertical-align: super; color: var(--text-2); }
.price-period { font-size: 13px; color: var(--text-3); margin-bottom: 6px; }
.price-sites  { font-size: 13px; color: var(--gold); font-weight: 500; margin-bottom: 24px; }
.price-divider{ border: none; border-top: 1px solid var(--border); margin: 0 0 20px; }
.price-features { list-style: none; flex: 1; margin-bottom: 28px; }
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-2); padding: 5px 0;
}
.price-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.price-cta { margin-top: auto; }
.price-cta .btn-primary,
.price-cta .btn-secondary { width: 100%; justify-content: center; padding: 12px; }

/* ── PRICING TOGGLE ───────────────────────────────────── */
.pricing-toggle {
  display: flex; justify-content: center; gap: 0; margin-bottom: 40px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 4px; width: fit-content; margin-inline: auto;
}
.ptoggle-btn {
  background: transparent; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--text-3); padding: 9px 24px; border-radius: 7px;
  transition: background .18s, color .18s;
}
.ptoggle-btn.active {
  background: var(--gold); color: #0a0800; font-weight: 600;
}
.ptoggle-btn:not(.active):hover { color: var(--text-1); }

/* ── PRICING PANELS ───────────────────────────────────── */
.pricing-panel { }
.pricing-panel.hidden { display: none; }

/* ── EXTENDED SUPPORT CALLOUT ───────────────���─────────── */
.extended-support-callout {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 28px 32px; margin-top: 24px;
  border-left: 3px solid var(--gold);
}
.es-title {
  font-family: var(--font-head); font-size: 17px; font-weight: 600;
  color: var(--text-1); margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.es-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; background: var(--gold-dim);
  color: var(--gold); padding: 2px 8px; border-radius: 10px;
}
.es-desc { font-size: 13.5px; color: var(--text-3); max-width: 580px; line-height: 1.6; }
.es-left { flex: 1; min-width: 260px; }
.es-right {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.es-price {
  font-family: var(--font-mono); font-size: 36px; font-weight: 500;
  color: var(--text-1); line-height: 1;
}
.es-price sup { font-size: 18px; vertical-align: super; color: var(--text-2); }
.es-price span { font-size: 14px; color: var(--text-3); }
.es-right .btn-secondary { padding: 10px 24px; white-space: nowrap; }

/* ── ENTERPRISE CALLOUT ───────────────────────────────── */
.enterprise-callout {
  display: flex; align-items: flex-start; gap: 24px;
  background: linear-gradient(135deg, #0d1420 0%, #111827 100%);
  border: 1px solid #1e3a5f;
  border-radius: var(--rl); padding: 32px 36px;
  margin-top: 40px; flex-wrap: wrap;
}
.ent-shield { font-size: 36px; line-height: 1; margin-top: 2px; }
.ent-body { flex: 1; min-width: 260px; }
.ent-title {
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--text-1); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.ent-title::after {
  content: "Custom Pricing"; font-size: 11px; font-weight: 600;
  background: #1e3a5f; color: #58a6ff; border-radius: 4px;
  padding: 2px 8px; letter-spacing: .04em; font-family: var(--font-body);
}
.ent-desc { font-size: 13.5px; color: var(--text-3); line-height: 1.65; max-width: 560px; }
.ent-features {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.ent-features span {
  font-size: 12px; color: #58a6ff; background: rgba(88,166,255,.08);
  border: 1px solid rgba(88,166,255,.2); border-radius: 4px; padding: 4px 10px;
}
.ent-cta {
  display: flex; flex-direction: column; align-items: flex-end;
  justify-content: center; gap: 10px; min-width: 160px;
}
.ent-note { font-size: 12px; color: var(--text-3); text-align: right; }

/* ── COMPARISON TABLE ─────────────────────────────────── */
.comp-table {
  width: 100%; border-collapse: collapse;
  background: var(--card); border-radius: var(--rl);
  overflow: hidden;
}
.comp-table th {
  padding: 16px 24px; font-family: var(--font-head);
  font-size: 14px; font-weight: 700; text-align: left;
  background: var(--raised); border-bottom: 1px solid var(--border);
}
.comp-table th.col-moat { color: var(--gold); }
.comp-table td {
  padding: 14px 24px; font-size: 14px; color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: rgba(255,255,255,0.02); }
.comp-table td.col-moat { color: var(--text-1); font-weight: 500; }
.tick-yes { color: var(--gold); font-size: 16px; }
.tick-no  { color: var(--text-3); font-size: 16px; }
.tick-part{ color: var(--text-2); font-size: 13px; }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-head); font-size: 17px; font-weight: 600;
  color: var(--text-1); transition: color .15s; gap: 20px;
}
.faq-question:hover { color: var(--gold); }
.faq-arrow {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1px solid var(--border-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s, border-color .15s;
  font-size: 12px; color: var(--text-2);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); border-color: var(--gold); color: var(--gold); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  font-size: 15px; color: var(--text-2); line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }

/* ── CTA BANNER ───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--raised) 0%, var(--surface) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.06), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 28px 24px;
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testi-quote { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid rgba(245,166,35,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; color: var(--gold); font-size: 13px;
}
.testi-name { font-weight: 600; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--text-3); }

/* ── ENQUIRY FORM ─────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start;
}
.form-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 40px;
}
.form-section-title {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; margin-top: 28px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.form-section-title:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--text-2); margin-bottom: 7px;
}
.form-label span { color: var(--text-3); font-weight: 400; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--raised);
  border: 1px solid var(--border-2); border-radius: var(--r);
  color: var(--text-1); padding: 10px 14px;
  font-size: 14px; font-family: var(--font-body); outline: none;
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-3); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238899bb' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-select option { background: var(--raised); }

/* Checkbox groups */
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.checkbox-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--raised); border: 1px solid var(--border);
  border-radius: var(--r); cursor: pointer;
  transition: border-color .15s, background .15s;
  font-size: 13.5px; color: var(--text-2);
}
.checkbox-item:hover { border-color: var(--border-2); color: var(--text-1); }
.checkbox-item input { accent-color: var(--gold); cursor: pointer; }
.checkbox-item:has(input:checked) {
  border-color: rgba(245,166,35,0.4);
  background: var(--gold-dim);
  color: var(--text-1);
}

/* Radio groups */
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--raised); border: 1px solid var(--border);
  border-radius: var(--r); cursor: pointer;
  transition: border-color .15s;
  font-size: 13.5px; color: var(--text-2);
}
.radio-item:hover { border-color: var(--border-2); color: var(--text-1); }
.radio-item input { accent-color: var(--gold); cursor: pointer; }
.radio-item:has(input:checked) {
  border-color: rgba(245,166,35,0.4);
  background: var(--gold-dim);
  color: var(--text-1);
}
.radio-item-featured {
  border-color: #1e3a5f;
  background: rgba(88,166,255,.04);
  color: var(--text-1); font-weight: 500;
}
.radio-item-featured:hover { border-color: #58a6ff; }
.radio-item-featured:has(input:checked) {
  border-color: rgba(88,166,255,.5);
  background: rgba(88,166,255,.08);
}

/* Contact sidebar */
.contact-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.contact-info-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--rl); padding: 28px 24px; margin-bottom: 20px;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--gold-dim); border: 1px solid rgba(245,166,35,0.25);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 15px;
}
.ci-label { font-size: 11px; color: var(--text-3); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 1px; }
.ci-value { font-size: 14px; color: var(--text-1); font-weight: 500; }
.ci-value a { color: var(--gold); text-decoration: none; }

/* Form success state */
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-head); font-size: 24px; margin-bottom: 8px; }
.form-success p { color: var(--text-2); font-size: 15px; }

/* ── PAGE HERO (inner pages) ──────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: var(--ink); position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--ink); border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline { font-size: 14px; color: var(--text-3); line-height: 1.6; max-width: 260px; }
.footer-col-title {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-3);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--text-2); text-decoration: none; transition: color .14s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: var(--text-3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: var(--text-3); text-decoration: none; }
.footer-legal a:hover { color: var(--text-2); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-visual      { display: none; }
  .features-grid    { grid-template-columns: repeat(2,1fr); }
  .contact-layout   { grid-template-columns: 1fr; }
  .contact-sidebar  { position: static; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .pricing-grid     { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .testi-grid       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section          { padding: 64px 0; }
  .h-display        { font-size: 36px; }
  .h-section        { font-size: 28px; }
  .features-grid    { grid-template-columns: 1fr; }
  .hiw-grid         { grid-template-columns: 1fr; gap: 40px; }
  .hiw-grid::before { display: none; }
  .form-row         { grid-template-columns: 1fr; }
  .checkbox-grid    { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .testi-grid       { grid-template-columns: 1fr; }
  .stats-bar-inner  { gap: 28px; }
  .stat-sep         { display: none; }
  .nav-links        { display: none; }
  .nav-right        { display: none; }
  .nav-toggle       { display: flex; }
  .form-card        { padding: 24px; }
  .comp-table th:not(:first-child):not(.col-moat),
  .comp-table td:not(:first-child):not(.col-moat) { display: none; }
  .two-col-grid     { grid-template-columns: 1fr !important; gap: 40px !important; }
  .feat-card-inner  { display: block !important; }
  .feat-card-inner > div:first-child {
    float: left;
    margin-right: 16px;
    margin-bottom: 4px;
    line-height: 1;
  }
  .feat-card-inner::after { content: ''; display: table; clear: both; }
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--deep); border-bottom: 1px solid var(--border);
  padding: 20px 28px; z-index: 99;
  flex-direction: column; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { padding: 10px 0; border-bottom: 1px solid var(--border); }
.nav-mobile .btn-nav-gold { margin-top: 12px; text-align: center; justify-content: center; }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
