/* ═══════════════════════════════════════════════════════════════
   HuduKey® — Main Stylesheet
   Born to Ride. Built to Connect.
   Trayis® | hudukey.com
   Color Palette: Warm Asphalt · Light Mustard · Brass Gold
   ═══════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand — light mustard & shades (one RGB drives solid + tints) */
  --theme-rgb:     218, 191, 92;
  --theme:         #DABF5C;
  --theme-light:   #EBD98F;
  --theme-glow:    rgba(var(--theme-rgb), 0.24);
  --theme-faint:   rgba(var(--theme-rgb), 0.09);
  /* Text on solid mustard / brand fills (readable vs light yellow) */
  --on-brand:      #14110d;

  /* SOS — one RGB drives solid + all tints (change here only) */
  --sos-rgb:       183, 31, 40;
  --sos-red:       rgb(var(--sos-rgb));
  --sos-red-hover: #951922;
  --sos-glow:      rgba(var(--sos-rgb), 0.3);

  /* Brass Gold — deeper accent; pairs with mustard */
  --gold:          #A67C1C;
  --gold-faint:    rgba(166, 124, 28, 0.14);

  /* Warm Asphalt Backgrounds — subtle warm tint, not pure black */
  --bg:            #080806;   /* hot asphalt — main bg */
  --bg-2:          #0F0E0C;   /* cards, sections */
  --bg-3:          #181612;   /* elevated cards */
  --bg-4:          #221F18;   /* highest elevation */

  /* Borders */
  --border:        rgba(255, 255, 255, 0.07);
  --border-warm:   rgba(var(--theme-rgb), 0.12);

  /* Text */
  --text:          #F5F0E8;   /* warm white — not cold */
  --text-muted:    #9A9288;
  --text-dim:      #5A544C;

  /* Typography */
  --font-display: 'Comfortaa', -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Comfortaa', -apple-system, 'Segoe UI', sans-serif;

  /* Misc */
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; }
ul { list-style: none; }

/* ─── Scrollbar ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--theme); border-radius: 3px; }

/* ─── Shared Helpers ────────────────────────────────────────────── */
.accent { color: var(--theme); }

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: var(--theme-faint);
  border: 1px solid rgba(var(--theme-rgb), 0.28);
  color: var(--theme);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── Fade-in ────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── Primary Button ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--theme);
  color: var(--on-brand);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(20, 17, 13, 0.14);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--theme-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--theme-glow);
}

/* ─── Store Buttons ─────────────────────────────────────────────── */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid;
  min-width: 180px;
}
.store-btn .store-icon { display: flex; align-items: center; flex-shrink: 0; }
.store-btn .store-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn .store-text small { font-size: 11px; opacity: 0.8; font-weight: 400; }
.store-btn .store-text strong { font-size: 17px; font-weight: 700; font-family: var(--font-display); }

.store-ios {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.store-ios:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,240,232,0.15);
}
.store-android {
  background: transparent;
  color: var(--text);
  border-color: rgba(245,240,232,0.3);
}
.store-android:hover {
  border-color: var(--theme);
  color: var(--theme);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--theme-glow);
}

/* ══════════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(8, 8, 6, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── FIXED: Logo never stretches — contain within fixed height ─── */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links li a {
  color: rgba(245,240,232,0.65);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  letter-spacing: 0.2px;
}
.nav-links li a:hover { color: var(--text); }
.nav-links .nav-cta {
  background: var(--theme);
  color: var(--on-brand) !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid rgba(20, 17, 13, 0.12);
}
.nav-links .nav-cta:hover { background: var(--theme-light) !important; box-shadow: 0 4px 16px var(--theme-glow); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--theme-rgb),0.1) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, #0C0A07 100%);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-overlay {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px);
  pointer-events: none;
}

