/* WPMobE marketing site — shared design system */

@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #eef3fb;
  --surface: #ffffff;
  --surface-alt: #f5f8fd;
  --text: #16213e;
  --muted: #5f7290;
  --border: #dde6f4;
  --border-soft: #e9eff9;
  --brand: #0b5fff;
  --brand-deep: #0a4fd8;
  --accent: #1e8cff;
  --accent-soft: #e6f0ff;
  --violet: #7c6fe0;
  --violet-soft: #ece9fb;
  --coral: #ef8b6f;
  --coral-soft: #fbeae3;
  --success: #15803d;
  --success-soft: #dcfce7;
  --danger: #dc2626;
  --danger-soft: #fee2e2;
  --shadow-sm: 0 4px 16px rgba(22, 33, 62, 0.06);
  --shadow-lg: 0 24px 55px rgba(22, 33, 62, 0.13);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --font: "Outfit", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Soft ambient hero backdrop behind every page — fixed + behind everything,
   purely decorative, no layout impact. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: #f7f9fd;
  background-image: url("../img/bg-hero.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

img { max-width: 100%; display: block; }

a { color: var(--brand); text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -0.005em;
  color: var(--text);
}
h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 600; }
p { color: var(--muted); line-height: 1.7; margin: 0 0 14px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--accent-soft);
  border: 1px solid #cfe0ff;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(11, 95, 255, 0.08);
}

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  box-shadow: 0 12px 24px rgba(11, 95, 255, 0.28);
}
.btn-primary:hover { box-shadow: 0 16px 30px rgba(11, 95, 255, 0.34); }
.btn-ghost {
  background: var(--surface);
  color: var(--brand-deep);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--brand); }
.btn-outline-invert {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-invert:hover { background: rgba(255,255,255,0.16); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 32px; font-size: 1.02rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 65px;
  width: auto;
}
.brand-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-play {
  position: absolute;
  right: -6px;
  bottom: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(11, 95, 255, 0.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.brand-play svg { margin-left: 1px; }
.brand-play:hover { transform: scale(1.1); box-shadow: 0 6px 14px rgba(11, 95, 255, 0.45); }

/* ---------- Intro video popup ---------- */
.watch-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: none;
  padding: 8px 4px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--text);
  cursor: pointer;
}
.watch-demo-link .play-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .15s ease, box-shadow .15s ease;
}
.watch-demo-link:hover .play-dot { transform: scale(1.08); box-shadow: var(--shadow-lg); }
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.video-modal.open { opacity: 1; pointer-events: auto; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 19, 38, 0.78);
  backdrop-filter: blur(4px);
}
.video-modal-panel {
  position: relative;
  width: 100%;
  max-width: 860px;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: scale(.96);
  transition: transform .2s ease;
}
.video-modal.open .video-modal-panel { transform: scale(1); }
.video-modal-panel video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(11, 19, 38, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-modal-close:hover { background: rgba(11, 19, 38, 0.75); }
@media (max-width: 720px) {
  .brand-logo { height: 46px; }
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 9px 14px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.main-nav a:hover { background: var(--accent-soft); color: var(--brand-deep); }
.main-nav a.active { color: var(--brand-deep); background: var(--accent-soft); }
.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 64px 0 40px; }
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
/* Hero headline uses the bold geometric sans (Outfit) instead of the
   site-wide Fraunces serif, to match the reference mock's font family. */
.hero h1 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero p.lead { font-size: 1.15rem; }
.hash-accent { color: var(--violet); }
.accent-gradient {
  background: linear-gradient(90deg, var(--brand), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-feature-chips {
  display: flex;
  gap: 22px;
  margin: 8px 0 32px;
  flex-wrap: wrap;
}
.hero-feature-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 88px;
}
.hero-feature-chip .chip-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.hero-feature-chip strong { font-size: 0.82rem; font-weight: 700; color: var(--text); line-height: 1.25; }
.hero-feature-chip span { font-size: 0.78rem; color: var(--muted); line-height: 1.25; }
.hero-art { position: relative; display: flex; justify-content: center; }
.hero-badges { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

/* store badges (self-drawn, not trademarked assets) */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0b1f3a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: transform .15s ease, background .15s ease;
  border: 1px solid rgba(255,255,255,0.08);
}
.store-badge:hover { transform: translateY(-2px); background: #132a4d; }
.store-badge small { display: block; font-size: 0.68rem; font-weight: 500; color: #b9c8de; }
.store-badge strong { display: block; font-size: 0.98rem; line-height: 1.1; color: #fff; }
.store-badge svg { flex-shrink: 0; }

/* ---------- Hero product shot ---------- */
.hero-shot {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(11, 31, 58, 0.18));
}

/* ---------- Logo strip ---------- */
.strip {
  padding: 30px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.strip-inner span { opacity: 0.75; }

/* ---------- Feature grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 0.94rem; }
/* Cycle icon-chip colors across a grid so it feels designed, not flat. */
.grid-3 .card:nth-child(3n+2) .icon-wrap, .grid-4 .card:nth-child(4n+2) .icon-wrap { background: var(--violet-soft); }
.grid-3 .card:nth-child(3n+2) .icon-wrap svg *, .grid-4 .card:nth-child(4n+2) .icon-wrap svg * { stroke: var(--violet); }
.grid-3 .card:nth-child(3n) .icon-wrap, .grid-4 .card:nth-child(4n+3) .icon-wrap { background: var(--coral-soft); }
.grid-3 .card:nth-child(3n) .icon-wrap svg *, .grid-4 .card:nth-child(4n+3) .icon-wrap svg * { stroke: var(--coral); }
.grid-4 .card:nth-child(4n) .icon-wrap { background: var(--success-soft); }
.grid-4 .card:nth-child(4n) .icon-wrap svg * { stroke: var(--success); }

/* ---------- Feature rows (alternating) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border-soft);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse .fr-media { order: 2; }
.feature-row.reverse .fr-copy { order: 1; }
.fr-copy .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.fr-copy ul { margin: 18px 0 0; padding: 0; list-style: none; }
.fr-copy ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-weight: 600;
  font-size: 0.94rem;
  margin-bottom: 10px;
}
.fr-copy ul li svg { flex-shrink: 0; margin-top: 2px; }
.fr-media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--surface-alt), var(--accent-soft));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
/* Decorative glow + ring behind the panel icon — skipped on real
   screenshots (.guide-figure) so it never shows behind an <img>. */
.fr-media:not(.guide-figure)::before,
.fr-media:not(.guide-figure)::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.fr-media:not(.guide-figure)::before {
  width: 230px; height: 230px;
  background: radial-gradient(circle, rgba(11, 95, 255, 0.16), transparent 72%);
}
.fr-media:not(.guide-figure)::after {
  width: 160px; height: 160px;
  border: 1.5px dashed rgba(11, 95, 255, 0.22);
}
.fr-media svg {
  position: relative;
  width: 84px !important;
  height: 84px !important;
  filter: drop-shadow(0 12px 20px rgba(22, 33, 62, 0.16));
}
/* Cycle the accent through blue / violet / coral across repeated rows
   so a long alternating list doesn't read as one flat color. */
.feature-row:nth-of-type(3n+2) .fr-media { background: linear-gradient(155deg, var(--surface-alt), var(--violet-soft)); }
.feature-row:nth-of-type(3n+2) .fr-media::before { background: radial-gradient(circle, rgba(124, 111, 224, 0.18), transparent 72%); }
.feature-row:nth-of-type(3n+2) .fr-media::after { border-color: rgba(124, 111, 224, 0.28); }
.feature-row:nth-of-type(3n+2) .fr-media svg * { stroke: var(--violet); }
.feature-row:nth-of-type(3n) .fr-media { background: linear-gradient(155deg, var(--surface-alt), var(--coral-soft)); }
.feature-row:nth-of-type(3n) .fr-media::before { background: radial-gradient(circle, rgba(239, 139, 111, 0.2), transparent 72%); }
.feature-row:nth-of-type(3n) .fr-media::after { border-color: rgba(239, 139, 111, 0.3); }
.feature-row:nth-of-type(3n) .fr-media svg * { stroke: var(--coral); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 8px 18px rgba(11,95,255,0.28);
}

/* ---------- Billing toggle ---------- */
.billing-toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  margin: 0 auto 40px;
}
.billing-toggle button {
  border: none;
  background: transparent;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
}
.billing-toggle button.active {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
}
.billing-toggle-wrap { display: flex; justify-content: center; }
.save-chip {
  display: inline-block;
  background: var(--success-soft);
  color: var(--success);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ---------- Pricing ---------- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card.featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.plan-ribbon {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(11,95,255,0.3);
}
.plan-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.plan-tagline { font-size: 0.88rem; margin-bottom: 18px; }
.plan-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.plan-price span { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.plan-price-actual { font-size: 0.88rem; color: var(--muted); text-decoration: line-through; margin-bottom: 18px; }
.plan-features { list-style: none; padding: 0; margin: 22px 0 26px; flex: 1; }
.plan-features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.9rem; color: var(--text); font-weight: 600;
  margin-bottom: 12px;
}
.plan-features li svg { flex-shrink: 0; margin-top: 3px; }

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border-soft); background: var(--surface); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare th, table.compare td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.92rem;
}
table.compare th:first-child, table.compare td:first-child { text-align: left; font-weight: 600; color: var(--text); }
table.compare thead th { background: var(--surface-alt); font-weight: 700; color: var(--text); }
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare .yes { color: var(--success); font-weight: 700; }
table.compare .no { color: var(--border); font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0b1f3a, #0a4fd8 55%, #7c6fe0);
  color: #fff;
  padding: 64px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 460px; margin-bottom: 0; }

/* ---------- Testimonials / values ---------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.quote-card p { color: var(--text); font-size: 1rem; }
.quote-avatar { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.quote-avatar .dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; color: var(--text); }
.field { margin-bottom: 18px; }
input[type=text], input[type=email], input[type=tel], textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
}
textarea { resize: vertical; min-height: 130px; }
input:focus, textarea:focus, select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.flash-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.flash-msg.success { background: var(--success-soft); color: var(--success); border: 1px solid #b7ebc6; }
.flash-msg.error { background: var(--danger-soft); color: var(--danger); border: 1px solid #f6b8b8; }

.contact-info-list { list-style: none; padding: 0; margin: 0; }
.contact-info-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .icon-wrap {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-list strong { display: block; color: var(--text); font-size: 0.94rem; }
.contact-info-list span { color: var(--muted); font-size: 0.88rem; }

/* ---------- Legal pages ---------- */
.legal-shell { max-width: 820px; margin: 0 auto; }
.legal-shell h2 { margin-top: 42px; font-size: 1.35rem; }
.legal-shell h2:first-of-type { margin-top: 0; }
.legal-shell p, .legal-shell li { color: var(--muted); font-size: 0.98rem; }
.legal-shell ul { padding-left: 22px; }
.legal-updated {
  display: inline-block;
  background: var(--surface-alt);
  border: 1px solid var(--border-soft);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 26px;
}
.legal-toc {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 40px;
}
.legal-toc strong { display: block; margin-bottom: 10px; font-size: 0.9rem; }
.legal-toc ol { margin: 0; padding-left: 20px; columns: 2; gap: 24px; }
.legal-toc a { font-size: 0.9rem; color: var(--text); font-weight: 600; }
.legal-toc a:hover { color: var(--brand); }

/* ---------- About page ---------- */
.about-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.value-card { text-align: center; padding: 30px 22px; }
.value-card .icon-wrap { margin: 0 auto 16px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border-soft); background: var(--surface); padding: 60px 0 28px; margin-top: 60px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand p { max-width: 280px; font-size: 0.9rem; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--muted); font-size: 0.92rem; font-weight: 500; }
.footer-col a:hover { color: var(--brand); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface-alt); border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}
.footer-social a:hover { color: var(--brand); border-color: var(--brand); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: var(--muted); }
.footer-bottom-links a:hover { color: var(--brand); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 68px 0 24px; text-align: center; }
.page-hero::before {
  content: "";
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 520px; height: 320px;
  background: radial-gradient(ellipse, rgba(11, 95, 255, 0.14), transparent 68%);
  filter: blur(4px);
  z-index: -1;
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { max-width: 760px; margin-left: auto; margin-right: auto; }
.page-hero p { max-width: 620px; margin: 0 auto; font-size: 1.08rem; }
.page-hero > .container { position: relative; z-index: 1; }

/* ---------- Floating decorative icon chips ---------- */
.floaters { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.floater {
  position: absolute;
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatBob 7s ease-in-out infinite;
}
.floater.f1 { top: 14%; left: 5%; animation-duration: 7s; }
.floater.f2 { top: 60%; left: 9%; animation-duration: 8.5s; animation-delay: 1.1s; }
.floater.f3 { top: 22%; right: 6%; animation-duration: 6.5s; animation-delay: .5s; }
.floater.f4 { top: 68%; right: 10%; animation-duration: 7.5s; animation-delay: 1.6s; }
.floater.f5 { top: 42%; right: 20%; width: 36px; height: 36px; border-radius: 11px; animation-duration: 9s; animation-delay: .8s; }
@keyframes floatBob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-16px) rotate(4deg); }
}
@media (max-width: 980px) {
  .floaters { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan-card.featured { transform: none; }
  .feature-row, .about-hero { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .fr-media, .feature-row.reverse .fr-copy { order: initial; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .page-hero::before { width: 92vw; height: 220px; }
  .main-nav, .header-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-lg);
  }
  .site-header.nav-open .main-nav a { padding: 12px 10px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 26px; text-align: center; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .legal-toc ol { columns: 1; }
  .compare-wrap table.compare { min-width: 560px; }
  .guide-steps .feature-row { padding: 40px 0; }
}

/* ---------- Guide pages (numbered walkthroughs with screenshots) ---------- */
.guide-steps .feature-row { align-items: start; }
.guide-steps .step-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--brand-deep);
  background: var(--accent-soft);
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 14px;
}
.guide-figure {
  background: linear-gradient(155deg, var(--surface-alt), var(--accent-soft));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 18px;
  margin: 0;
  flex-direction: column;
}
.guide-figure img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
/* Flush variant — for the 3D-rendered marketing shots, which already
   carry their own soft background/shadow. No extra card frame around
   them, so nothing "doubles up" with the shadow baked into the art. */
.guide-figure.flush {
  background: none;
  border: none;
  padding: 0;
  min-height: 0;
}
.guide-figure.flush img { border: none; }
.guide-figure figcaption {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

.callout {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  margin: 28px 0;
}
.callout .icon-wrap { flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 0; }
.callout h4 { margin: 0 0 4px; font-size: 0.98rem; }
.callout p { margin: 0; font-size: 0.9rem; color: var(--muted); }
.callout p + p { margin-top: 6px; }
.callout-tip .icon-wrap { background: var(--success-soft); }
.callout-tip h4 { color: var(--success); }
.callout-warn .icon-wrap { background: var(--danger-soft); }
.callout-warn h4 { color: var(--danger); }

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 { margin: 0 0 8px; font-size: 1rem; }
.faq-item p { margin: 0; font-size: 0.92rem; color: var(--muted); }
