*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f3f4f6;
  color: #111827;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
}

/* Every direct section clipped — belt AND braces */
section, nav, footer, .stats-band, .video-section, .dl-band, .screenshots-section {
  overflow-x: hidden;
  max-width: 100%;
}

:root {
  --green:        #10b981;
  --green-dark:   #059669;
  --green-light:  #d1fae5;
  --green-lighter:#a7f3d0;
  --green-glow:   rgba(16,185,129,0.18);
  --gray-50:  #f9fafb; --gray-100: #f3f4f6; --gray-200: #e5e7eb;
  --gray-300: #d1d5db; --gray-400: #9ca3af; --gray-500: #6b7280;
  --gray-600: #4b5563; --gray-700: #374151; --gray-800: #1f2937;
  --gray-900: #111827; --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-green: 0 8px 24px rgba(16,185,129,0.28);
  --r-sm:4px; --r-md:12px; --r-lg:16px; --r-xl:20px; --r-full:9999px;
}

/* ═══════════ NAV ═══════════ */
nav {
  background: #fff;
  padding: 0 40px;
  height: 64px;
  box-shadow: var(--shadow-sm);
  display: flex; justify-content: space-between; align-items: center;
  position: sticky; top: 0; z-index: 1000;
  width: 100%;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 32px; }