.road-lines {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; height: 300px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.05;
}
.road-line {
  position: absolute; bottom: 0;
  width: 4px; height: 120%;
  background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
  animation: roadMove 3s linear infinite;
}
.road-line:nth-child(1) { left: 46%; animation-delay: 0s; }
.road-line:nth-child(2) { left: 50%; animation-delay: 1s; }
.road-line:nth-child(3) { left: 54%; animation-delay: 2s; }

@keyframes roadMove {
  from { transform: translateY(0); opacity: 1; }
  to   { transform: translateY(-60px); opacity: 0; }
}

.hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-block;
  background: var(--theme-faint);
  border: 1px solid rgba(var(--theme-rgb),0.3);
  color: var(--theme);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  color: var(--text);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-sub strong { color: var(--theme); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-note { color: var(--text-dim); font-size: 13px; }

/* ─── Phone Mockup ──────────────────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup { position: relative; z-index: 2; }

.phone-screen {
  width: 280px;
  height: 580px;
  background: var(--bg-2);
  border-radius: 38px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.03),
    0 40px 80px rgba(0,0,0,0.65),
    0 0 80px rgba(var(--theme-rgb),0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  width: 100px; height: 22px;
  background: var(--bg-2);
  border: 2px solid rgba(255,255,255,0.07);
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  flex-shrink: 0;
}

.app-screen {
  padding: 10px 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  overflow: hidden;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.app-logo-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.app-greeting { font-weight: 700; font-family: var(--font-display); font-size: 14px; color: var(--text); }

.app-bell {
  position: relative;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}
.badge {
  position: absolute;
  top: -5px; right: -7px;
  background: var(--theme);
  color: var(--on-brand);
  font-size: 8px;
  font-weight: 700;
  width: 13px; height: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-nudge {
  background: rgba(var(--theme-rgb),0.1);
  border: 1px solid rgba(var(--theme-rgb),0.22);
  border-radius: 10px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nudge-icon {
  color: var(--theme);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nudge-title { font-size: 11px; font-weight: 700; color: var(--text); }
.nudge-sub   { font-size: 10px; color: var(--text-muted); margin-top: 1px; }
.nudge-cta {
  margin-left: auto;
  flex-shrink: 0;
  background: var(--theme);
  color: var(--on-brand);
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  width: auto;
}

.app-feed-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.app-ride-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 11px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ride-emoji { font-size: 18px; flex-shrink: 0; line-height: 1; }
.ride-name { font-size: 11px; font-weight: 600; color: var(--text); }
.ride-meta { font-size: 10px; color: var(--text-muted); margin-top: 1px; }
.ride-tag {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 700;
  color: var(--theme);
  border: 1px solid var(--theme);
  padding: 3px 7px;
  border-radius: 5px;
}

/* ─── Bottom Sheet Peek ──────────────────────────────────────────── */
.bottom-sheet-peek {
  background: var(--bg-3);
  border: 1px solid var(--border-warm);
  border-radius: 28px 28px 0 0;
  padding: 10px 14px 12px;
  margin: 0 -14px -8px;
  box-shadow: 0 -10px 32px rgba(0,0,0,0.35);
  position: relative;
}

.bs-handle {
  width: 32px; height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto 10px;
}

.bs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.bs-title-row {
  display: flex;
  align-items: center;
  gap: 5px;
}
.bs-title { font-size: 12px; font-weight: 700; color: var(--text); }
.bs-badge {
  font-size: 9px;
  font-weight: 700;
  background: var(--theme-faint);
  color: var(--theme);
  border: 1px solid rgba(var(--theme-rgb),0.25);
  padding: 2px 7px;
  border-radius: 5px;
}
.bs-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.bs-meta-item { font-size: 10px; color: var(--text-muted); }
.bs-actions { display: flex; gap: 8px; }
.bs-btn-join {
  flex: 1;
  background: var(--theme);
  color: var(--on-brand);
  border: none;
  padding: 7px 0;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-display);
  letter-spacing: 0.3px;
}
.bs-btn-details {
  flex: 1;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 7px 0;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

/* ─── Bottom Tab Bar ─────────────────────────────────────────────── */
.app-tabbar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 6px 10px;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-dim);
  flex: 1;
}
.tab span { font-size: 9px; font-weight: 500; letter-spacing: 0.2px; }
.tab.active { color: var(--theme); }
.tab-vyom { color: var(--text-dim); }
.vyom-tab-btn {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--theme), #c084fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px var(--theme-glow);
  overflow: hidden;
  padding: 5px;
}
/* HuduKey logo inside VYOM tab button */
.tab-vyom-hk {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) opacity(0.92);
}
/* HuduKey logo in Home tab */
.tab-hk-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.45;
  filter: grayscale(1) brightness(2);
}
.tab.active .tab-hk-icon {
  opacity: 1;
  filter: none;
}

