/* ── Globzy Landing Page – CSS Design System ─────────────────────────────── */

/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
  --primary:       #F59E0B;
  --primary-dark:  #D97706;
  --primary-light: #FDE68A;
  --primary-soft:  #FEF3C7;
  --accent:        #111827;
  --accent-light:  #374151;
  --green:         #22C55E;
  --bg:            #FAFAF8;
  --surface:       #FFFFFF;
  --surface-muted: #F3F4F6;
  --text:          #111827;
  --text-secondary:#6B7280;
  --text-hint:     #9CA3AF;
  --border:        #E5E7EB;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --shadow-soft:   0 2px 8px rgba(17,24,39,.06), 0 12px 32px -8px rgba(17,24,39,.10);
  --shadow-glow:   0 8px 40px -12px rgba(245,158,11,.50);
  --transition:    all .35s cubic-bezier(.22,1,.36,1);
  --font-display:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ───────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 48px -12px rgba(245,158,11,.60);
}
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--accent);
  color: #fff;
}
.btn-dark:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ── Navbar ───────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(250,250,248,.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--text);
  flex: 0 0 auto;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: var(--shadow-glow);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-links a:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
}
.nav-cta { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.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: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 900px at 20% -20%, rgba(245,158,11,.14) 0%, transparent 65%),
    radial-gradient(circle 700px at 90% 60%, rgba(245,158,11,.08) 0%, transparent 55%),
    radial-gradient(circle 500px at 50% 110%, rgba(253,230,138,.20) 0%, transparent 55%);
  z-index: 0;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  border: 1px solid rgba(245,158,11,.30);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-headline {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  margin-bottom: 22px;
}
.hero-headline .accent-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--text);
}
.hero-stat .label {
  font-size: 12px;
  color: var(--text-hint);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── Phone mockup ─────────────────────────────────────────────────────────── */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: phone-float 5s ease-in-out infinite;
}
.phone {
  width: 300px;
  background: var(--surface);
  border-radius: 44px;
  border: 3px solid rgba(0,0,0,.08);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.8);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.phone-top {
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
}
.phone-top-info {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid rgba(255,255,255,.5);
  animation: pulse-ring 2s ease-in-out infinite;
}
.phone-body { padding: 16px 14px; min-height: 380px; background: var(--bg); }
.chat-msg {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .4s ease, transform .4s ease;
}
.chat-msg.shown { opacity: 1; transform: translateY(0); }
.chat-msg.me { flex-direction: row-reverse; }
.chat-bubble {
  max-width: 200px;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.5;
  position: relative;
}
.chat-msg:not(.me) .chat-bubble {
  background: var(--surface);
  border-radius: 4px 18px 18px 18px;
  box-shadow: var(--shadow-soft);
}
.chat-msg.me .chat-bubble {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 18px 4px 18px 18px;
}
.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 700;
}
.chat-meta { font-size: 10px; color: var(--text-hint); margin-top: 3px; text-align: right; }
.chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 4px 18px 18px 18px;
  width: fit-content;
  box-shadow: var(--shadow-soft);
}
.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-hint);
  animation: typing 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .2s; }
.chat-typing span:nth-child(3) { animation-delay: .4s; }
.phone-bottom {
  padding: 10px 14px 14px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-input {
  flex: 1;
  height: 36px;
  background: var(--surface-muted);
  border-radius: 18px;
  padding: 0 14px;
  font-size: 12px;
  color: var(--text-hint);
  display: flex;
  align-items: center;
}
.phone-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  box-shadow: var(--shadow-glow);
}

/* ── Floating bubbles around phone ────────────────────────────────────────── */
.floating-bubble {
  position: absolute;
  background: var(--surface);
  border-radius: 16px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  z-index: 3;
  white-space: nowrap;
}
.fb1 { top: 8%; left: -10%; animation: float-1 4s ease-in-out infinite; }
.fb2 { top: 30%; right: -18%; animation: float-2 5s ease-in-out infinite; }
.fb3 { bottom: 25%; left: -14%; animation: float-1 6s ease-in-out infinite 1s; }
.fb4 { bottom: 8%; right: -10%; animation: float-2 4.5s ease-in-out infinite .5s; }
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
}
.blob1 { width: 340px; height: 340px; background: rgba(245,158,11,.18); top: -80px; right: -80px; }
.blob2 { width: 220px; height: 220px; background: rgba(34,197,94,.12); bottom: -40px; left: -40px; }

