/* ─── DESIGN TOKENS ─────────────────────────────────────────────────────── */
:root {
  --navy:   #0A1F44;
  --blue:   #1E6BFF;
  --green:  #00C87F;
  --red:    #FF4D6A;
  --card:   #161D2E;
  --card2:  #1C2540;
  --border: #1E2D4A;
  --text:   #E8EDFB;
  --muted:  #6B7A9E;
}

/* ─── RESET & BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────────── */
.section-label {
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 52px;
}

/* ─── LAYOUT ─────────────────────────────────────────────────────────────── */
.inner { max-width: 1100px; margin: 0 auto; padding: 0 5%; }

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes count-up { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ─── NAV ────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
#nav.scrolled {
  background: rgba(10,31,68,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo span {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-cta {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #3d7fff; transform: translateY(-1px); }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(30,107,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0,200,127,0.06) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.hero-text { max-width: 600px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,107,255,0.12);
  border: 1px solid rgba(30,107,255,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #7BA9FF;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2.5px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text) 0%, #7BA9FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #3d7fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30,107,255,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 14px 28px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* Trust badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-badge {
  background: rgba(0,200,127,0.08);
  border: 1px solid rgba(0,200,127,0.2);
  color: var(--green);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

/* Phone mockup */
.hero-phone {
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
}
.glow-ring {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,107,255,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.glow-ring.small {
  width: 300px; height: 300px;
}
.glow-ring.green {
  background: radial-gradient(circle, rgba(0,200,127,0.12) 0%, transparent 70%);
}

/* Hero phone frame — sized to screenshot aspect ratio 660×1434 */
.phone-frame {
  width: 260px;
  height: 565px; /* 260 * (1434/660) */
  background: #0d1526;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.14);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.phone-frame.small {
  width: 230px;
  height: 500px; /* 230 * 2.17 */
  border-radius: 38px;
  animation: none;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 26px;
  background: rgba(0,0,0,0.7);
  border-radius: 20px;
  z-index: 10;
}
.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  background: #0d1526;
}

/* ─── PROBLEM STRIP ──────────────────────────────────────────────────────── */
.problems {
  padding: 56px 5%;
  background: rgba(22,29,46,0.4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problems-inner { max-width: 1100px; margin: 0 auto; }
.problems-label {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.problem-card {
  background: rgba(255,77,106,0.06);
  border: 1px solid rgba(255,77,106,0.15);
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
}
.problem-x { font-size: 20px; color: var(--red); margin-bottom: 8px; font-weight: 700; }
.problem-text { font-size: 14px; color: var(--muted); line-height: 1.5; }
.problem-text small { display: block; font-size: 12px; margin-top: 4px; }
.solution-bar {
  background: rgba(0,200,127,0.08);
  border: 1px solid rgba(0,200,127,0.22);
  padding: 18px 28px;
  border-radius: 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  line-height: 1.5;
}

/* ─── FEATURES ZIGZAG ───────────────────────────────────────────────────── */
.features { padding: 96px 5%; }
.features-inner { max-width: 1100px; margin: 0 auto; }

.feature-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}
.feature-row:last-child { margin-bottom: 0; }

.feature-row-phone {
  position: relative;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.feature-row-text { max-width: 100%; }

.feature-row-number {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -3px;
  color: rgba(30,107,255,0.12);
  line-height: 1;
  margin-bottom: 4px;
}

.feature-row-text h3 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--text);
}

.feature-row-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-pill {
  background: rgba(30,107,255,0.1);
  border: 1px solid rgba(30,107,255,0.2);
  color: #7BA9FF;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

.feature-pill.pro {
  background: rgba(0,200,127,0.1);
  border-color: rgba(0,200,127,0.25);
  color: var(--green);
}

/* ─── HIGHLIGHTS GRID ───────────────────────────────────────────────────── */
.highlights {
  padding: 80px 5%;
  background: rgba(22,29,46,0.3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.highlights-inner { max-width: 1100px; margin: 0 auto; }
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 12px;
}
.highlight-card {
  background: rgba(22,29,46,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,107,255,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.highlight-icon { font-size: 28px; margin-bottom: 12px; }
.highlight-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.highlight-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── SCREENSHOTS ────────────────────────────────────────────────────────── */
.screenshots {
  padding: 96px 5%;
  background: rgba(22,29,46,0.3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.screenshots-inner { max-width: 1100px; margin: 0 auto; }
.carousel-wrap { position: relative; }
.screens-track-outer {
  overflow: hidden;
  width: 300px;
  margin: 0 auto;
  padding-bottom: 4px;
}
.screens-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.screen-item { flex: 0 0 300px; text-align: center; }
/* Carousel phone frame — sized to screenshot aspect ratio 660×1434 */
.screen-phone-frame {
  width: 300px;
  height: 652px; /* 300 * (1434/660) = 651.8 */
  background: #0d1526;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.14);
  box-shadow:
    0 32px 64px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.screen-item:hover .screen-phone-frame {
  transform: translateY(-4px);
  box-shadow: 0 40px 72px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.07);
}
.screen-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 26px;
  background: rgba(0,0,0,0.75);
  border-radius: 20px;
  z-index: 5;
}
.screen-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
  background: #0d1526;
}
.screen-label { font-size: 13px; color: var(--muted); font-weight: 500; }
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.carousel-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}
.carousel-btn:hover { background: rgba(30,107,255,0.15); border-color: rgba(30,107,255,0.3); }
.carousel-dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  border: none;
}
.dot.active { background: var(--blue); transform: scale(1.3); }

/* ─── PRICING ────────────────────────────────────────────────────────────── */
.pricing { padding: 96px 5%; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 52px; }
.pricing-header .section-sub { margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 20px;
}
.pricing-card {
  background: rgba(22,29,46,0.8);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 24px;
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow 0.3s;
}
.pricing-card.featured {
  border-color: rgba(30,107,255,0.5);
  background: rgba(30,107,255,0.07);
}
.pricing-card.featured:hover { box-shadow: 0 20px 60px rgba(30,107,255,0.2); }
.badge-best {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--navy);
  padding: 4px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-name { font-size: 14px; color: var(--muted); font-weight: 500; margin-bottom: 12px; }
.pricing-price { font-size: 44px; font-weight: 900; letter-spacing: -2px; margin-bottom: 4px; line-height: 1; }
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--muted); }
.pricing-saving { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 24px; }
.pricing-saving.dim { color: var(--muted); }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  font-size: 14px;
  color: var(--muted);
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(30,45,74,0.5);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 13px; flex-shrink: 0; }
.btn-pricing {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
  display: block;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-pricing.primary { background: var(--blue); color: #fff; }
.btn-pricing.primary:hover { background: #3d7fff; transform: translateY(-1px); }
.btn-pricing.outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-pricing.outline:hover { border-color: var(--blue); color: var(--blue); }
.pricing-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 16px; }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq {
  padding: 80px 5%;
  border-top: 1px solid var(--border);
}
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-inner .section-label,
.faq-inner .section-title { text-align: center; }
.faq-inner .section-title { margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: rgba(22,29,46,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(30,107,255,0.4); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-question:hover { color: #7BA9FF; }
.faq-chevron {
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--muted);
  display: inline-block;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ─── SOCIAL PROOF ───────────────────────────────────────────────────────── */
.proof { padding: 80px 5%; }
.proof-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(22,29,46,0.8);
  border: 1px solid var(--border);
  padding: 12px 26px;
  border-radius: 100px;
  margin-bottom: 48px;
  font-size: 15px;
  font-weight: 600;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.stars { color: #FFB800; letter-spacing: 2px; }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.review-card {
  background: rgba(22,29,46,0.8);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 20px;
  text-align: left;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s, border-color 0.3s;
}
.review-card:hover { transform: translateY(-3px); border-color: rgba(30,107,255,0.2); }
.review-stars { color: #FFB800; font-size: 13px; margin-bottom: 12px; letter-spacing: 1px; }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 600; color: var(--text); }

/* ─── FINAL CTA ──────────────────────────────────────────────────────────── */
.final-cta {
  padding: 100px 5%;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(30,107,255,0.1) 0%, transparent 70%);
  border-top: 1px solid var(--border);
}
.final-cta h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.final-cta p { font-size: 17px; color: var(--muted); margin-bottom: 36px; }
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text);
  color: var(--navy);
  padding: 14px 30px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.app-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.15);
}
.app-store-btn svg { width: 24px; height: 24px; flex-shrink: 0; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  padding: 48px 5% 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  text-decoration: none;
}
.footer-brand span { font-size: 16px; font-weight: 700; color: var(--text); }
.footer-tagline { font-size: 13px; color: var(--muted); max-width: 240px; line-height: 1.5; }
.footer-right { display: flex; flex-direction: column; gap: 16px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
}
.social-btn:hover {
  background: rgba(30,107,255,0.15);
  border-color: rgba(30,107,255,0.3);
}
.footer-bottom {
  font-size: 13px;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}
.footer-legal {
  font-size: 11px;
  color: rgba(107,122,158,0.6);
  display: block;
  margin-top: 6px;
}

/* ─── LEGAL PAGES ────────────────────────────────────────────────────────── */
.legal-hero {
  padding: 120px 5% 60px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(30,107,255,0.08) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.legal-meta { font-size: 14px; color: var(--muted); }
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 5% 80px;
}
.legal-body h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 14px;
  color: var(--text);
  letter-spacing: -0.3px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-body a { color: var(--blue); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }

/* ─── DOWNLOAD PAGE ──────────────────────────────────────────────────────── */
.download-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 5%;
}
.download-inner { max-width: 400px; width: 100%; }
.download-inner h1 { font-size: 28px; font-weight: 800; margin: 20px 0 10px; }
.download-inner p { font-size: 16px; color: var(--muted); margin-bottom: 28px; }
.spinner {
  width: 36px; height: 36px;
  border: 3px solid rgba(30,107,255,0.2);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── RESPONSIVE: TABLET & DESKTOP ──────────────────────────────────────── */
@media (min-width: 640px) {
  .problems-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .hero-content { flex-direction: row; align-items: center; gap: 60px; }
  .hero-text { flex: 1; }
  .hero-phone { flex: 0 0 auto; display: flex; }

  /* Larger hero phone on desktop */
  .phone-frame {
    width: 360px;
    height: 782px; /* 360 * 2.17 */
    border-radius: 54px;
  }
  .phone-frame.small {
    width: 270px;
    height: 587px; /* 270 * 2.17 */
    border-radius: 44px;
  }
  .glow-ring { width: 500px; height: 500px; }
  .glow-ring.small { width: 340px; height: 340px; }

  /* Feature zigzag — side by side */
  .feature-row {
    flex-direction: row;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
  }
  .feature-row.reverse { flex-direction: row-reverse; }
  .feature-row-phone { flex: 0 0 auto; }
  .feature-row-text { flex: 1; max-width: 480px; }

  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer-right { align-items: flex-end; }
}

@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); max-width: 960px; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
}
