/* ZooZnu Website — Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --green:       #25D366;
  --green-dark:  #128C7E;
  --green-darker:#0d5c52;
  --green-light: #E8F8EF;
  --green-faint: #f0fdf4;
  --bg:          #F5F5F0;
  --surface:     #FFFFFF;
  --text:        #1C2B33;
  --text-sec:    #4A5568;
  --muted:       #6B7F8B;
  --border:      #E2E8F0;
  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   24px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
  --font:        'Heebo', Arial, sans-serif;
  --nav-h:       72px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
[hidden] { display: none !important; }

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ──────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--text-sec); line-height: 1.75; }
.lead { font-size: 1.15rem; color: var(--text-sec); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.4); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-ghost { color: var(--green); font-weight: 700; padding: 10px 0; }
.btn-ghost:hover { text-decoration: underline; }
.btn-sm { padding: 10px 20px; font-size: .9rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; border-radius: var(--radius-lg); }
.btn-white { background: #fff; color: var(--green); font-weight: 800; }
.btn-white:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  transition: all .2s;
}
.btn-store:hover { background: #000; transform: translateY(-2px); }
.btn-store .store-icon { font-size: 1.5rem; }
.btn-store .store-sub { font-size: .65rem; font-weight: 400; opacity: .8; display: block; }
.btn-store .store-name { font-size: .95rem; font-weight: 800; display: block; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-sec);
  transition: all .18s;
}
.nav-link:hover, .nav-link.active { color: var(--green); background: var(--green-faint); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.lang-btn {
  background: var(--border);
  color: var(--text-sec);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: .85rem;
  font-weight: 700;
  transition: all .18s;
  font-family: var(--font);
}
.lang-btn:hover { background: var(--green-light); color: var(--green-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-inline-start: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
body[dir="rtl"] .hamburger.open span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 5px); }
body[dir="rtl"] .hamburger.open span:nth-child(3) { transform: rotate(45deg) translate(-5px, -5px); }

/* ── Page offset ─────────────────────────────────────────── */
.page-body { padding-top: var(--nav-h); }

