/* ============================================
   CNG Margdarshak — Website Styles
   Colors: Navy #0D2A56 | Lime #9DEE73 | Cyan #00D4FF
   ============================================ */

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

:root {
  --navy:       #0D2A56;
  --navy-mid:   #164B8A;
  --navy-dark:  #081A36;
  --lime:       #9DEE73;
  --lime-dark:  #75DE5F;
  --cyan:       #00D4FF;
  --white:      #FFFFFF;
  --white-80:   rgba(255,255,255,0.80);
  --white-50:   rgba(255,255,255,0.50);
  --white-20:   rgba(255,255,255,0.20);
  --white-10:   rgba(255,255,255,0.10);
  --white-06:   rgba(255,255,255,0.06);
  --glass:      rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.12);
  --radius:     16px;
  --radius-sm:  10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy-dark);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(8, 26, 54, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--glass-border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
}
.nav-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}
.nav-cta { font-size: 14px; padding: 10px 20px; }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: #0A1E38;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #b5f585;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(157, 238, 115, 0.35);
}
.btn-large { font-size: 17px; padding: 16px 36px; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(22,75,138,0.5) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 80% 20%, rgba(0,212,255,0.08) 0%, transparent 60%),
              var(--navy-dark);
}
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: rgba(22,75,138,0.4);
  top: -100px; left: -100px;
}
.glow-2 {
  width: 400px; height: 400px;
  background: rgba(157,238,115,0.06);
  bottom: 0; right: 10%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--white-80);
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-headline {
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.highlight { color: var(--lime); }
.hero-sub {
  font-size: 18px;
  color: var(--white-80);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions { margin-bottom: 40px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12px;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px; height: 36px;
  background: var(--white-20);
}

/* ============ PHONE MOCKUP ============ */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-wrap { position: relative; }
.phone-frame {
  width: 280px;
  height: 560px;
  background: #0A1E38;
  border-radius: 44px;
  border: 2px solid rgba(157,238,115,0.25);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 28px;
  background: #081A36;
  border-radius: 0 0 20px 20px;
  z-index: 10;
}
.phone-screen {
  height: 100%;
  background: linear-gradient(160deg, #0D2A56 0%, #081A36 100%);
  display: flex;
  flex-direction: column;
  padding: 48px 0 0;
}
.mock-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--glass-border);
}
.mock-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.mock-sub {
  font-size: 11px;
  color: var(--white-50);
  margin-top: 2px;
}
.mock-map {
  height: 180px;
  background: linear-gradient(135deg, #0a2240 0%, #112d54 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-pin {
  position: absolute;
  top: 30%; left: 30%;
}
.pin-dot {
  display: block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: pingPulse 2s infinite;
}
.pin-dot.red {
  background: #EF4444;
  box-shadow: 0 0 12px #EF4444;
}
.pin-dot.amber {
  background: #F59E0B;
  box-shadow: 0 0 12px #F59E0B;
}
@keyframes pingPulse {
  0%, 100% { box-shadow: 0 0 6px currentColor; }
  50% { box-shadow: 0 0 20px currentColor; }
}
.mock-cards {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.mock-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-pump-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
}
.mock-pump-dist {
  font-size: 10px;
  color: var(--white-50);
  margin-top: 2px;
}
.mock-status {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}
.mock-status.available {
  background: rgba(157,238,115,0.15);
  color: var(--lime);
  border: 1px solid rgba(157,238,115,0.3);
}
.mock-status.not-available {
  background: rgba(239,68,68,0.15);
  color: #FCA5A5;
  border: 1px solid rgba(239,68,68,0.25);
}
.mock-status.power-cut {
  background: rgba(245,158,11,0.15);
  color: #FCD34D;
  border: 1px solid rgba(245,158,11,0.3);
}
.phone-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100px;
  background: rgba(157,238,115,0.15);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
}

/* ============ SECTIONS ============ */
.section {
  padding: 100px 0;
  position: relative;
}
.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  text-align: center;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 60px;
}

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--glass);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 0;
}
.stats-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-bar-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--glass-border);
}
.stat-bar-item:last-child { border-right: none; }
.stat-bar-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--lime);
  letter-spacing: -2px;
  line-height: 1;
  display: block;
}
.stat-bar-label {
  font-size: 14px;
  color: var(--white-50);
  margin-top: 6px;
  display: block;
}