/* ─── Download HK logo ───────────────────────────────────────────── */
.download-hk-logo {
  margin: 0 auto 28px;
  animation: float 4s ease-in-out infinite;
  display: flex;
  justify-content: center;
}
.download-hk-logo img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px var(--theme-glow));
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.scroll-arrow { margin-top: 5px; animation: bounce 2s ease infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(1.5); }
}

/* ══════════════════════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stats-bar[hidden] {
  display: none !important;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 48px;
  gap: 3px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--theme);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.3px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ══════════════════════════════════════════════════════════════════
   OFFERINGS  (renamed from "Features")
   ══════════════════════════════════════════════════════════════════ */
.offerings {
  padding: 100px 0;
  background: var(--bg);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.offering-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.offering-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--theme), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.offering-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-warm);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 32px var(--theme-glow);
}
.offering-card:hover::before { opacity: 1; }

/* SOS card special treatment */
.offering-card.sos-card {
  border-color: rgba(var(--sos-rgb), 0.2);
  background: linear-gradient(160deg, rgba(var(--sos-rgb),0.06) 0%, var(--bg-2) 50%);
}
.offering-card.sos-card:hover {
  border-color: rgba(var(--sos-rgb),0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 32px var(--sos-glow);
}
.offering-card.sos-card::before {
  background: linear-gradient(90deg, transparent, var(--sos-red), transparent);
}

.offering-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.offering-icon-wrap.clubs    { background: rgba(99,102,241,0.14); color: #818cf8; }
.offering-icon-wrap.rides    { background: rgba(var(--theme-rgb),0.14);   color: var(--theme); }
.offering-icon-wrap.vyom     { background: rgba(168,85,247,0.14); color: #c084fc; }
.offering-icon-wrap.garage   { background: rgba(200,134,10,0.14); color: var(--gold); }
.offering-icon-wrap.reminders{ background: rgba(251,191,36,0.14); color: #fbbf24; }
.offering-icon-wrap.calendar { background: rgba(34,197,94,0.14);  color: #4ade80; }
.offering-icon-wrap.sos      { background: rgba(var(--sos-rgb),0.14);   color: var(--sos-red); }
.offering-icon-wrap.news     { background: rgba(20,184,166,0.14); color: #2dd4bf; }

.offering-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.offering-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.offering-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 6px;
}
.highlight-tag {
  color: var(--sos-red) !important;
  border-color: rgba(var(--sos-rgb),0.3) !important;
  background: rgba(var(--sos-rgb),0.07);
}

/* ══════════════════════════════════════════════════════════════════
   SOS SECTION
   ══════════════════════════════════════════════════════════════════ */
.sos-section {
  position: relative;
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid rgba(var(--sos-rgb),0.15);
  border-bottom: 1px solid rgba(var(--sos-rgb),0.15);
  overflow: hidden;
}

.sos-bg-pulse {
  position: absolute;
  top: 50%; left: 20%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(var(--sos-rgb),0.06) 0%, transparent 65%);
  pointer-events: none;
  animation: sosPulseGlow 3s ease-in-out infinite;
}
@keyframes sosPulseGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.1); }
}

.sos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sos-badge-wrap { margin-bottom: 16px; }
.sos-badge {
  display: inline-block;
  background: rgba(var(--sos-rgb),0.12);
  border: 1px solid rgba(var(--sos-rgb),0.35);
  color: var(--sos-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  animation: sosBadgePulse 2s ease-in-out infinite;
}
@keyframes sosBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--sos-rgb),0); }
  50%       { box-shadow: 0 0 0 6px rgba(var(--sos-rgb),0.15); }
}