/* ── Section spacing ─────────────────────────────────────── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, var(--green-faint) 50%, #fff 100%);
  padding: calc(var(--nav-h) + 48px) 0 80px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  inset-inline-end: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,211,102,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 24px; }
.hero-title { color: var(--text); }
.hero-title .accent { color: var(--green); }
.hero-desc { font-size: 1.15rem; color: var(--text-sec); line-height: 1.8; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 8px; }
.hero-stores { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.hero-visual { display: flex; justify-content: center; align-items: center; }

/* ── Phone Mockup ────────────────────────────────────────── */
.phone-wrap {
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,.22));
}
.phone {
  width: 270px;
  height: 540px;
  background: #1C2B33;
  border-radius: 44px;
  padding: 12px;
  border: 2px solid rgba(255,255,255,.12);
}
.phone-screen {
  background: var(--bg);
  border-radius: 34px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  height: 22px;
  background: #1C2B33;
  margin: 0 auto;
  width: 90px;
  border-radius: 0 0 14px 14px;
  flex-shrink: 0;
}
.phone-content {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.app-bar {
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.app-bar-title { font-size: 13px; font-weight: 800; color: var(--green); }
.app-bar-icon { font-size: 16px; }
.app-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.app-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.app-card-row { display: flex; align-items: center; gap: 8px; }
.app-card-text { font-size: 11px; font-weight: 700; color: var(--text); }
.app-card-meta { font-size: 10px; color: var(--muted); }
.app-card-badge {
  margin-inline-start: auto;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 20px;
}
.phone-tab-bar {
  background: #fff;
  height: 44px;
  border-radius: 0 0 34px 34px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.tab-icon { font-size: 18px; opacity: .5; }
.tab-icon.active { opacity: 1; }
.phone-badge {
  position: absolute;
  top: -12px;
  inset-inline-start: -12px;
  background: var(--surface);
  border-radius: 16px;
  padding: 8px 14px;
  box-shadow: var(--shadow);
  font-size: .8rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}
.phone-badge2 {
  position: absolute;
  bottom: 40px;
  inset-inline-end: -20px;
  background: var(--green);
  color: #fff;
  border-radius: 16px;
  padding: 8px 14px;
  box-shadow: 0 8px 20px rgba(37,211,102,.4);
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
  z-index: 10;
}

/* ── Features Grid ───────────────────────────────────────── */
.features { background: var(--surface); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .25s;
  border: 1px solid transparent;
}
.feature-card:hover {
  background: var(--surface);
  border-color: var(--green-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.feature-desc { font-size: .95rem; color: var(--text-sec); line-height: 1.65; }
.feature-coming {
  display: inline-block;
  background: var(--border);
  color: var(--muted);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 8px;
}

/* ── How It Works ────────────────────────────────────────── */
.how { background: var(--bg); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 40px;
  inset-inline-start: 15%;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  pointer-events: none;
}
body[dir="ltr"] .steps-row::before {
  background: linear-gradient(90deg, var(--green), transparent);
}
.step { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
  position: relative;
  z-index: 1;
}
.step-title { font-size: 1.15rem; font-weight: 800; }
.step-desc { font-size: .95rem; color: var(--muted); max-width: 220px; }

/* ── Reviews ─────────────────────────────────────────────── */
.reviews { background: var(--surface); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .25s;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; }
.review-text { font-size: 1rem; color: var(--text-sec); line-height: 1.75; font-style: italic; }
.review-text::before { content: '"'; font-size: 2rem; color: var(--green); line-height: 0; vertical-align: -0.4em; margin-inline-end: 4px; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar { font-size: 2rem; width: 44px; height: 44px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.review-name { font-weight: 700; font-size: .95rem; }
.review-loc { font-size: .8rem; color: var(--muted); }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
  text-align: center;
  padding: 96px 0;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 500px; margin: 0 auto 40px; }
.cta-stores { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
  padding: calc(var(--nav-h) + 56px) 0 56px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ── Content Page ────────────────────────────────────────── */
.content-page { background: var(--surface); padding: 80px 0; }
.content-wrap { max-width: 760px; margin: 0 auto; }
.content-wrap h2 { font-size: 1.5rem; margin-top: 48px; margin-bottom: 12px; color: var(--text); }
.content-wrap h3 { font-size: 1.1rem; margin-top: 32px; margin-bottom: 8px; color: var(--text); }
.content-wrap p { margin-bottom: 16px; }
.content-wrap ul, .content-wrap ol { margin: 12px 0 20px 20px; color: var(--text-sec); }
.content-wrap li { margin-bottom: 8px; line-height: 1.7; }
body[dir="rtl"] .content-wrap ul,
body[dir="rtl"] .content-wrap ol { margin: 12px 20px 20px 0; }
.content-wrap .updated {
  font-size: .85rem;
  color: var(--muted);
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  margin-bottom: 32px;
  display: inline-block;
}

/* ── Values (About) ──────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all .25s;
}
.value-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.value-icon { font-size: 2.5rem; }
.value-title { font-size: 1.2rem; font-weight: 800; }
.value-desc { font-size: .95rem; color: var(--text-sec); line-height: 1.7; }

/* ── Safety page ─────────────────────────────────────────── */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.safety-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-inline-start: 4px solid var(--green);
  box-shadow: var(--shadow-sm);
}
.safety-icon { font-size: 2rem; margin-bottom: 12px; }
.safety-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.safety-desc { font-size: .95rem; color: var(--text-sec); line-height: 1.7; }
.age-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.age-card {
  background: var(--green-faint);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 2px solid var(--green-light);
}
.age-range { font-size: 1.5rem; font-weight: 900; color: var(--green-dark); }
.age-label { font-size: .9rem; color: var(--text-sec); margin-top: 6px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--green); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  gap: 16px;
  user-select: none;
  color: var(--text);
  font-family: var(--font);
  width: 100%;
  text-align: inherit;
  background: none;
  border: none;
}
.faq-q:hover { color: var(--green); }
.faq-arrow { font-size: 1.1rem; transition: transform .25s; flex-shrink: 0; color: var(--green); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  padding: 0 24px;
  font-size: .95rem;
  color: var(--text-sec);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }

/* ── Contact Form ─────────────────────────────────────────── */
.form-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}
.form-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.form-sub { font-size: .95rem; color: var(--muted); margin-bottom: 28px; }
.form-row { display: flex; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; flex: 1; margin-bottom: 16px; }
.form-label { font-size: .85rem; font-weight: 700; color: var(--text-sec); }
.form-input, .form-select, .form-textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--green);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius);
  transition: all .22s;
  font-family: var(--font);
  cursor: pointer;
  border: none;
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.form-success {
  text-align: center;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success-icon { font-size: 3rem; }
.form-success-title { font-size: 1.25rem; font-weight: 800; }
.form-success-sub { color: var(--muted); }

/* ── Blog ────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
  border: 1px solid var(--border);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.blog-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.blog-tag {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}
.blog-title { font-size: 1.1rem; font-weight: 800; line-height: 1.4; }
.blog-excerpt { font-size: .9rem; color: var(--text-sec); line-height: 1.6; }
.blog-meta { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.blog-read-more { font-size: .85rem; font-weight: 700; color: var(--green); display: inline-flex; align-items: center; gap: 4px; }
.blog-read-more:hover { text-decoration: underline; }

/* ── Blog Post ───────────────────────────────────────────── */
.blog-post-hero { background: var(--green-faint); padding: calc(var(--nav-h) + 56px) 0 48px; }
.blog-post-meta { font-size: .9rem; color: var(--muted); margin-bottom: 16px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.blog-post-body { max-width: 760px; margin: 0 auto; padding: 56px 24px 96px; }
.blog-post-body h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.blog-post-body p { margin-bottom: 20px; line-height: 1.85; }
.blog-post-body ul { margin: 12px 0 20px; padding-inline-start: 24px; color: var(--text-sec); }
.blog-post-body li { margin-bottom: 8px; line-height: 1.7; }
.blog-post-back { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-weight: 700; margin-bottom: 24px; }
.blog-post-back:hover { text-decoration: underline; }

/* ── Business / Coming Soon ──────────────────────────────── */
.coming-soon-section {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, var(--green-faint) 100%);
  padding: calc(var(--nav-h) + 48px) 0 80px;
}
.coming-soon-inner { max-width: 600px; margin: 0 auto; text-align: center; padding: 0 24px; }
.coming-soon-icon { font-size: 5rem; margin-bottom: 24px; }
.coming-soon-badge { margin-bottom: 20px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
}
.footer-logo-icon {
  width: 36px; height: 36px;
  background: var(--green);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
}
.footer-tagline { font-size: .9rem; line-height: 1.7; max-width: 240px; }
.footer-stores { display: flex; gap: 10px; flex-direction: column; }
.footer-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  transition: background .2s;
}
.footer-store-btn:hover { background: rgba(255,255,255,.15); }
.footer-col-title { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.65); transition: color .18s; }
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .85rem; }
.footer-email a { color: var(--green); font-weight: 700; }
.footer-email a:hover { text-decoration: underline; }

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