/* ============ FEATURES ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(157,238,115,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(157,238,115,0.1);
  border: 1px solid rgba(157,238,115,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.feature-card p {
  font-size: 14px;
  color: var(--white-80);
  line-height: 1.7;
}

/* ============ HOW IT WORKS ============ */
.how-section {
  background: linear-gradient(180deg, transparent 0%, rgba(22,75,138,0.15) 50%, transparent 100%);
}
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 36px 24px;
}
.step-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.step-icon {
  width: 70px; height: 70px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin: 0 auto 20px;
}
.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step p {
  font-size: 14px;
  color: var(--white-80);
  line-height: 1.7;
}
.step-arrow {
  padding-top: 55px;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ============ COVERAGE ============ */
.coverage-section {
  overflow: hidden;
}
.coverage-card {
  background: linear-gradient(135deg, rgba(22,75,138,0.4) 0%, rgba(8,26,54,0.8) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.coverage-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(157,238,115,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.coverage-title {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.coverage-desc {
  font-size: 16px;
  color: var(--white-80);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 420px;
}
.coverage-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.pill.active {
  background: rgba(157,238,115,0.15);
  border: 1px solid rgba(157,238,115,0.4);
  color: var(--lime);
}
.pill.soon {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  color: var(--white-80);
}
.pill-check { opacity: 0.8; }
.coverage-right { display: flex; justify-content: center; }
.india-visual { text-align: center; }
.india-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.india-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 6px;
}
.india-sub {
  font-size: 13px;
  color: var(--white-50);
}

/* ============ HERO TRUST ============ */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.trust-avatars {
  display: flex;
}
.avatar {
  width: 32px; height: 32px;
  background: var(--glass);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.trust-text {
  font-size: 13px;
  color: var(--white-80);
}
.trust-text strong { color: var(--lime); }

/* ============ PROBLEM SECTION ============ */
.problem-section {
  background: linear-gradient(135deg, rgba(239,68,68,0.06) 0%, rgba(8,26,54,0.8) 100%);
  border-top: 1px solid rgba(239,68,68,0.15);
  border-bottom: 1px solid rgba(157,238,115,0.1);
  padding: 60px 0;
}
.problem-inner {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.problem-emoji {
  font-size: 56px;
  line-height: 1;
}
.problem-text h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.problem-highlight { color: #FCA5A5; }
.problem-text p {
  font-size: 14px;
  color: var(--white-80);
  line-height: 1.7;
}
.problem-arrow {
  display: flex;
  justify-content: center;
  opacity: 0.8;
}
.solution-badge {
  display: inline-block;
  background: rgba(157,238,115,0.15);
  border: 1px solid rgba(157,238,115,0.3);
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.problem-solution p {
  font-size: 15px;
  color: var(--white-80);
  line-height: 1.7;
}
.problem-solution strong { color: var(--white); }

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: linear-gradient(180deg, transparent 0%, rgba(22,75,138,0.1) 50%, transparent 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(157,238,115,0.25);
}
.testimonial-stars {
  color: #F59E0B;
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--white-80);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  background: rgba(157,238,115,0.1);
  border: 1px solid rgba(157,238,115,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.testimonial-role {
  font-size: 12px;
  color: var(--white-50);
  margin-top: 2px;
}

/* ============ CTA TRUST ROW ============ */
.cta-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: relative;
}
.cta-trust-badge {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--white-80);
  font-weight: 500;
}

/* ============ CTA SECTION ============ */
.cta-section { text-align: center; }
.cta-card {
  background: linear-gradient(135deg, rgba(22,75,138,0.6) 0%, rgba(8,26,54,0.9) 100%);
  border: 1px solid rgba(157,238,115,0.2);
  border-radius: 24px;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(157,238,115,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}
.cta-sub {
  font-size: 17px;
  color: var(--white-80);
  margin-bottom: 36px;
  position: relative;
}
.cta-card .btn-primary { position: relative; }
.cta-note {
  font-size: 13px;
  color: var(--white-50);
  margin-top: 16px;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 48px 0 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
}
.footer-name {
  font-size: 16px;
  font-weight: 700;
}
.footer-tagline {
  font-size: 13px;
  color: var(--lime);
  margin-top: 2px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--white-80);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white-80);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--lime); }
.footer-instagram {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white-80);
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
  transition: color 0.2s;
}
.footer-instagram:hover { color: #E1306C; }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--white-50);
}

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.05s; }
.feature-card:nth-child(5) { transition-delay: 0.15s; }
.feature-card:nth-child(6) { transition-delay: 0.25s; }
.step:nth-child(3) { transition-delay: 0.1s; }
.step:nth-child(5) { transition-delay: 0.2s; }

/* ============ STICKY MOBILE DOWNLOAD BAR ============ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  padding: 12px 20px;
  background: rgba(8,26,54,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.4);
}
.mobile-sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--lime);
  color: #0A1E38;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  letter-spacing: -0.3px;
}

/* ============ TABLET (max 900px) ============ */
@media (max-width: 900px) {
  .problem-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .problem-arrow { transform: rotate(90deg); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .cta-trust-row { gap: 8px; }

  .section { padding: 72px 0; }

  /* Hero */
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-frame { width: 240px; height: 480px; }

  /* Stats */
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-bar-item:nth-child(2) { border-right: none; }
  .stat-bar-item:nth-child(3) {
    border-top: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
  }
  .stat-bar-item:nth-child(4) { border-top: 1px solid var(--glass-border); }
  .stat-bar-num { font-size: 34px; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* Steps */
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; margin: -8px 0; opacity: 0.5; }

  /* Coverage */
  .coverage-card { grid-template-columns: 1fr; padding: 40px 32px; }
  .coverage-right { display: none; }

  /* CTA */
  .cta-card { padding: 60px 32px; }
}

/* ============ MOBILE (max 600px) ============ */
@media (max-width: 600px) {
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }
  .problem-section { padding: 40px 0; }
  .problem-emoji { font-size: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 20px 18px; }
  .cta-trust-row { flex-direction: column; gap: 8px; }
  .cta-trust-badge { font-size: 12px; padding: 5px 12px; }

  /* Global */
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }
  .section-title { margin-bottom: 36px; }

  /* Navbar */
  .navbar { padding: 12px 0; }
  .nav-title { font-size: 15px; }
  .nav-cta { display: none; } /* replaced by sticky bar */

  /* Hero */
  .hero { padding: 90px 0 100px; }
  .hero-inner { gap: 32px; }
  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
    gap: 6px;
  }
  .hero-headline {
    font-size: 36px;
    letter-spacing: -1.5px;
  }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-actions { margin-bottom: 28px; }
  .btn-large { font-size: 15px; padding: 14px 28px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 18px; }
  .stat-label { font-size: 11px; }
  .stat-divider { height: 28px; }

  /* Phone mockup — smaller & crisp */
  .phone-frame { width: 210px; height: 420px; border-radius: 36px; }
  .phone-frame::before { width: 64px; height: 22px; }
  .mock-header { padding: 12px 16px 10px; }
  .mock-title { font-size: 14px; }
  .mock-map { height: 150px; }
  .mock-cards { padding: 10px 12px; gap: 7px; }
  .mock-card { padding: 9px 10px; }
  .mock-pump-name { font-size: 10px; }
  .mock-pump-dist { font-size: 9px; }
  .mock-status { font-size: 9px; padding: 3px 7px; }

  /* Stats bar */
  .stat-bar-item { padding: 24px 12px; }
  .stat-bar-num { font-size: 28px; }
  .stat-bar-label { font-size: 12px; }

  /* Features — horizontal card on mobile (icon left, text right) */
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card {
    padding: 20px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .feature-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .feature-icon svg { width: 22px; height: 22px; }
  .feature-card-text { flex: 1; }
  .feature-card h3 { font-size: 15px; margin-bottom: 4px; }
  .feature-card p { font-size: 13px; line-height: 1.6; }

  /* Steps — vertical with connecting line */
  .steps-row { gap: 0; }
  .step { padding: 24px 20px; max-width: 100%; width: 100%; }
  .step-icon { width: 56px; height: 56px; border-radius: 16px; }
  .step h3 { font-size: 16px; }
  .step p { font-size: 13px; }
  .step-arrow { margin: -4px 0; }

  /* Coverage */
  .coverage-card { padding: 28px 20px; border-radius: 18px; }
  .coverage-title { font-size: 28px; letter-spacing: -1px; }
  .coverage-desc { font-size: 14px; }
  .pill { font-size: 12px; padding: 7px 13px; }

  /* CTA */
  .cta-section { padding-bottom: 80px; } /* space for sticky bar */
  .cta-card { padding: 44px 20px; border-radius: 18px; }
  .cta-title { font-size: 30px; letter-spacing: -1.5px; }
  .cta-sub { font-size: 14px; margin-bottom: 28px; }
  .cta-card .btn-primary { display: none; } /* replaced by sticky bar */
  .cta-note { display: none; }

  /* Footer */
  .footer { padding: 40px 0 0; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
  }
  .footer-links { gap: 14px; flex-wrap: wrap; }
  .footer-links a { font-size: 13px; }
  .footer-email { font-size: 13px; }
  .footer-bottom .container {
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
  }

  /* Show sticky download bar */
  .mobile-sticky-bar { display: block; }

  /* Disable stagger delays on mobile */
  .feature-card:nth-child(n) { transition-delay: 0s; }
}