.sos-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}
.sos-accent { color: var(--sos-red); }

.sos-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.sos-desc strong { color: var(--text); }

.sos-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.sos-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.sos-feat-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.sos-feat-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 3px; color: var(--text); }
.sos-feat-sub   { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

.btn-sos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sos-red);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-sos:hover {
  background: var(--sos-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--sos-glow);
}

/* SOS Alert Card Visual */
.sos-phone-wrap { display: flex; justify-content: center; }

.sos-alert-card {
  background: var(--bg-3);
  border: 1px solid rgba(var(--sos-rgb),0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(var(--sos-rgb),0.08);
}

.sos-alert-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.sos-pulse-ring {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(var(--sos-rgb),0.15);
  border: 2px solid rgba(var(--sos-rgb),0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: sosRingPulse 1.5s ease-in-out infinite;
}
@keyframes sosRingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--sos-rgb),0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(var(--sos-rgb),0); }
}
.sos-pulse-dot {
  width: 14px; height: 14px;
  background: var(--sos-red);
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}
.sos-alert-title { font-weight: 800; font-size: 13px; color: var(--sos-red); letter-spacing: 1.5px; }
.sos-alert-sub   { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.sos-map-placeholder {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: 10px;
  height: 120px;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}
.sos-map-lines { position: absolute; inset: 0; }
.sos-road-h {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  transform: translateY(-50%);
}
.sos-road-v {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.08);
  transform: translateX(-50%);
}
.sos-location-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  filter: drop-shadow(0 2px 8px rgba(var(--theme-rgb),0.6));
}
.sos-rider-blip {
  position: absolute;
  width: 10px; height: 10px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid var(--bg-4);
  animation: blink 1.5s ease-in-out infinite;
}
.sos-rider-blip.r1 { top: 30%; left: 25%; animation-delay: 0s; }
.sos-rider-blip.r2 { top: 65%; left: 70%; animation-delay: 0.5s; }
.sos-rider-blip.r3 { top: 20%; left: 60%; animation-delay: 1s; }
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.sos-responders { margin-bottom: 12px; }
.sos-resp-label { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.sos-resp-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sos-resp-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
}
.sos-resp-eta {
  font-size: 11px;
  font-weight: 700;
  color: #4ade80;
  margin-left: 4px;
}

.sos-vyom-msg {
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vyom-dot {
  width: 7px; height: 7px;
  background: #c084fc;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s ease infinite;
}

/* ══════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════════ */
.how-it-works {
  padding: 100px 0;
  background: var(--bg);
}

.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.step:hover {
  transform: translateY(-5px);
  border-color: var(--border-warm);
}
.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(var(--theme-rgb),0.1);
  line-height: 1;
  position: absolute;
  top: 14px; right: 18px;
}
.step-icon-wrap {
  width: 64px; height: 64px;
  background: var(--theme-faint);
  border: 1px solid rgba(var(--theme-rgb),0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.step p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  flex-shrink: 0;
  opacity: 0.5;
}
.connector-line { width: 1px; height: 20px; background: var(--theme); }

/* ══════════════════════════════════════════════════════════════════
   VYOM AI
   ══════════════════════════════════════════════════════════════════ */
.vyom-section {
  position: relative;
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.vyom-bg-glow {
  position: absolute;
  top: 50%; left: 30%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.vyom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vyom-badge {
  display: inline-block;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.3);
  color: #c084fc;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.vyom-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
  color: var(--text);
}
.vyom-acronym {
  font-size: 1.05rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  max-width: 480px;
}
.vyom-acronym em {
  font-style: italic;
  color: var(--text);
}
.vyom-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--theme);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.vyom-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.vyom-pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.vyom-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pillar-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon.rides    { background: rgba(var(--theme-rgb),0.13); color: var(--theme); }
.pillar-icon.clubs    { background: rgba(99,102,241,0.13); color: #818cf8; }
.pillar-icon.garage   { background: rgba(200,134,10,0.13); color: var(--gold); }
.pillar-icon.sos      { background: rgba(var(--sos-rgb),0.13); color: var(--sos-red); }
.pillar-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 3px; color: var(--text); }
.pillar-sub   { font-size: 0.875rem; color: var(--text-muted); line-height: 1.55; }

/* VYOM Chat Card */
.vyom-card-wrap { display: flex; justify-content: center; }

.vyom-chat-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(168,85,247,0.05);
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.vyom-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme), #c084fc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  font-family: var(--font-display);
  color: var(--on-brand);
  flex-shrink: 0;
}
.chat-name   { font-weight: 700; font-size: 14px; color: var(--text); }
.chat-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #4ade80;
}
.online-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