/* ── Dividers / utilities ────────────────────────────────── */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .phone { width: 220px; height: 440px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .steps-row::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .age-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform .28s ease;
    z-index: 999;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-link { padding: 12px 16px; font-size: 1rem; }
  .hamburger { display: flex; }
  .nav-actions .btn { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; gap: 0; }
  .age-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.4rem; }
  .hero { padding-top: calc(var(--nav-h) + 32px); }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-stores { flex-direction: column; }
  .cta-stores { flex-direction: column; align-items: center; }
  .phone { width: 190px; height: 380px; }
  .form-wrap { padding: 24px 20px; }
}

/* ── Brand name ──────────────────────────────────────────── */
.brand { color: var(--green); font-weight: 900; }

/* ── Store Badges (official-style) ───────────────────────── */
.store-badge-img {
  display: inline-block;
  transition: opacity .2s, transform .2s;
  cursor: pointer;
}
.store-badge-img:hover { opacity: .85; transform: translateY(-2px); }
.store-badge-img img { display: block; height: 54px; width: auto; }
.hero-stores { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-badge-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Screenshots Section ─────────────────────────────────── */
.screenshots { background: var(--bg); }
.screen-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.screen-row:last-child { margin-bottom: 0; }
.screen-row.reverse .screen-text { order: 2; }
.screen-row.reverse .screen-phone-wrap { order: 1; }
.screen-text { display: flex; flex-direction: column; gap: 20px; }
.screen-label { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--green-dark); background: var(--green-light); padding: 4px 12px; border-radius: 20px; width: fit-content; }
.screen-title { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900; line-height: 1.25; color: var(--text); }
.screen-desc { font-size: 1.05rem; color: var(--text-sec); line-height: 1.8; }
.screen-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.screen-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--text-sec); line-height: 1.6; }
.screen-bullets li::before { content: '✓'; color: var(--green); font-weight: 900; margin-top: 1px; flex-shrink: 0; }
.screen-phone-wrap { display: flex; justify-content: center; }

