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

:root {
  --navy:    #0C1A2E;
  --navy2:   #132238;
  --blue:    #1D6FA4;
  --blue2:   #2B8FCE;
  --slate:   #334155;
  --gold:    #C9973A;
  --bg:      #FFFFFF;
  --bg2:     #F6F8FA;
  --bg3:     #EEF2F7;
  --text:    #111827;
  --muted:   #64748B;
  --border:  #E2E8F0;
  --radius:  12px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 28px; }

/* ── NAV ─────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; }
.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--slate);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a.active { font-weight: 700; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .18s;
  border: none;
  white-space: nowrap;
}
.btn-ghost {
  background: transparent;
  color: var(--slate);
}
.btn-ghost:hover { color: var(--navy); }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 1px 3px rgba(12,26,46,.2), 0 4px 12px rgba(12,26,46,.12);
}
.btn-primary:hover {
  background: var(--navy2);
  box-shadow: 0 2px 6px rgba(12,26,46,.25), 0 8px 20px rgba(12,26,46,.18);
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.btn-white:hover { background: #f8fafc; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }
.btn-lg { padding: 15px 30px; font-size: 15px; border-radius: 10px; }

/* ── HERO ────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(29,111,164,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,111,164,.08);
  border: 1px solid rgba(29,111,164,.18);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero-eyebrow span { width: 6px; height: 6px; background: var(--blue2); border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform: scale(1); } 50% { opacity:.5; transform: scale(.8); } }
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}
.hero-note svg { color: #22c55e; }
.hero-visual {
  position: relative;
}
.hero-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(12,26,46,.06), 0 1px 4px rgba(12,26,46,.04);
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hero-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.status-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
}
.status-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: pulse 2s infinite;
}
.sensor-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.sensor-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
}
.sensor-name { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--navy); }
.sensor-icon { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.sensor-icon.green { background: rgba(34,197,94,.1); color: #16a34a; }
.sensor-icon.blue  { background: rgba(29,111,164,.1); color: var(--blue); }
.sensor-icon.amber { background: rgba(201,151,58,.12); color: var(--gold); }
.sensor-status { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 5px; }
.sensor-status.ok { background: rgba(34,197,94,.1); color: #16a34a; }
.sensor-status.watch { background: rgba(201,151,58,.12); color: var(--gold); }
.ai-summary {
  background: linear-gradient(135deg, rgba(29,111,164,.06), rgba(29,111,164,.03));
  border: 1px solid rgba(29,111,164,.15);
  border-radius: 10px;
  padding: 14px;
}
.ai-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.ai-text { font-size: 13px; color: var(--slate); line-height: 1.55; }
.hero-float {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(12,26,46,.1);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.hero-float-icon {
  width: 38px; height: 38px; background: rgba(34,197,94,.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.hero-float-text { font-size: 12px; }
.hero-float-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.hero-float-text span { color: var(--muted); }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 56px;
}
.page-hero .section-eyebrow { margin-bottom: 12px; }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--blue); }
.page-hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── TRUST BAR ───────────────────────────────── */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
}
.trust-item svg { color: var(--blue); }

/* ── SECTIONS ────────────────────────────────── */
section { padding: 96px 0; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
h2.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 18px;
}
h2.section-title em { font-style: italic; color: var(--blue); }
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── HOW IT WORKS ────────────────────────────── */
.how-bg { background: var(--bg2); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.step-card:hover {
  box-shadow: 0 8px 32px rgba(12,26,46,.08);
  transform: translateY(-3px);
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
}
.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.step-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── PRODUCT ─────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.product-visual {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  box-shadow: 0 4px 32px rgba(12,26,46,.07);
}
.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  color: #16a34a;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.brain-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 28px;
  color: #fff;
  margin-bottom: 20px;
}
.brain-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.brain-box-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.brain-box-label { font-size: 11px; opacity: .6; text-transform: uppercase; letter-spacing: .08em; }
.brain-box-name { font-size: 15px; font-weight: 700; }
.brain-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.brain-stat {
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.brain-stat-val { font-size: 20px; font-weight: 700; font-family: 'Fraunces', serif; }
.brain-stat-lbl { font-size: 10px; opacity: .55; margin-top: 2px; text-transform: uppercase; letter-spacing: .06em; }
.inference-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
}
.inference-row + .inference-row { margin-top: 8px; }
.inference-label { font-weight: 500; color: var(--navy); }
.inference-val { font-weight: 600; color: var(--blue); font-size: 12px; }
.feature-list { display: flex; flex-direction: column; gap: 22px; margin-top: 40px; }
.feature-item { display: flex; gap: 16px; }
.feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(29,111,164,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-top: 2px;
}
.feature-item h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.feature-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── PRIVACY ─────────────────────────────────── */
.privacy-section {
  background: var(--navy);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.privacy-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29,111,164,.2) 0%, transparent 65%);
  pointer-events: none;
}
.privacy-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,151,58,.1) 0%, transparent 65%);
  pointer-events: none;
}
.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.privacy-eyebrow { color: rgba(255,255,255,.5); letter-spacing: .1em; text-transform: uppercase; font-size: 12px; font-weight: 700; margin-bottom: 16px; }
.privacy-grid h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.privacy-grid h2 em { color: #60a5fa; font-style: italic; }
.privacy-grid p { color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.75; margin-bottom: 36px; }
.privacy-pledges { display: flex; flex-direction: column; gap: 16px; }
.pledge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
}
.pledge-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.pledge h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.pledge p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.55; }
.privacy-quote {
  position: relative;
  padding: 40px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  z-index: 1;
}
.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 80px;
  color: rgba(255,255,255,.1);
  line-height: .8;
  margin-bottom: 16px;
}
.quote-text {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
  margin-bottom: 28px;
}
.quote-sub { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.6; }