/* ── Badge pill ───────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: var(--primary-soft);
  color: var(--primary-dark);
}

/* ── Section headers ──────────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(30px, 3.5vw, 48px);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.text-center { text-align: center; }

/* ── Features ─────────────────────────────────────────────────────────────── */
#features { background: var(--surface); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.feature-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(245,158,11,.40);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.feature-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── How it works ─────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.666% + 20px);
  right: calc(16.666% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-glow);
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(245,158,11,.30);
  animation: step-ring 3s ease-in-out infinite;
}
.step-title { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.step-desc { font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; }

/* ── Stats ────────────────────────────────────────────────────────────────── */
#stats {
  background: linear-gradient(135deg, var(--accent) 0%, #1F2937 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 600px at 30% 50%, rgba(245,158,11,.15), transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-unit { font-size: 32px; }
.stat-label { font-size: 15px; color: rgba(255,255,255,.65); margin-top: 6px; font-weight: 500; }

/* ── Preview / App mockup ─────────────────────────────────────────────────── */
#preview { background: var(--surface); overflow: hidden; }
.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.preview-features { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.preview-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  cursor: default;
}
.preview-feature:hover {
  border-color: rgba(245,158,11,.40);
  background: var(--primary-soft);
}
.preview-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.preview-feature-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.preview-feature-text p { font-size: 13px; color: var(--text-secondary); }
.preview-phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.preview-phone {
  width: 260px;
  background: var(--surface);
  border-radius: 40px;
  border: 3px solid rgba(0,0,0,.08);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.25);
  overflow: hidden;
  animation: phone-float 6s ease-in-out infinite 1s;
}
.discover-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 20px 16px 16px;
  color: #fff;
}
.discover-title { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.discover-sub { font-size: 11px; opacity: .75; }
.discover-search {
  background: rgba(255,255,255,.2);
  border-radius: 10px;
  padding: 8px 12px;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 8px;
}
.user-card-mini {
  margin: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.user-avatar-mini {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  font-weight: 700;
  color: #fff;
}
.user-info-mini h5 { font-size: 13px; font-weight: 700; }
.user-info-mini p { font-size: 11px; color: var(--text-secondary); }
.online-badge {
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ── Testimonials ─────────────────────────────────────────────────────────── */
#testimonials { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(245,158,11,.30);
}
.testimonial-stars { color: var(--primary); font-size: 16px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-location { font-size: 12px; color: var(--text-hint); margin-top: 2px; }
.quote-mark {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 60px;
  color: var(--primary-soft);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ── Safety ───────────────────────────────────────────────────────────────── */
#safety { background: var(--surface); }
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.safety-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.safety-item { display: flex; align-items: flex-start; gap: 14px; }
.safety-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.safety-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.safety-item p { font-size: 13.5px; color: var(--text-secondary); }
.safety-visual {
  background: linear-gradient(135deg, var(--primary-soft), rgba(253,230,138,.3));
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  border: 1.5px solid rgba(245,158,11,.20);
  position: relative;
  overflow: hidden;
}
.safety-visual::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(245,158,11,.10);
  border-radius: 50%;
  bottom: -60px;
  right: -40px;
}
.safety-big-icon { font-size: 80px; margin-bottom: 20px; }
.safety-visual h3 { font-size: 22px; margin-bottom: 10px; }
.safety-visual p { font-size: 14px; color: var(--text-secondary); }

/* ── Download / CTA ───────────────────────────────────────────────────────── */
#download {
  background: linear-gradient(135deg, #111827 0%, #1F2937 50%, #374151 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#download::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 500px at 20% 50%, rgba(245,158,11,.12), transparent 65%),
    radial-gradient(circle 400px at 80% 30%, rgba(253,230,138,.08), transparent 55%);
}
.download-inner { position: relative; z-index: 1; }
.download-title { font-size: clamp(32px, 4vw, 56px); margin-bottom: 16px; }
.download-title .glow { color: var(--primary-light); }
.download-sub { font-size: 18px; color: rgba(255,255,255,.70); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.download-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.20);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.store-btn:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.40);
  transform: translateY(-2px);
}
.store-btn-icon { font-size: 28px; }
.store-btn-text { text-align: left; }
.store-btn-label { font-size: 11px; opacity: .65; display: block; margin-bottom: 2px; }
.store-btn-name { font-size: 16px; font-weight: 800; }
.download-note { font-size: 13px; color: rgba(255,255,255,.45); }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
#faq { background: var(--bg); }
.faq-list { margin-top: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(245,158,11,.40); box-shadow: var(--shadow-soft); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  color: var(--text);
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary-dark); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary-soft);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--primary-dark);
  font-weight: 900;
}
.faq-item.open .faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
#footer { background: var(--accent); color: rgba(255,255,255,.85); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 20px; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.40); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.40); transition: var(--transition); }
.footer-legal a:hover { color: var(--primary); }

/* ── Scroll animations ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── Keyframes ────────────────────────────────────────────────────────────── */
@keyframes phone-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
@keyframes float-1 {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-12px) rotate(1deg); }
}
@keyframes float-2 {
  0%,100% { transform: translateY(0) rotate(1deg); }
  50%      { transform: translateY(-16px) rotate(-1deg); }
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.3); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
@keyframes typing {
  0%,60%,100% { transform: translateY(0); }
  30%          { transform: translateY(-6px); }
}
@keyframes step-ring {
  0%,100% { transform: scale(1); opacity: .4; }
  50%      { transform: scale(1.15); opacity: .15; }
}
@keyframes counter-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .phone-wrap { order: -1; }
  .phone { width: 260px; }
  .fb1,.fb2,.fb3,.fb4 { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .preview-grid { grid-template-columns: 1fr; gap: 48px; }
  .preview-phone-wrap { order: -1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-sub { font-size: 16px; }
  .hero-stats { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-headline { text-align: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; display: flex; }
  .hero-sub { text-align: center; margin: 0 auto 36px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 36px; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
  .download-buttons { flex-direction: column; align-items: center; }
}

/* ── Mobile nav menu ──────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(250,250,248,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-110%);
  transition: transform .3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--text);
  font-size: 16px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu a:hover { background: var(--primary-soft); color: var(--primary-dark); }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }

/* ── Decorative particles ─────────────────────────────────────────────────── */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.particles-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
