:root {
  --bg: #f7f8fc;
  --bg2: #eef1f8;
  --surface: #ffffff;
  --border: #e2e8f4;
  --border2: #c8d0df;
  --navy: #0a1e3d;
  --navy-mid: #112d5a;
  --navy-light: #1a3f7a;
  --navy-pale: #edf2fb;
  --navy-glow: rgba(10, 30, 61, 0.18);
  --accent: #3b6cf5;
  --accent-dark: #2b54d4;
  --accent-pale: #edf2ff;
  --cyan: #0ea5e9;
  --cyan-pale: #e0f5fe;
  --orange: #e8590c;
  --orange-pale: #fff4ed;
  --green: #16a34a;
  --green-pale: #ecfdf5;
  --red: #dc2626;
  --red-pale: #fef2f2;
  --purple: #7c3aed;
  --purple-pale: #f3f0ff;
  --text: #0a1628;
  --text-muted: #64748b;
  --text-dim: #475569;
  --font: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-text: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(10, 30, 61, 0.07);
  --shadow-lg: 0 12px 48px rgba(10, 30, 61, 0.10);
  --shadow-xl: 0 24px 64px rgba(10, 30, 61, 0.14);
  --gradient-hero: linear-gradient(135deg, #f7f8fc 0%, #edf2fb 40%, #e0f0ff 100%);
  --gradient-accent: linear-gradient(135deg, #3b6cf5, #0ea5e9);
  --gradient-cta: linear-gradient(135deg, #0a1e3d 0%, #112d5a 50%, #0c2340 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 64px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(226, 232, 244, 0.7);
  transition: box-shadow .3s, background .3s;
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(10, 30, 61, 0.06);
  background: rgba(255, 255, 255, 0.95);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-icon {
  width: 30px;
  height: 30px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: -0.1px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transition: width .25s ease;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-dl {
  background: var(--navy);
  border: none;
  color: white;
  padding: 9px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-text);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all .2s ease;
  letter-spacing: -0.1px;
  text-decoration: none;
  box-shadow: 0 2px 8px var(--navy-glow);
}

.btn-dl:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--navy-glow);
}

/* ===== HERO ===== */
.hero-section {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 108, 245, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 52px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  animation: fu .6s ease both;
  letter-spacing: 0.1px;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s infinite;
  box-shadow: 0 0 6px rgba(22, 163, 74, 0.4);
}

@keyframes blink {
  0%, 100% { opacity: 1 }
  50% { opacity: .2 }
}

@keyframes fu {
  from { opacity: 0; transform: translateY(18px) }
  to { opacity: 1; transform: translateY(0) }
}

.hero h1 {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.06;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
  animation: fu .6s .1s ease both;
  color: var(--text);
}

.hero h1 span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
  animation: fu .6s .2s ease both;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
  animation: fu .6s .3s ease both;
}

.btn-hero {
  background: var(--navy);
  border: none;
  color: white;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-text);
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 4px 16px var(--navy-glow);
  transition: all .25s ease;
  text-decoration: none;
  letter-spacing: -0.2px;
}

.btn-hero:hover {
  background: var(--navy-light);
  box-shadow: 0 8px 28px var(--navy-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: white;
  border: 1.5px solid var(--border);
  color: var(--text-dim);
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-text);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  letter-spacing: -0.1px;
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(59, 108, 245, 0.1);
  transform: translateY(-1px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fu .6s .4s ease both;
}

.avatars {
  display: flex;
}

.av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2.5px solid white;
  margin-left: -9px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.av:first-child {
  margin-left: 0;
}

.trust-txt {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: -0.1px;
}

.trust-txt strong {
  color: var(--text);
  font-weight: 700;
}

/* ===== PHONE ===== */
.hero-right {
  display: flex;
  justify-content: center;
  animation: fu .6s .16s ease both;
}

.phone-stack {
  position: relative;
  width: 260px;
  height: 510px;
}

.phone-back {
  position: absolute;
  width: 220px;
  height: 460px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 36px;
  top: 28px;
  left: 50%;
  transform: translateX(-50%) rotate(6deg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.phone {
  position: absolute;
  width: 228px;
  height: 476px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(10, 30, 61, 0.16);
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.notch {
  width: 80px;
  height: 22px;
  background: #111;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.n-cam {
  width: 7px;
  height: 7px;
  background: #222;
  border-radius: 50%;
}

.n-mic {
  width: 20px;
  height: 4px;
  background: #222;
  border-radius: 3px;
}

.p-screen {
  padding: 11px;
  background: #f5f7fa;
  height: calc(100% - 22px);
  overflow: hidden;
}

.p-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9px;
}

.p-title {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: #0a1628;
  letter-spacing: -0.3px;
}

.p-ico-btn {
  width: 26px;
  height: 26px;
  background: var(--navy-pale);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.p-search {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
}

.p-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 8px 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.p-ico {
  width: 28px;
  height: 28px;
  background: var(--navy-pale);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.p-name {
  font-size: 11px;
  font-weight: 600;
  color: #0a1628;
  letter-spacing: -0.1px;
}

.p-sub {
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 1px;
}

.p-arr {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 12px;
}

.p-fab {
  position: absolute;
  bottom: 18px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  box-shadow: 0 4px 10px var(--navy-glow);
}

/* ===== SECTIONS ===== */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 52px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 5px 14px;
  background: var(--accent-pale);
  border-radius: 100px;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.08;
  margin-bottom: 14px;
  color: var(--text);
}

.section-sub {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.72;
  margin-bottom: 44px;
  max-width: 500px;
  font-weight: 400;
  letter-spacing: -0.1px;
}

/* ===== FEATURES GRID ===== */
.fg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fc {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.fc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity .3s;
}

.fc:hover {
  border-color: rgba(59, 108, 245, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.fc:hover::before {
  opacity: 1;
}

.fi {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.fi-b { background: var(--navy-pale); }
.fi-c { background: var(--cyan-pale); }
.fi-o { background: var(--orange-pale); }
.fi-g { background: var(--green-pale); }
.fi-p { background: var(--purple-pale); }
.fi-r { background: var(--red-pale); }

.ft {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  color: var(--text);
}

.fd {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 400;
}

/* ===== SPLIT LAYOUT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.si h3 {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--text);
}

.si p {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.72;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: -0.1px;
}

.bullets {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bul {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-dim);
  letter-spacing: -0.1px;
}

.bd {
  width: 5px;
  height: 5px;
  background: var(--navy);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== MOCKUP ===== */
.mk {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 45, 94, 0.08);
}

.mk-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mk-title {
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.mk-search {
  margin: 10px 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.1px;
}

.mk-item {
  margin: 4px 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color .15s;
  cursor: pointer;
}

.mk-item:hover {
  border-color: #c0cfea;
  background: var(--navy-pale);
}

.mk-ico {
  width: 32px;
  height: 32px;
  background: var(--navy-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.mk-name {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.mk-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

.mk-arr {
  margin-left: auto;
  color: var(--text-muted);
}

.mk-fab {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: white;
  box-shadow: 0 2px 8px var(--navy-glow);
  flex-shrink: 0;
}

/* ===== FORM MOCKUP ===== */
.fm {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 40px rgba(15, 45, 94, 0.08);
}

.fh {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
}

.fh-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.fh h4 {
  font-family: var(--font-text);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.fh p {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

.ff {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.ff-ico {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.fv {
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.1px;
}

.gps-row {
  display: flex;
  gap: 8px;
  margin-bottom: 7px;
}

.gps-btn {
  background: var(--orange);
  color: white;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 11.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(194, 65, 12, .2);
  letter-spacing: -0.1px;
}

.fsub {
  background: var(--navy);
  color: white;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 12px;
  cursor: pointer;
  box-shadow: 0 2px 10px var(--navy-glow);
  transition: all .15s;
  letter-spacing: -0.2px;
}

.fsub:hover {
  background: var(--navy-light);
}

/* ===== DASHBOARD ===== */
.dash-wrap {
  background: var(--bg2);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(15, 45, 94, 0.05);
}

.dash-bar {
  background: white;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.db-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.mc {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}

.mc-i { font-size: 17px; margin-bottom: 8px; }

.mc-v {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.mc-l {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
  letter-spacing: -0.1px;
}

.mc-c { font-size: 10px; margin-top: 4px; }
.cup { color: var(--green); }
.cdn { color: var(--red); }

/* ===== SETTINGS ===== */
.sm {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 40px rgba(15, 45, 94, 0.08);
}

.ss-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.ss-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ss-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.ss-v {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.ss-l {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 1px;
}

.sg-t {
  font-family: var(--font-text);
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: -0.1px;
}

.sg-s {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.s-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: border-color .15s;
}

.s-item:hover { border-color: #c0cfea; }

.s-ico {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.s-n {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.s-s {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 1px;
}

.s-a {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 13px;
}

/* ===== PRICING ===== */
.pg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 680px;
  margin: 0 auto;
}

.pc {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 34px;
  transition: all .3s ease;
  position: relative;
}

.pc:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 108, 245, 0.2);
  transform: translateY(-4px);
}

.pc.best {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-pale), white);
  box-shadow: 0 8px 36px rgba(59, 108, 245, 0.12);
}

.best-lbl {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: white;
  padding: 4px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(59, 108, 245, 0.25);
}

.pp {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 9px;
}

.pv {
  font-family: var(--font);
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3px;
  letter-spacing: -1.5px;
}

.pv sup { font-size: 18px; vertical-align: super; }

.pperiod {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.psave {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 24px;
  background: var(--green-pale);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
}

.pf { margin-bottom: 28px; }

.pf-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-dim);
  padding: 7px 0;
  border-bottom: 1px solid #f0f3f8;
  letter-spacing: -0.1px;
}

.pf-row:last-child { border-bottom: none; }
.ck { color: var(--green); font-weight: 700; }

.pb {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-text);
  border: none;
  transition: all .25s ease;
  letter-spacing: -0.2px;
}

.pb-o {
  background: white;
  border: 1.5px solid var(--border2) !important;
  color: var(--text-muted);
}

.pb-o:hover {
  border-color: var(--accent) !important;
  color: var(--accent);
  transform: translateY(-1px);
}

.pb-f {
  background: var(--navy);
  color: white;
  box-shadow: 0 4px 16px var(--navy-glow);
}

.pb-f:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--navy-glow);
}

/* ===== CTA ===== */
.cta {
  background: var(--gradient-cta);
  padding: 96px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 108, 245, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta h2 {
  font-family: var(--font);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  color: white;
  margin-bottom: 14px;
  position: relative;
}

.cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: -0.1px;
  position: relative;
}

.cta-acts {
  display: flex;
  gap: 14px;
  justify-content: center;
  position: relative;
}

.btn-cw {
  background: white;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--font-text);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .18);
  transition: all .25s ease;
  text-decoration: none;
  letter-spacing: -0.2px;
}

.btn-cw:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .25);
}

.btn-co {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .9);
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, .2);
  font-family: var(--font-text);
  transition: all .25s ease;
  letter-spacing: -0.1px;
  backdrop-filter: blur(8px);
}

.btn-co:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .35);
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
footer {
  background: #060e1e;
  padding: 36px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.fl {
  font-family: var(--font);
  font-weight: 700;
  font-size: 17px;
  color: white;
  letter-spacing: -0.3px;
}

.flinks {
  display: flex;
  gap: 22px;
}

.flinks a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: color .15s;
}

.flinks a:hover { color: rgba(255, 255, 255, .8); }

.fc2 {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
}

/* ===== UTILS ===== */
hr.div {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.stripe { background: var(--bg2); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(0.22, 1, 0.36, 1), transform .65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: .12s }
.d2 { transition-delay: .24s }
.d3 { transition-delay: .36s }


@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}

.dl-card {
  background: white;
  border-radius: 20px;
  padding: 44px 40px;
  text-align: center;
  max-width: 310px;
  width: 90%;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
  animation: slideUp .25s ease;
  border: 1px solid var(--border);
}

@keyframes slideUp {
  from { transform: translateY(16px); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}

.dl-spinner-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
}

.dl-spinner {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid #e8edf5;
  border-top-color: var(--navy);
  animation: spin 0.85s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.dl-spinner-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.dl-title {
  font-family: var(--font);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}

.dl-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  letter-spacing: -0.1px;
}

.dl-progress-bar {
  height: 4px;
  background: #e8edf5;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}

.dl-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--cyan));
  border-radius: 100px;
  width: 0%;
  transition: width 0.2s ease;
}

.dl-percent {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===== CONTACT POPUP ===== */
#contact-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(9, 22, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
}

#contact-overlay.show {
  display: flex;
  animation: fadeIn .2s ease;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 36px 36px 30px;
  max-width: 410px;
  width: 92%;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18);
  animation: slideUp .25s ease;
  position: relative;
  border: 1px solid var(--border);
}