.chat-bubble {
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  line-height: 1.6;
  margin-bottom: 9px;
  max-width: 90%;
}
.chat-bubble.bot {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  color: var(--text-muted);
}
.chat-bubble.bot strong { color: var(--text); }
.chat-bubble.user {
  background: var(--theme);
  color: var(--on-brand);
  margin-left: auto;
  border-bottom-right-radius: 4px;
  font-weight: 600;
  border: 1px solid rgba(20, 17, 13, 0.12);
}

/* ══════════════════════════════════════════════════════════════════
   COMMUNITY
   ══════════════════════════════════════════════════════════════════ */
.community-section {
  padding: 100px 0;
  background: var(--bg);
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.community-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), border-color var(--transition);
}
.community-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-warm);
}
.community-card.featured-card {
  border-color: rgba(var(--theme-rgb),0.28);
  background: linear-gradient(180deg, rgba(var(--theme-rgb),0.04) 0%, var(--bg-2) 100%);
  box-shadow: 0 0 48px var(--theme-glow);
}
.community-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.cc-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.clubs-icon    { background: rgba(99,102,241,0.13); color: #818cf8; }
.rides-icon    { background: rgba(var(--theme-rgb),0.13);   color: var(--theme); }
.calendar-icon { background: rgba(34,197,94,0.13);  color: #4ade80; }

.community-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}
.community-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.community-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.community-list li { font-size: 0.875rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════════
   REMINDERS
   ══════════════════════════════════════════════════════════════════ */
.reminders-section {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reminders-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.reminder-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reminder-chip {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition);
}
.reminder-chip:hover { transform: translateX(6px); }
.reminder-chip .chip-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.reminder-chip.service    { border-left: 3px solid var(--theme); }
.reminder-chip.service    .chip-icon { color: var(--theme); }
.reminder-chip.insurance  { border-left: 3px solid #fbbf24; }
.reminder-chip.insurance  .chip-icon { color: #fbbf24; }
.reminder-chip.puc        { border-left: 3px solid #4ade80; }
.reminder-chip.puc        .chip-icon { color: #4ade80; }
.reminder-chip.fuel       { border-left: 3px solid #2dd4bf; }
.reminder-chip.fuel       .chip-icon { color: #2dd4bf; }
.reminder-chip.maintenance{ border-left: 3px solid var(--gold); }
.reminder-chip.maintenance .chip-icon { color: var(--gold); }

.chip-content { flex: 1; }
.chip-title   { font-size: 13px; font-weight: 600; color: var(--text); }
.chip-due     { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.chip-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.chip-badge.overdue { background: rgba(var(--theme-rgb),0.18);   color: var(--theme); }
.chip-badge.warning { background: rgba(251,191,36,0.18); color: #fbbf24; }
.chip-badge.ok      { background: rgba(74,222,128,0.13); color: #4ade80; }

.reminder-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.rtype {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 6px 13px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  color: var(--text-muted);
}
.rtype:hover { border-color: var(--theme); color: var(--theme); }

/* ══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════ */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), border-color var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-warm);
}
.stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 22px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme), var(--theme-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  font-family: var(--font-display);
  color: var(--on-brand);
  flex-shrink: 0;
}
.author-name   { font-weight: 600; font-size: 14px; color: var(--text); }
.author-detail { font-size: 12px; color: var(--text-dim); }

/* ══════════════════════════════════════════════════════════════════
   DOWNLOAD CTA
   ══════════════════════════════════════════════════════════════════ */
.download-section {
  position: relative;
  padding: 120px 0;
  background: var(--bg-2);
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border);
}
.download-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(var(--theme-rgb),0.09) 0%, transparent 70%);
  pointer-events: none;
}
.download-inner { position: relative; }
.download-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 16px;
  color: var(--text);
}
.download-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.download-sub strong { color: var(--text); }
.download-actions { justify-content: center; }

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.footer-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── FIXED: Logo always proportional, never stretched ───────────── */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  align-self: flex-start;
}
.footer-logo {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--theme);
  letter-spacing: 0.3px;
}
.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.footer-socials a {
  color: var(--text-dim);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.footer-socials a:hover { color: var(--theme); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--text-dim);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--theme); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
}
.footer-india { display: flex; align-items: center; gap: 5px; }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
    padding: 60px 24px 100px;
  }
  .hero-sub    { margin-left: auto; margin-right: auto; }
  .hero-actions{ justify-content: center; }
  .hero-note   { text-align: center; }
  .hero-visual { justify-content: center; }

  .community-grid    { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .sos-inner    { grid-template-columns: 1fr; gap: 52px; }
  .vyom-inner   { grid-template-columns: 1fr; gap: 52px; }
  .reminders-inner { grid-template-columns: 1fr; gap: 52px; }

  .reminders-content .section-title,
  .reminders-content .section-sub { text-align: center; max-width: none; }
  .reminder-types, .reminders-content .btn-primary { margin-left: auto; margin-right: auto; }
  .reminder-types { justify-content: center; }

  .footer-container { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,6,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 1.3rem; }

  .offerings-grid    { grid-template-columns: 1fr; }
  .community-grid    { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .steps-row { flex-direction: column; gap: 0; }
  .step-connector { transform: rotate(90deg); padding: 12px 0; }
  .step { max-width: 100%; }

  .stats-container { gap: 0; }
  .stat-item { padding: 12px 20px; }
  .stat-divider { height: 32px; }

  .hero-actions,
  .download-actions { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 260px; justify-content: center; }

  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-container { padding-bottom: 40px; }
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title   { font-size: 2.2rem; }
  .section-title{ font-size: 1.75rem; }
  .phone-screen { width: 250px; height: 520px; }
  .stat-item    { padding: 10px 14px; }
  .stat-number  { font-size: 1.5rem; }
  .offerings-grid { gap: 14px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ══════════════════════════════════════════════════════════════════
   TOAST — store download (coming soon)
   ══════════════════════════════════════════════════════════════════ */
.hk-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  z-index: 10001;
  max-width: min(92vw, 420px);
  padding: 14px 22px;
  /* Match primary CTAs — mustard fill, dark type (not charcoal / warm white) */
  background: var(--theme);
  color: var(--on-brand);
  border: 1px solid rgba(20, 17, 13, 0.12);
  border-radius: var(--radius);
  box-shadow:
    0 12px 40px var(--theme-glow),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
  transform: translateX(-50%) translateY(calc(100% + 32px));
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.38s cubic-bezier(0.2, 0.85, 0.25, 1),
    opacity 0.32s ease,
    visibility 0.32s;
}
.hk-toast.hk-toast--show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
.hk-toast-msg { display: block; }