.nav-logo-text {
  font-size: 20px; font-weight: 800;
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { color: #6b7280; font-size: 14px; font-weight: 600; text-decoration: none; }
.nav-links a:hover { color: var(--green); }
.nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.btn-ghost {
  color: #4b5563; background: none; border: 1.5px solid #e5e7eb;
  font-family: inherit; font-size: 14px; font-weight: 600;
  padding: 8px 14px; border-radius: var(--r-md); cursor: pointer;
  text-decoration: none; white-space: nowrap;
}
.btn-cta {
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff; border: none; border-radius: var(--r-full);
  padding: 9px 18px; font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  box-shadow: var(--shadow-green);
}

/* ═══════════ HERO ═══════════ */
.hero { background: #fff; overflow: hidden; }
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;   /* right col has known max width */
  gap: 48px;
  align-items: center;
  padding: 64px 40px 72px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #d1fae5; color: #065f46;
  padding: 5px 13px; border-radius: var(--r-full);
  font-size: 12px; font-weight: 700; margin-bottom: 20px;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.hero h1 .accent { background: linear-gradient(135deg,#10b981,#059669); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 16px; color: #6b7280; line-height: 1.75; margin-bottom: 28px; }

/* Green CTA card */
.hero-cta-card {
  background: linear-gradient(135deg,#f0fdf4,#dcfce7);
  border: 2px solid #a7f3d0; border-radius: var(--r-xl);
  padding: 22px; margin-bottom: 22px;
}
.hcc-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #059669; margin-bottom: 7px; }
.hcc-title { font-size: 19px; font-weight: 800; margin-bottom: 3px; }
.hcc-sub { font-size: 13px; color: #6b7280; margin-bottom: 16px; }

.btn-dl {
  display: flex; align-items: center; gap: 11px;
  background: linear-gradient(135deg,#10b981,#059669);
  color: #fff; text-decoration: none; border-radius: var(--r-lg);
  padding: 13px 18px; font-size: 16px; font-weight: 800;
  box-shadow: var(--shadow-green); width: 100%;
}
.btn-dl-icon { width: 40px; height: 40px; background: rgba(255,255,255,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.btn-dl-lbl { font-size: 11px; font-weight: 500; opacity: .85; }
.btn-dl-act { font-size: 16px; font-weight: 900; line-height: 1.1; }

.store-row { display: flex; gap: 8px; margin-top: 10px; }
.store-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  background: #fff; border: 1.5px solid #e5e7eb;
  color: #374151; text-decoration: none; border-radius: var(--r-md);
  padding: 9px 8px; font-size: 13px; font-weight: 600;
}
.store-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.store-btn:hover { border-color: var(--green); }

/* Social proof */
.hero-proof { display: flex; align-items: center; gap: 12px; }
.proof-avs { display: flex; }
.proof-av {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff;
  background: linear-gradient(135deg,#10b981,#34d399);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff; margin-left: -6px;
}
.proof-av:first-child { margin-left: 0; }
.proof-txt { font-size: 12px; color: #6b7280; line-height: 1.4; }
.proof-txt strong { color: #1f2937; }
.stars-xs { color: #f59e0b; font-size: 11px; }

/* Hero phone */
.hero-phone-col { display: flex; justify-content: center; align-items: center; }

/* ═══════════ PHONE FRAME (shared) ═══════════ */
/* Width is percentage-based so it always fits its container */
.phone-frame {
  width: 100%;         /* fills column */
  max-width: 260px;    /* never bigger than this */
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 36px;
  /* Single shadow ring — no double-ring that adds hidden width */
  box-shadow: 0 0 0 6px #fff, 0 0 0 7px #e5e7eb, 0 24px 60px rgba(0,0,0,0.13);
  overflow: hidden;
  position: relative;
  animation: floatPhone 5s ease-in-out infinite;
}
@keyframes floatPhone { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 22px; background: #111827;
  border-radius: 0 0 14px 14px; z-index: 10;
}
/* Screenshot fills the frame; padding-top clears the notch */
.phone-img { display: block; width: 100%; height: auto; padding-top: 22px; background: #f8fafc; }

/* Placeholder (shown until real screenshot added) */
.phone-placeholder {
  width: 100%; aspect-ratio: 9/19.5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; background: #f8fafc; padding: 32px 12px 16px;
  color: #9ca3af;
}
.pp-icon { font-size: 36px; }
.pp-lbl { font-size: 12px; font-weight: 700; text-align: center; }
.pp-hint { font-size: 10px; color: #d1d5db; text-align: center; line-height: 1.5; }

/* ═══════════ STATS BAND ═══════════ */
.stats-band {
  background: #fff;
  border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-cell { padding: 28px 16px; text-align: center; border-right: 1px solid #e5e7eb; }
.stat-cell:last-child { border-right: none; }
.stat-num { font-size: 34px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 4px; }
.stat-lbl { font-size: 12px; color: #6b7280; }

/* ═══════════ SECTION BASE ═══════════ */
.section { padding: 72px 40px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--green); margin-bottom: 10px; }
.sec-title { font-size: clamp(24px, 3vw, 40px); font-weight: 900; line-height: 1.12; margin-bottom: 12px; }
.sec-sub { font-size: 15px; color: #6b7280; line-height: 1.75; max-width: 520px; }

/* ═══════════ VIDEO SECTION ═══════════ */
.video-section { background: #111827; overflow: hidden; }
.video-inner {
  max-width: 1160px; margin: 0 auto; padding: 72px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.video-text .eyebrow { color: #a7f3d0; }
.video-text .sec-title { color: #fff; }
.video-text .sec-sub { color: #9ca3af; margin-bottom: 28px; }
.vid-feats { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.vid-feat { display: flex; align-items: flex-start; gap: 11px; }
.vid-feat-ico {
  width: 36px; height: 36px; border-radius: 9px; flex-shrink: 0;
  background: rgba(16,185,129,.14); border: 1px solid rgba(16,185,129,.22);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.vid-feat-body strong { display: block; color: #fff; font-size: 14px; font-weight: 700; }
.vid-feat-body span { color: #9ca3af; font-size: 13px; }

.video-player-wrap { position: relative; }
.video-player {
  width: 100%; border-radius: 18px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5); cursor: pointer; position: relative;
}
.video-player video { width: 100%; display: block; }
.video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.22);
}
.play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.95); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
}
.play-btn svg { width: 22px; height: 22px; margin-left: 3px; fill: #059669; }
.video-tag {
  position: absolute; bottom: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff; font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: var(--r-full); white-space: nowrap;
  box-shadow: var(--shadow-green);
}

.video-phone-frame {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background: #1a1a1a;
  border: 2px solid #374151;
  border-radius: 44px;
  box-shadow:
    0 0 0 6px #111827,
    0 0 0 7px #374151,
    0 40px 80px rgba(0,0,0,0.6);
  position: relative;
  padding: 18px 10px 24px; /* top pad for notch, bottom for home bar */
  animation: floatPhone 5s ease-in-out infinite;
}

.video-phone-notch {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #111827;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

/* Optional: home bar indicator at bottom */
.video-phone-frame::after {
  content: '';
  position: absolute;
  bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
}

.video-phone-screen {
  border-radius: 30px;
  overflow: hidden;
  background: #000;
}

.video-phone-screen .video-player {
  border-radius: 0; /* screen handles the rounding */
  box-shadow: none;  /* frame handles the shadow */
}
	
.video-phone-frame {
  animation: none;
}

/* ═══════════ FEATURES ═══════════ */
.features-section { background: #fff; }
.feats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.feat-card {
  background: #f9fafb; border-radius: var(--r-xl); padding: 26px;
  border: 1px solid #e5e7eb; transition: all .25s;
}
.feat-card:hover { border-color: #a7f3d0; box-shadow: 0 8px 24px rgba(16,185,129,.15); transform: translateY(-3px); }
.feat-ico { width: 48px; height: 48px; border-radius: 12px; background: #d1fae5; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.feat-title { font-size: 16px; font-weight: 800; margin-bottom: 7px; }
.feat-desc { font-size: 13px; color: #6b7280; line-height: 1.7; }

/* ═══════════ SCREENSHOTS ═══════════ */
.screenshots-section { background: #f9fafb; overflow: hidden; }
.screenshots-inner { max-width: 1160px; margin: 0 auto; padding: 72px 40px 88px; }
.screenshots-header { text-align: center; margin-bottom: 56px; }

.ss-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: end;
}
.ss-item { display: flex; flex-direction: column; align-items: center; }

/* Phone frame for screenshots */
.ss-phone {
  width: 100%;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 30px;
  box-shadow: 0 0 0 5px #fff, 0 0 0 6px #e5e7eb, 0 16px 40px rgba(0,0,0,.10);
  overflow: hidden; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.ss-item:hover .ss-phone {
  transform: translateY(-5px);
  box-shadow: 0 0 0 5px #fff, 0 0 0 6px #a7f3d0, 0 24px 50px rgba(0,0,0,.13);
}
.ss-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 66px; height: 18px; background: #111827;
  border-radius: 0 0 12px 12px; z-index: 10;
}
/* Screenshot image — replace placeholder with real <img> */
.ss-img { display: block; width: 100%; height: auto; padding-top: 20px; background: #f8fafc; }
.ss-placeholder {
  width: 100%; aspect-ratio: 9/19.5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; background: #f8fafc; padding: 28px 10px 14px; color: #9ca3af;
}
.ss-placeholder-icon { font-size: 32px; }
.ss-placeholder-lbl { font-size: 11px; font-weight: 700; text-align: center; }
.ss-placeholder-hint { font-size: 9px; color: #d1d5db; text-align: center; line-height: 1.5; }

.ss-label { font-size: 15px; font-weight: 800; color: #1f2937; margin-top: 14px; }
.ss-desc { font-size: 12px; color: #6b7280; text-align: center; line-height: 1.55; margin-top: 3px; }

/* ═══════════ HOW IT WORKS ═══════════ */
.hiw-section { background: #fff; }
.steps-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 6px; margin-top: 48px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 28px;
  left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 2px; background: linear-gradient(90deg,#a7f3d0,#10b981,#a7f3d0); z-index: 0;
}
.step-card {
  background: #f9fafb; border-radius: var(--r-xl); padding: 22px 18px;
  border: 1px solid #e5e7eb; text-align: center; position: relative; z-index: 1;
  transition: all .25s;
}
.step-card:hover { border-color: #a7f3d0; box-shadow: 0 6px 20px rgba(16,185,129,.15); transform: translateY(-3px); }
.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg,#10b981,#059669);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 900; color: #fff; margin: 0 auto 14px;
  box-shadow: var(--shadow-green);
}
.step-emoji { font-size: 24px; display: block; margin-bottom: 9px; }
.step-title { font-size: 14px; font-weight: 800; margin-bottom: 6px; }
.step-desc { font-size: 12px; color: #6b7280; line-height: 1.65; }

/* ═══════════ TESTIMONIALS ═══════════ */
.t-section { background: #f9fafb; }
.rating-row { display: flex; align-items: center; gap: 14px; margin: 10px 0 44px; }
.rating-big { font-size: 44px; font-weight: 900; line-height: 1; }
.rating-stars { color: #f59e0b; font-size: 18px; margin-bottom: 2px; }
.rating-sub { font-size: 12px; color: #6b7280; }
.t-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.t-card {
  background: #fff; border-radius: var(--r-xl); padding: 22px;
  border: 1px solid #e5e7eb; transition: all .25s;
}
.t-card:hover { border-color: #a7f3d0; box-shadow: 0 6px 20px rgba(16,185,129,.15); transform: translateY(-2px); }
.t-stars { color: #f59e0b; margin-bottom: 10px; font-size: 14px; }
.t-quote { font-size: 14px; color: #4b5563; line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-av {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg,#10b981,#34d399);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff;
}
.t-name { font-size: 14px; font-weight: 700; }
.t-role { font-size: 12px; color: #9ca3af; }

/* ═══════════ DOWNLOAD BAND ═══════════ */
.dl-band { background: linear-gradient(135deg,#064e3b,#10b981 60%,#34d399); padding: 64px 40px; overflow: hidden; position: relative; }
.dl-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size: 26px 26px;
}
.dl-inner {
  max-width: 1160px; margin: 0 auto; position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.dl-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24);
  color: #fff; padding: 4px 11px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 700; margin-bottom: 14px;
}
.dl-dot { width: 5px; height: 5px; border-radius: 50%; background: #fff; animation: blink 2s infinite; }
.dl-band h2 { font-size: clamp(24px,3vw,42px); font-weight: 900; color: #fff; margin-bottom: 10px; line-height: 1.1; }
.dl-band p { font-size: 16px; color: rgba(255,255,255,.85); margin-bottom: 28px; }
.dl-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #064e3b; border-radius: var(--r-md);
  padding: 12px 22px; font-size: 15px; font-weight: 800;
  text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,.18);
}
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: #fff;
  border: 2px solid rgba(255,255,255,.28); border-radius: var(--r-md);
  padding: 12px 22px; font-size: 15px; font-weight: 700;
  text-decoration: none;
}
.dl-qr {
  background: #fff; border-radius: 16px; padding: 20px; text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.18); width: 156px; flex-shrink: 0;
}
.dl-qr-box {
  width: 84px; height: 84px; background: #111827; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; margin: 0 auto 8px;
}
.dl-qr-url { font-size: 9px; color: #6b7280; line-height: 1.5; }
.dl-qr-url strong { display: block; color: #059669; font-size: 10px; font-weight: 800; }

/* ═══════════ FAQ ═══════════ */
.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 40px; }
.faq-item { background: #f9fafb; border-radius: var(--r-lg); padding: 20px; border: 1px solid #e5e7eb; }
.faq-item:hover { border-color: #a7f3d0; }
.faq-q { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.faq-a { font-size: 13px; color: #6b7280; line-height: 1.7; }

/* ═══════════ FOOTER ═══════════ */
footer { background: #111827; color: #9ca3af; padding: 52px 40px 26px; overflow: hidden; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-size: 20px; font-weight: 800; display: block; margin-bottom: 9px; background: linear-gradient(135deg,#10b981,#34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-app-links { display: flex; flex-direction: column; gap: 7px; }
.footer-app-link {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: #d1d5db; border-radius: var(--r-md); padding: 8px 12px;
  font-size: 12px; font-weight: 600; text-decoration: none;
}
.footer-app-link:hover { background: rgba(255,255,255,.12); }
.footer-col-title { font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 12px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: #9ca3af; text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; font-size: 12px;
}
.footer-bottom a { color: #9ca3af; text-decoration: none; }
.footer-bottom a:hover { color: var(--green); }

/* ═══════════════════════════════════
   RESPONSIVE — mobile-first fixes
   Breakpoints: tablet ≤900, mobile ≤600
═══════════════════════════════════ */

/* — Tablet 601–900 — */
@media (max-width: 900px) {
  nav { padding: 0 20px; height: 56px; }
  .nav-links { display: none; }

  /* Hero: single column, phone above text */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 44px 20px 52px;
    gap: 36px;
  }
  .hero-phone-col { order: -1; }       /* phone first on mobile */
  .phone-frame { max-width: 200px; animation: none; }

  .stats-band { grid-template-columns: repeat(2,1fr); }
  .stat-cell { padding: 22px 12px; }

  .section { padding: 56px 20px; }

  /* Video: stack vertically */
  .video-inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 20px; }

  .feats-grid { grid-template-columns: 1fr 1fr; }

  /* Screenshots: 2-col */
  .screenshots-inner { padding: 56px 20px 72px; }
  .ss-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }

  /* Steps: 2-col */
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .steps-grid::before { display: none; }

  .t-grid { grid-template-columns: 1fr; }

  /* Download band */
  .dl-band { padding: 52px 20px; }
  .dl-inner { grid-template-columns: 1fr; gap: 0; }
  .dl-qr { display: none; }
  .dl-btns { flex-direction: column; }
  .btn-white, .btn-ghost-white { justify-content: center; }

  .faq-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  footer { padding: 40px 20px 22px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* — Mobile ≤600 — */
@media (max-width: 600px) {
  .btn-ghost { display: none; }        /* hide Login link — save nav space */

  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 15px; }
  .store-row { flex-direction: column; }

  .stat-num { font-size: 28px; }
  .sec-title { font-size: 24px; }

  /* Features: single column on small phones */
  .feats-grid { grid-template-columns: 1fr; }

  /* Screenshots stay 2-col but tighter */
  .ss-grid { gap: 12px; }

  /* Steps: single column on small phones */
  .steps-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
