:root {
  --accent: #F97316;
  --accent-hover: #EA580C;
  --bg-light: #F8FAFC;
  --bg-light-2: #EFF3F8;
  --bg-dark: #0F172A;
  --bg-dark-footer: #0B1220;
  --card-dark: #1E293B;
  --border-dark: #334155;
  --border-light: #E2E8F0;
  --text-heading: #0F172A;
  --text-body-1: #475569;
  --text-body-2: #64748B;
  --text-body-3: #94A3B8;
  --text-nav: #334155;
  --footer-copy: #475569;
}

@keyframes scanline {
  0%   { top: 8%; }
  50%  { top: 88%; }
  100% { top: 8%; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%      { opacity: 0.05; transform: scale(1.6); }
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--bg-light);
  color: var(--text-heading);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

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

h1, h2, h3 { margin: 0; font-family: 'Manrope', sans-serif; }

section { display: flex; flex-direction: column; gap: 56px; padding: 110px 64px; }

.section-light { background: var(--bg-light); }
.section-dark { background: var(--bg-dark); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  align-items: center;
}

.section-head h2 { font-weight: 700; font-size: 42px; color: var(--text-heading); }
.section-head h2.light { color: #F8FAFC; }

.section-sub { font-size: 20px; color: var(--text-body-1); max-width: 820px; margin: 0; }
.section-sub.light { color: var(--text-body-3); }

.light { color: #F8FAFC; }

/* Buttons */
.btn {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 100px;
  padding: 12px 26px;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.btn-lg { font-size: 18px; padding: 18px 36px; }

.btn-primary { background: var(--accent); color: #FFFFFF; }
.btn-primary:hover { background: var(--accent-hover); color: #FFFFFF; }

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-heading);
  border: 1px solid #CBD5E1;
}
.btn-secondary:hover { color: var(--text-heading); }

.btn-block { width: 100%; padding: 16px; font-size: 17px; }

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
}

.logo { height: 34px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-nav);
}
.nav-links a:hover { color: var(--accent); }

/* Hero */
.hero {
  align-items: center;
  text-align: center;
  gap: 32px;
  padding: 120px 64px 90px;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-light-2) 100%);
}

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  font-weight: 800;
  font-size: 64px;
  line-height: 1.08;
  color: var(--text-heading);
  max-width: 1000px;
}

.hero-sub {
  font-size: 22px;
  color: var(--text-body-1);
  max-width: 760px;
  line-height: 1.5;
  margin: 0;
}

.hero-ctas { display: flex; gap: 20px; margin-top: 8px; }

.hero-stats {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 12px 26px;
}
.stat-num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 20px; color: var(--text-heading); }
.stat-label { font-size: 16px; color: var(--text-body-2); }

/* Problem */
.problem-cards {
  display: flex;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.card-dark {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 40px;
}

.card-dark h3 { font-weight: 700; font-size: 22px; }
.card-body { font-size: 17px; color: var(--text-body-3); line-height: 1.5; margin: 0; }

/* How it works */
.steps-row {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.step-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 18px;
}

.step-card-active { background: var(--accent); border: none; }

.step-num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 24px; color: var(--accent); }
.step-num.light { color: #FFFFFF; }
.step-title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 18px; color: var(--text-heading); }
.step-title.light { color: #FFFFFF; }
.step-arrow { flex-shrink: 0; }

/* Demo */
.demo-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  flex-wrap: wrap;
}

.phone {
  width: 300px;
  height: 600px;
  flex-shrink: 0;
  background: var(--card-dark);
  border: 10px solid var(--border-dark);
  border-radius: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 26px;
  background: var(--border-dark);
  border-radius: 0 0 16px 16px;
  z-index: 5;
}

.phone-panel {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--bg-light);
  padding: 40px;
  text-align: center;
}

.phone-panel.is-active { display: flex; }
.phone-panel-dark { background: var(--bg-dark); }