/* Screenshot phone — larger */
.sphone {
  width: 240px;
  height: 490px;
  background: #1C2B33;
  border-radius: 44px;
  padding: 11px;
  border: 2px solid rgba(255,255,255,.1);
  filter: drop-shadow(0 32px 64px rgba(0,0,0,.2));
  flex-shrink: 0;
}
.sphone-screen {
  background: var(--bg);
  border-radius: 34px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sphone-notch {
  height: 20px;
  background: #1C2B33;
  margin: 0 auto;
  width: 80px;
  border-radius: 0 0 12px 12px;
  flex-shrink: 0;
}
.sphone-bar {
  background: #fff;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.sphone-bar-title { font-size: 12px; font-weight: 900; color: var(--green); }
.sphone-bar-icons { display: flex; gap: 8px; font-size: 14px; }
.sphone-tabs {
  background: #fff;
  padding: 6px 10px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.sphone-tab {
  font-size: 9px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  color: var(--muted);
}
.sphone-tab.active { background: var(--green); color: #fff; }
.sphone-content { flex: 1; padding: 8px 9px; display: flex; flex-direction: column; gap: 7px; overflow: hidden; }
.sphone-card {
  background: #fff;
  border-radius: 12px;
  padding: 10px 11px;
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
  flex-shrink: 0;
}
.sphone-card-top { display: flex; align-items: center; gap: 7px; margin-bottom: 5px; }
.sphone-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.sphone-card-title { font-size: 11px; font-weight: 800; color: var(--text); flex: 1; }
.sphone-badge { font-size: 8px; font-weight: 800; padding: 2px 6px; border-radius: 10px; background: var(--green-light); color: var(--green-dark); }
.sphone-badge.full { background: #E8F5E9; color: #1DA851; }
.sphone-card-meta { font-size: 9px; color: var(--muted); display: flex; gap: 8px; }
.sphone-join-btn { font-size: 9px; font-weight: 800; color: var(--green); background: var(--green-faint); border-radius: 8px; padding: 3px 8px; margin-top: 5px; display: inline-block; }
.sphone-tabbar {
  background: #fff;
  height: 40px;
  border-radius: 0 0 34px 34px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.sphone-tabbar span { font-size: 16px; opacity: .45; }
.sphone-tabbar span.active { opacity: 1; }

/* Map screen */
.sphone-map {
  flex: 1;
  background: #e8efe8;
  position: relative;
  overflow: hidden;
}
.smap-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.smap-road-h {
  position: absolute;
  left: 0; right: 0;
  height: 6px;
  background: rgba(255,255,255,.8);
  border-radius: 3px;
}
.smap-road-v {
  position: absolute;
  top: 0; bottom: 0;
  width: 6px;
  background: rgba(255,255,255,.8);
  border-radius: 3px;
}
.smap-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -100%);
}
.smap-pin-bubble {
  background: var(--green);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(37,211,102,.4);
}
.smap-pin-bubble.orange { background: #F59E0B; box-shadow: 0 2px 6px rgba(245,158,11,.4); }
.smap-pin-bubble.purple { background: #8B5CF6; box-shadow: 0 2px 6px rgba(139,92,246,.4); }
.smap-pin-tail {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid var(--green);
}
.smap-pin-tail.orange { border-top-color: #F59E0B; }
.smap-pin-tail.purple { border-top-color: #8B5CF6; }
.smap-popup {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  padding: 7px 9px;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  font-size: 9px;
  min-width: 100px;
}
.smap-popup-title { font-weight: 800; color: var(--text); margin-bottom: 2px; font-size: 10px; }
.smap-popup-meta { color: var(--muted); }
.smap-popup-btn { background: var(--green); color: #fff; font-size: 8px; font-weight: 800; padding: 3px 7px; border-radius: 6px; margin-top: 5px; display: inline-block; }
.smap-me {
  position: absolute;
  width: 14px; height: 14px;
  background: #4285F4;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(66,133,244,.2);
}

/* Chat screen */
.sphone-chat-header {
  background: #fff;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.sphone-chat-avatar { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.sphone-chat-info { flex: 1; }
.sphone-chat-name { font-size: 11px; font-weight: 800; color: var(--text); }
.sphone-chat-sub { font-size: 9px; color: var(--muted); }
.sphone-messages { flex: 1; padding: 8px 9px; display: flex; flex-direction: column; gap: 6px; overflow: hidden; }
.smsg { display: flex; flex-direction: column; max-width: 75%; }
.smsg.me { align-self: flex-end; }
.smsg.other { align-self: flex-start; }
.smsg-sender { font-size: 8px; color: var(--muted); margin-bottom: 2px; }
.smsg-bubble {
  border-radius: 12px;
  padding: 6px 9px;
  font-size: 9.5px;
  line-height: 1.4;
  color: var(--text);
}
.smsg.me .smsg-bubble { background: var(--green); color: #fff; border-bottom-right-radius: 3px; }
.smsg.other .smsg-bubble { background: #fff; border-bottom-left-radius: 3px; box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.smsg-img { width: 90px; height: 60px; border-radius: 10px; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; overflow: hidden; }
.sphone-input {
  background: #fff;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.sphone-input-field {
  flex: 1;
  background: var(--bg);
  border-radius: 16px;
  height: 26px;
  border: 1px solid var(--border);
}
.sphone-input-send {
  width: 26px; height: 26px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
}

/* Create screen */
.sphone-create-header {
  background: #fff;
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.sphone-step-row { display: flex; gap: 4px; margin-top: 5px; }
.sphone-step-dot { flex: 1; height: 3px; border-radius: 3px; background: var(--border); }
.sphone-step-dot.done { background: var(--green); }
.sphone-step-dot.active { background: var(--green); opacity: .5; }
.sphone-create-title { font-size: 11px; font-weight: 800; color: var(--text); }
.sphone-create-sub { font-size: 9px; color: var(--muted); margin-top: 2px; }
.sphone-cats { flex: 1; padding: 8px 9px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; align-content: start; }
.sphone-cat {
  background: #fff;
  border-radius: 10px;
  padding: 8px 4px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border: 1.5px solid var(--border);
  transition: all .15s;
}
.sphone-cat.sel { border-color: var(--green); background: var(--green-faint); }
.sphone-cat-icon { font-size: 20px; }
.sphone-cat-label { font-size: 7.5px; font-weight: 700; color: var(--text-sec); text-align: center; }
.sphone-cat.sel .sphone-cat-label { color: var(--green-dark); }
.sphone-create-btn {
  background: var(--green);
  margin: 8px;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

/* ── Demo / Animated Preview ─────────────────────────────── */
.demo-section { background: var(--text); padding: 96px 0; overflow: hidden; }
.demo-section .label { background: rgba(37,211,102,.15); color: var(--green); }
.demo-section h2 { color: #fff; }
.demo-section .section-sub { color: rgba(255,255,255,.6); }
.demo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 56px; }
.demo-phone-wrap { display: flex; justify-content: center; position: relative; }
.demo-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,211,102,.3) 0%, transparent 70%);
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.demo-phone {
  width: 240px;
  height: 490px;
  background: #0a1520;
  border-radius: 44px;
  padding: 11px;
  border: 1.5px solid rgba(37,211,102,.3);
  box-shadow: 0 0 40px rgba(37,211,102,.15), 0 32px 64px rgba(0,0,0,.5);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.demo-screen {
  position: absolute;
  inset: 11px;
  border-radius: 34px;
  overflow: hidden;
  background: var(--bg);
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
.demo-screen.active { opacity: 1; pointer-events: auto; }
.demo-texts { display: flex; flex-direction: column; gap: 32px; }
.demo-step { display: flex; gap: 16px; align-items: flex-start; opacity: .45; transition: opacity .4s; cursor: pointer; }
.demo-step.active { opacity: 1; }
.demo-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .4s;
  border: 1.5px solid rgba(255,255,255,.1);
}
.demo-step.active .demo-step-num { background: var(--green); color: #fff; border-color: var(--green); }
.demo-step-text h4 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.demo-step-text p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.demo-progress {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.demo-dot {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,.15);
  overflow: hidden;
  cursor: pointer;
}
.demo-dot-fill {
  height: 100%;
  background: var(--green);
  width: 0%;
  transition: width 0.1s linear;
}

@media (max-width: 960px) {
  .screen-row { grid-template-columns: 1fr; gap: 40px; }
  .screen-row.reverse .screen-text { order: unset; }
  .screen-row.reverse .screen-phone-wrap { order: unset; }
  .screen-phone-wrap { order: -1; }
  .demo-inner { grid-template-columns: 1fr; gap: 48px; }
  .demo-phone-wrap { order: -1; }
}
@media (max-width: 480px) {
  .sphone { width: 200px; height: 408px; }
  .demo-phone { width: 200px; height: 408px; }
}

/* ── Real screenshot phone frames ───────────────────────── */
.screenshot-phone {
  position: relative;
  width: 240px;
  flex-shrink: 0;
}
.screenshot-phone img {
  width: 100%;
  display: block;
}
/* Privacy blur overlay — covers profile photos / usernames */
.screenshot-phone .privacy-blur {
  position: absolute;
  left: 11px;
  right: 11px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: rgba(10,21,32,0.55);
  pointer-events: none;
}
/* Demo phone real screenshot */
.demo-screenshot-phone {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}
.demo-screenshot-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.demo-screenshot-phone .privacy-blur {
  position: absolute;
  left: 0;
  right: 0;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