.contact-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
  transition: all .15s;
}

.contact-close:hover {
  background: var(--red-pale);
  color: var(--red);
  border-color: #fecaca;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy-pale);
  border: 1px solid #c7d5ef;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.contact-title {
  font-family: var(--font);
  font-size: 23px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.contact-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  letter-spacing: -0.1px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 15px;
  margin-bottom: 9px;
  transition: all .15s;
  cursor: default;
}

.contact-item:hover {
  border-color: #c0cfea;
  background: var(--navy-pale);
}

.contact-ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.2px;
}

.contact-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}

.contact-plan-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  letter-spacing: -0.1px;
}

.contact-plan-note strong { color: var(--navy); }

/* ===== RESPONSIVE ===== */
@media(max-width:960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding: 56px 24px 48px;
  }

  .hero-right { display: none; }
  .split { grid-template-columns: 1fr; }
  .fg { grid-template-columns: 1fr 1fr; }

  .pg {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .section { padding: 72px 24px; }
  .dg { grid-template-columns: 1fr 1fr; }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 32px 24px;
  }

  .cta { padding: 72px 24px; }
  .cta h2 { font-size: 30px; }
}

@media(max-width:540px) {
  .fg { grid-template-columns: 1fr; }
  .ss-row { grid-template-columns: 1fr; }
  .dl-card { padding: 36px 22px; }
  .contact-card { padding: 28px 20px 24px; }
  .hero h1 { font-size: 30px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .cta-acts { flex-direction: column; align-items: center; }
}