.pack-card {
  width: 150px;
  height: 190px;
  background: #FFFFFF;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.pack-label { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 15px; color: var(--accent); }

.qr {
  width: 52px;
  height: 52px;
  border: 2px solid var(--text-heading);
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  padding: 6px;
}
.qr-cell.on { background: var(--text-heading); }
.qr-scan { border-color: #F8FAFC; }
.qr-scan .qr-cell.on { background: #F8FAFC; }

.phone-title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 19px; color: var(--text-heading); }
.phone-title.light { color: #F8FAFC; }
.phone-title-lg { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 26px; color: var(--text-heading); }

.phone-caption { font-size: 14px; color: var(--text-body-2); }
.phone-caption.dark { color: var(--text-body-3); }

.scan-frame {
  width: 170px;
  height: 170px;
  border: 2px solid rgba(249, 115, 22, 0.5);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  top: 8%;
  animation: scanline 1.6s ease-in-out infinite;
}

.check-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.claim-btn {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #FFFFFF;
  background: var(--text-heading);
  padding: 12px 22px;
  border-radius: 100px;
  margin-top: 6px;
}

.pulse-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s ease-out infinite;
}
.pulse-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--accent); }

.demo-copy { display: flex; flex-direction: column; gap: 36px; max-width: 420px; }
.demo-text { display: flex; flex-direction: column; gap: 14px; }

.demo-step-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.demo-step-title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 28px; color: #F8FAFC; }
.demo-step-body { font-size: 18px; color: var(--text-body-3); line-height: 1.5; }

.demo-controls { display: flex; align-items: center; gap: 14px; }

.round-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}
.round-btn-dark { background: var(--card-dark); border: 1px solid var(--border-dark); }
.round-btn-accent { background: var(--accent); }

.dots { display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-dark); }
.dot.is-active { background: var(--accent); }

/* Coverage */
.coverage-body {
  display: flex;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
}

.coverage-stats { flex: 1; min-width: 320px; display: flex; flex-direction: column; gap: 20px; }
.coverage-stats-row { display: flex; gap: 20px; }

.stat-card {
  flex: 1;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-card-num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 44px; color: var(--accent); }
.stat-card-label { font-size: 16px; color: var(--text-body-2); }

.coverage-map-panel {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--bg-dark);
  border-radius: 20px;
  padding: 24px 32px;
}

.coverage-map { width: 300px; height: 340px; flex-shrink: 0; }

.coverage-legend { display: flex; flex-direction: column; gap: 18px; }
.legend-row { display: flex; align-items: center; gap: 12px; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); display: inline-block; }
.legend-label { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 19px; color: #F8FAFC; }

/* Results */
.results-row {
  display: flex;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  flex-wrap: wrap;
}

.result-card {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 32px 26px;
}
.result-card-accent { background: var(--accent); border: none; }

.result-num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 48px; color: #F8FAFC; }
.result-label { font-size: 15px; color: var(--text-body-3); }
.result-label-accent { color: rgba(255, 255, 255, 0.85); }

/* Pricing */
.pricing-row {
  display: flex;
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  flex-wrap: wrap;
}

.price-card {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
}
.price-card-accent { background: var(--accent); border: none; }

.price-name { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 26px; color: var(--text-heading); }
.price-name.light { color: #FFFFFF; }

.price-divider { height: 1px; background: var(--border-light); }
.price-divider-light { background: rgba(255, 255, 255, 0.35); }

.price-feature { font-size: 17px; color: var(--text-body-1); }
.price-feature.light { color: #FFFFFF; }
.price-feature-cta { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 16px; color: var(--accent); margin-top: auto; }

/* Contact */
.contact-body {
  display: flex;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-info { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 20px; }
.contact-info h2 { font-weight: 700; font-size: 42px; }
.contact-sub { font-size: 19px; color: var(--text-body-3); line-height: 1.6; margin: 0; }

.contact-email-block { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.contact-email-label { font-size: 15px; color: var(--text-body-2); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-email { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 20px; }

.contact-form-panel {
  flex: 1;
  min-width: 300px;
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  padding: 44px;
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.contact-form input,
.contact-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #F8FAFC;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 14px 18px;
  outline: none;
  width: 100%;
}
.contact-form textarea { resize: none; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-body-3); opacity: 1; }

.contact-form button { font-family: 'Manrope', sans-serif; border-radius: 10px; }

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  padding: 40px 0;
}
.success-title { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 24px; color: #F8FAFC; }
.success-body { font-size: 16px; color: var(--text-body-3); }

/* Footer */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 64px;
  background: var(--bg-dark-footer);
  border-top: 1px solid var(--card-dark);
}
.footer-logo { height: 24px; width: auto; opacity: 0.8; }
.footer-copy { font-size: 14px; color: var(--footer-copy); }

/* Responsive */
@media (max-width: 900px) {
  .site-nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 72px 24px; }
  .hero { padding: 80px 24px 60px; }
  .hero h1 { font-size: 40px; }
  .steps-row { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .demo-body { gap: 40px; }
}