/* ── PRICING ─────────────────────────────────── */
.pricing-bg { background: var(--bg2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.plan-card:hover {
  box-shadow: 0 12px 40px rgba(12,26,46,.1);
  transform: translateY(-4px);
}
.plan-card.featured {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; }
.plan-card.featured .plan-name { color: rgba(255,255,255,.55); }
.plan-price {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.plan-card.featured .plan-price { color: #fff; }
.plan-price sup { font-size: 22px; vertical-align: top; margin-top: 8px; }
.plan-price span { font-size: 16px; font-weight: 500; color: var(--muted); }
.plan-card.featured .plan-price span { color: rgba(255,255,255,.5); }
.plan-desc { font-size: 14px; color: var(--muted); margin: 12px 0 28px; line-height: 1.6; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,.65); }
.plan-divider { height: 1px; background: var(--border); margin: 24px 0; }
.plan-card.featured .plan-divider { background: rgba(255,255,255,.15); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--slate); }
.plan-card.featured .plan-features li { color: rgba(255,255,255,.85); }
.plan-features li svg { flex-shrink: 0; }
.plan-features li svg.check { color: #22c55e; }
.plan-card.featured .plan-features li svg.check { color: #86efac; }
.btn-plan {
  width: 100%;
  justify-content: center;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .18s;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--navy);
}
.btn-plan:hover { border-color: var(--navy); }
.plan-card.featured .btn-plan {
  background: #fff;
  color: var(--navy);
  border-color: transparent;
}
.plan-card.featured .btn-plan:hover { background: #f0f4f8; }

/* ── COMPARE TABLE ───────────────────────────── */
.compare-intro { text-align: center; margin-bottom: 48px; }
.compare-intro h3 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.compare-intro p { font-size: 15px; color: var(--muted); }
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(12,26,46,.05); }
.compare-table th { background: var(--bg2); padding: 16px 20px; text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); border-bottom: 1px solid var(--border); }
.compare-table td { padding: 14px 20px; font-size: 14px; color: var(--slate); border-bottom: 1px solid var(--border); vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--bg2); }
.compare-table td:first-child { font-weight: 600; color: var(--navy); }
.compare-table td.yes { color: #16a34a; font-weight: 700; }
.compare-table td.no  { color: #94a3b8; }
.compare-table td.nb  { color: var(--blue); font-weight: 700; }

/* ── FAQ ─────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ── CONTACT ─────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(29,111,164,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.contact-item h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-item p, .contact-item a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.6;
}
.contact-item a:hover { color: var(--blue); }
.contact-form {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .18s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, transform .18s;
}
.btn-submit:hover { background: var(--navy2); transform: translateY(-1px); }

/* ── CTA ─────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3558 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(29,111,164,.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
}
.cta-section h2 em { color: #93c5fd; font-style: italic; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,.65); margin-bottom: 36px; position: relative; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
.cta-note { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 16px; position: relative; }

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: #F1F4F8;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--slate); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .15s; }
.footer-col ul li a:hover { color: var(--navy); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--navy); }

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

@media (max-width: 900px) {
  .hero-grid, .product-grid, .privacy-grid, .contact-grid { grid-template-columns: 1fr; }
  .steps-grid, .pricing-grid, .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hero { padding: 64px 0 48px; }
  .hero-visual { display: none; }
  .trust-inner { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
}
