/* ============================================
   TAGALONG — WEBSITE STYLES
   Theme: Courier delivery (Go template inspired)
   Colors: #0A0E1A dark, #FF6B00 orange, #FFFFFF
   ============================================ */

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

:root {
  --dark:       #0A0E1A;
  --dark-2:     #151B2E;
  --dark-3:     #1E2740;
  --orange:     #FF6B00;
  --orange-l:   #FF8C38;
  --orange-xl:  #FFF0E6;
  --white:      #FFFFFF;
  --gray:       #6B7280;
  --gray-l:     #9CA3AF;
  --gray-bg:    #F8F9FB;
  --text:       #1A1F2E;
  --border:     #E5E7EB;
  --radius:     14px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-nav { background: var(--orange); color: var(--white); padding: 10px 22px; font-size: .875rem; }
.btn-nav:hover { background: var(--orange-l); }
.btn-large { padding: 15px 34px; font-size: 1rem; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.2; color: var(--text); margin-bottom: 16px; }
.section-header p { font-size: 1rem; color: var(--gray); max-width: 560px; margin: 0 auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,.7); }
.section-tag { display: inline-block; background: var(--orange-xl); color: var(--orange); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.section-tag.white { background: rgba(255,255,255,.15); color: var(--white); }
.accent { color: var(--orange); }
.accent-light { color: var(--orange-l); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: all .3s ease;
}
.navbar.scrolled {
  background: var(--dark);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { text-decoration: none; font-size: 1.6rem; font-weight: 900; letter-spacing: -1px; }
.logo-tag { color: var(--white); }
.logo-along { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { color: rgba(255,255,255,.85); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--orange); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all .3s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #1A0A00 100%);
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,107,0,.12) 0%, transparent 70%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,107,0,.2); color: var(--orange-l);
  font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 6px 16px; border-radius: 50px;
  border: 1px solid rgba(255,107,0,.3);
  margin-bottom: 20px;
}
.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 0; }
.stat { padding: 0 24px; text-align: center; }
.stat:first-child { padding-left: 0; }
.stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ===== PHONE MOCKUP ===== */
.hero-image { display: flex; justify-content: center; align-items: center; }
.phone-mockup { position: relative; }
.phone-frame {
  width: 280px; height: 560px;
  background: var(--dark-3);
  border-radius: 44px;
  padding: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.1), 0 0 0 2px rgba(255,255,255,.08);
  position: relative;
}
.phone-frame::before {
  content: ''; position: absolute;
  top: 22px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 6px;
  background: rgba(255,255,255,.15); border-radius: 3px;
}
.phone-screen {
  background: #F2F3F8;
  border-radius: 32px;
  height: 100%;
  overflow: hidden;
  padding: 24px 16px 16px;
}
.app-ui { display: flex; flex-direction: column; gap: 14px; }
.app-header-bar { display: flex; align-items: center; gap: 10px; }
.app-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-l)); }
.app-greeting { flex: 1; }
.app-hi { display: block; font-size: 10px; color: var(--gray); }
.app-name { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.app-notif { width: 28px; height: 28px; border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
.app-search {
  background: var(--white); border-radius: 12px;
  padding: 10px 14px; font-size: 11px; color: #999;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.app-tile {
  border-radius: 14px; padding: 14px 12px;
  display: flex; flex-direction: column; gap: 8px;
  cursor: pointer;
}
.app-tile.orange { background: var(--orange); }
.app-tile.dark { background: var(--dark); }
.app-tile-icon { font-size: 18px; }
.app-tile-label { font-size: 10px; font-weight: 600; color: var(--white); }
.app-nearby { background: var(--white); border-radius: 14px; padding: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.app-nearby-label { font-size: 10px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.app-trip-card { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid #f0f0f0; }
.app-trip-card:last-child { border-bottom: none; padding-bottom: 0; }
.trip-route { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.trip-dot { width: 7px; height: 7px; border-radius: 50%; }
.trip-dot.from { background: var(--orange); }
.trip-dot.to { background: var(--dark); }
.trip-line { width: 1px; height: 12px; background: #ddd; }
.trip-info { flex: 1; }
.trip-from { font-size: 9px; color: var(--gray); }
.trip-to { font-size: 10px; font-weight: 600; color: var(--text); }
.trip-price { font-size: 10px; font-weight: 700; color: var(--orange); }
.phone-glow {
  position: absolute;
  bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 60px;
  background: radial-gradient(ellipse, rgba(255,107,0,.35) 0%, transparent 70%);
  filter: blur(20px);
}

/* ===== TRUSTED ===== */
.trusted { padding: 40px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.trusted-label { text-align: center; font-size: .85rem; color: var(--gray-l); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.trusted-badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 50px;
  background: var(--gray-bg); color: var(--gray);
  font-size: .85rem; font-weight: 500;
  border: 1px solid var(--border);
}

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--gray-bg); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: transparent;
  transition: background .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { background: var(--orange); }
.service-card.featured { border-color: var(--orange); }
.service-card.featured::before { background: var(--orange); }
.service-icon-wrap {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon-wrap.orange { background: var(--orange); }
.service-icon-wrap.dark { background: var(--dark); }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.service-card p { font-size: .9rem; color: var(--gray); margin-bottom: 20px; line-height: 1.7; }
.service-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.service-features li {
  font-size: .85rem; color: var(--gray);
  display: flex; align-items: center; gap: 8px;
}
.service-features li::before {
  content: '✓'; color: var(--orange);
  font-weight: 700; font-size: .9rem;
  min-width: 18px;
}
.service-link { color: var(--orange); font-weight: 600; font-size: .9rem; text-decoration: none; transition: gap .2s; display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 12px; }
.service-link span { transition: transform .2s; }
.service-link:hover span { transform: translateX(4px); }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 100px 0; background: var(--dark); }
.tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 60px; flex-wrap: wrap; }
.tab {
  padding: 10px 24px; border-radius: 50px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.1);
  font-family: 'Poppins', sans-serif; font-size: .875rem; font-weight: 500;
  cursor: pointer; transition: all .25s;
}
.tab.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.tab:hover:not(.active) { background: rgba(255,255,255,.14); color: var(--white); }
.steps-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.steps-container.hidden { display: none; }
.step {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  position: relative;
}
.step-num { font-size: 3.5rem; font-weight: 900; color: rgba(255,255,255,.06); line-height: 1; }
.step-icon {
  width: 68px; height: 68px; border-radius: 20px;
  background: rgba(255,107,0,.12); border: 1px solid rgba(255,107,0,.25);
  display: flex; align-items: center; justify-content: center;
}
.step-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-content p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.7; }
.step-arrow {
  position: absolute; right: -24px; top: 50px;
  font-size: 1.5rem; color: var(--orange); opacity: .4;
}

/* ===== SAFETY ===== */
.safety { padding: 100px 0; background: var(--white); }
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.safety-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.2; color: var(--text); margin-bottom: 16px; }
.safety-intro { font-size: 1rem; color: var(--gray); margin-bottom: 36px; line-height: 1.7; }
.safety-items { display: flex; flex-direction: column; gap: 24px; }
.safety-item { display: flex; gap: 16px; align-items: flex-start; }
.safety-item-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 14px; background: var(--orange-xl);
  display: flex; align-items: center; justify-content: center;
}
.safety-item h4 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.safety-item p { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* Safety cards */
.safety-visual { display: flex; justify-content: center; align-items: center; }
.safety-card-stack { position: relative; width: 320px; height: 280px; }
.safety-card {
  position: absolute; background: var(--white);
  border-radius: 16px; padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: flex; align-items: center; gap: 14px;
  width: 300px; transition: transform .3s;
  border: 1px solid var(--border);
}
.safety-card:hover { transform: scale(1.03); }
.safety-card.top { top: 0; left: 0; z-index: 3; }
.safety-card.mid { top: 90px; left: 20px; z-index: 2; }
.safety-card.bottom { top: 180px; left: 10px; z-index: 1; }
.scard-icon {
  width: 40px; height: 40px; border-radius: 12px; min-width: 40px;
  display: flex; align-items: center; justify-content: center;
}
.scard-icon.green { background: #22c55e; }
.scard-icon.orange { background: var(--orange); }
.scard-icon.blue { background: #3b82f6; }
.scard-text { display: flex; flex-direction: column; }
.scard-text strong { font-size: .875rem; color: var(--text); }
.scard-text span { font-size: .75rem; color: var(--gray); }

/* ===== WHY ===== */
.why { padding: 100px 0; background: var(--gray-bg); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; position: relative;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-num {
  position: absolute; top: 20px; right: 24px;
  font-size: 2.5rem; font-weight: 900; color: var(--orange-xl);
  line-height: 1;
}
.why-card svg { margin-bottom: 16px; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.why-card p { font-size: .875rem; color: var(--gray); line-height: 1.7; }

/* ===== EARLY ACCESS BUZZ ===== */
.buzz { padding: 100px 0; background: var(--dark-2); }
.buzz-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(255,255,255,.08);
  border-radius: 20px; overflow: hidden;
  margin-bottom: 48px;
}
.buzz-stat {
  background: var(--dark-3); padding: 44px 32px; text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.buzz-num {
  font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 900;
  color: var(--orange); line-height: 1;
}
.buzz-label { font-size: 1rem; font-weight: 700; color: var(--white); }
.buzz-sub { font-size: .8rem; color: rgba(255,255,255,.4); }
.buzz-reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.buzz-reason {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s, background .3s;
}
.buzz-reason:hover { background: rgba(255,255,255,.07); transform: translateY(-4px); }
.buzz-reason.highlight {
  background: rgba(255,107,0,.1); border-color: rgba(255,107,0,.3);
}
.buzz-icon { font-size: 1.8rem; }
.buzz-reason p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; }
.buzz-reason p strong { color: var(--white); font-style: italic; }

@media (max-width: 768px) {
  .buzz-grid { grid-template-columns: 1fr; gap: 1px; }
  .buzz-reasons { grid-template-columns: 1fr; }
}

/* ===== DOWNLOAD ===== */
.download { padding: 100px 0; background: var(--white); }
.download-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.download-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--text); margin-bottom: 16px; line-height: 1.2; }
.download-text p { color: var(--gray); margin-bottom: 32px; }
.store-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--dark); color: var(--white);
  padding: 12px 22px; border-radius: 14px;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.store-sub { display: block; font-size: .7rem; opacity: .7; }
.store-name { display: block; font-size: 1rem; font-weight: 700; }
.qr-hint { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--gray); }

/* Download phone */
.dl-phone-frame {
  width: 240px; height: 460px; margin: 0 auto;
  background: var(--dark); border-radius: 40px;
  padding: 14px;
  box-shadow: 0 32px 80px rgba(0,0,0,.25), 0 0 0 2px rgba(255,255,255,.08);
}
.dl-screen {
  background: var(--dark-2); border-radius: 30px;
  height: 100%; display: flex; align-items: center; justify-content: center;
}
.dl-success { text-align: center; padding: 24px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.dl-checkmark {
  width: 72px; height: 72px; border-radius: 50%;
  background: #22c55e; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 12px rgba(34,197,94,.15);
}
.dl-text-block { display: flex; flex-direction: column; gap: 4px; }
.dl-text-block strong { color: var(--white); font-size: .95rem; }
.dl-text-block span { color: rgba(255,255,255,.5); font-size: .78rem; }
.dl-location { color: var(--orange-l) !important; }
.dl-rate { margin-top: 8px; }
.dl-rate span { color: rgba(255,255,255,.4); font-size: .75rem; display: block; margin-bottom: 4px; }
.dl-stars { color: #FFD700; font-size: 1.1rem; letter-spacing: 3px; }

/* ===== WAITLIST ===== */
.waitlist { padding: 60px 0; background: var(--orange-xl); border-top: 1px solid rgba(255,107,0,.15); }
.waitlist-inner { text-align: center; }
.waitlist-inner h3 { font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.waitlist-inner p { color: var(--gray); margin-bottom: 24px; }
.waitlist-form { display: flex; gap: 12px; justify-content: center; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.waitlist-form input {
  flex: 1; min-width: 240px;
  padding: 14px 20px; border-radius: 50px;
  border: 1px solid var(--border); font-family: 'Poppins', sans-serif;
  font-size: .9rem; outline: none; transition: border .2s;
}
.waitlist-form input:focus { border-color: var(--orange); }
.waitlist-success {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; color: #16a34a; font-size: .9rem; font-weight: 500;
}
.waitlist-success.hidden { display: none; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand p { color: rgba(255,255,255,.45); font-size: .875rem; line-height: 1.7; margin-top: 16px; margin-bottom: 24px; }
.footer-logo { font-size: 1.4rem; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); text-decoration: none;
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--orange); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .875rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .8rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); text-decoration: none; font-size: .8rem; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-image { order: -1; }
  .hero-text h1 { font-size: 2.2rem; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .phone-frame { width: 220px; height: 440px; }
  .safety-grid { grid-template-columns: 1fr; }
  .safety-visual { order: -1; }
  .safety-card-stack { height: 200px; }
  .safety-card { width: 260px; }
  .safety-card.mid { top: 70px; }
  .safety-card.bottom { top: 140px; }
  .download-inner { grid-template-columns: 1fr; text-align: center; }
  .store-buttons { justify-content: center; }
  .qr-hint { justify-content: center; }
  .steps-container { grid-template-columns: 1fr; gap: 32px; }
  .step-arrow { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; gap: 0;
    position: fixed; inset: 0 0 0 auto; width: 280px;
    background: var(--dark); padding: 80px 32px 32px;
    box-shadow: -8px 0 32px rgba(0,0,0,.4);
    transform: translateX(100%); transition: transform .3s ease;
  }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.8); font-size: 1rem; }
  .nav-links .btn-nav { margin-top: 24px; text-align: center; }
  .hamburger { display: flex; z-index: 1100; position: relative; }

  .section-header { margin-bottom: 40px; }
  .services, .how-it-works, .safety, .why, .testimonials, .download { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .stat-divider { display: none; }
  .trusted-badges { gap: 8px; }
  .trust-badge { font-size: .78rem; padding: 6px 14px; }
  .section-header h2 { font-size: 1.7rem; }
}

/* ===== LAUNCH COUNTDOWN ===== */
.countdown-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a0500 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.countdown-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,107,0,.12) 0%, transparent 70%);
}
.countdown-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.countdown-inner h2 {
  color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 12px;
}
.countdown-inner > p { color: rgba(255,255,255,.6); margin-bottom: 52px; font-size: 1rem; }
.countdown-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.countdown-block {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 28px 36px;
  min-width: 130px; text-align: center;
  backdrop-filter: blur(8px);
}
.cd-num {
  display: block;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900; color: var(--white);
  line-height: 1; margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -2px;
}
.cd-label {
  display: block; font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: 2.5px;
}
.cd-colon {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--orange);
  margin-bottom: 30px; line-height: 1;
}

@media (max-width: 600px) {
  .countdown-block { padding: 20px 24px; min-width: 80px; }
  .cd-colon { margin-bottom: 20px; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }
