/* ─── Reset & base ─────────────────────────────────────────────────────────── */

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

:root {
  --amber-50:   #FAEEDA;
  --amber-100:  #FAC775;
  --amber-200:  #EF9F27;
  --amber-400:  #BA7517;
  --amber-700:  #854F0B;
  --amber-900:  #412402;
  --green-50:   #EAF3DE;
  --green-400:  #639922;
  --gray-50:    #F1EFE8;
  --gray-100:   #D3D1C7;
  --gray-900:   #2C2C2A;
  --text-secondary: #5F5E5A;
  --text-muted:     #888780;
  --white: #ffffff;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  --shadow-card: 0 2px 12px rgba(65,36,2,.08), 0 1px 3px rgba(65,36,2,.06);
  --shadow-hero: 0 24px 64px rgba(65,36,2,.18);
  --content-width: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Nav ───────────────────────────────────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--amber-200);
  border-bottom: 1px solid var(--amber-400);
}

.nav-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--amber-900);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: var(--amber-900);
  transition: color .15s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--amber-900);
  color: var(--amber-50) !important;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: background .15s !important;
}

.nav-cta:hover { background: var(--amber-700) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--amber-900);
  border-radius: 2px;
  transition: .2s;
}

/* ─── Hero ──────────────────────────────────────────────────────────────────── */

.hero {
  background: linear-gradient(135deg, var(--amber-50) 0%, var(--white) 55%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--amber-100) 0%, transparent 70%);
  opacity: .45;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 80px 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  text-align: left;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber-50);
  border: 1px solid var(--amber-100);
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-200);
}

.hero h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--amber-900);
  margin: 0 0 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--amber-200);
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 0 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  transition: transform .15s, box-shadow .15s;
  cursor: pointer;
}

.btn-store:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hero);
}

.btn-store-apple {
  background: var(--amber-900);
  color: var(--amber-50);
}

.btn-store-google {
  background: var(--white);
  color: var(--amber-900);
  border: 1.5px solid var(--gray-100);
}

.btn-store svg { flex-shrink: 0; }

.hero-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 20px;
}

.phone-mockup {
  width: min(260px, 34vw);
  aspect-ratio: 1 / 2;
  border-radius: 44px;
  background: var(--amber-900);
  box-shadow: var(--shadow-hero);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.phone-mockup.hero-phone {
  width: min(280px, 36vw);
  filter: drop-shadow(0 32px 64px rgba(65,36,2,.25));
}

.phone-screen {
  position: absolute;
  inset: 3px;
  border-radius: 34px;
  background: var(--gray-50);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-screen-map {
  flex: 1;
  background: linear-gradient(180deg, #d4e4b8 0%, #c8d9a8 100%);
  position: relative;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(var(--white) 1px, transparent 1px),
    linear-gradient(90deg, var(--white) 1px, transparent 1px);
  background-size: 32px 32px;
}

.map-road-h {
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 4px;
}

.map-road-v {
  position: absolute;
  top: 0; bottom: 0;
  width: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 4px;
}

.map-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}

.map-pin.amber { background: var(--amber-200); }
.map-pin.green { background: var(--green-400); }

.phone-sheet {
  background: var(--white);
  border-radius: 16px 16px 0 0;
  padding: 8px 12px 12px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
}

.sheet-handle {
  width: 32px;
  height: 3px;
  background: var(--gray-100);
  border-radius: 2px;
  margin: 0 auto 8px;
}

.sheet-listing {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
}

.sheet-listing:last-child { border-bottom: none; }

.listing-thumb {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  flex-shrink: 0;
}

.listing-thumb.amber-bg { background: var(--amber-100); }
.listing-thumb.green-bg { background: var(--green-50); }
.listing-thumb.gray-bg  { background: var(--gray-100); }

.listing-info { flex: 1; min-width: 0; }

.listing-title {
  font-size: 9px;
  font-weight: 600;
  color: var(--gray-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-meta {
  font-size: 8px;
  color: var(--text-muted);
  margin-top: 1px;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 16px;
  background: var(--amber-900);
  border-radius: 10px;
  z-index: 10;
}

/* ─── Section shared ────────────────────────────────────────────────────────── */

section { padding: 80px 24px; }

.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--amber-900);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 56px;
}

/* ─── Features ──────────────────────────────────────────────────────────────── */

.features { background: var(--gray-50); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  transition: transform .2s, box-shadow .2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--amber-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--amber-900);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── How it works ──────────────────────────────────────────────────────────── */

.how-it-works {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(250, 199, 117, 0.26), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #fff7e7 100%);
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 32px auto auto 50%;
  width: min(520px, 48vw);
  height: min(520px, 48vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 159, 39, 0.14) 0%, rgba(239, 159, 39, 0) 72%);
  transform: translateX(-10%);
  pointer-events: none;
}

.how-it-works-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: start;
}

.how-it-works-intro {
  position: sticky;
  top: 92px;
  padding: 34px 32px;
  border-radius: 32px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(250, 199, 117, .45);
  box-shadow: 0 20px 50px rgba(65,36,2,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.how-it-works-sub {
  margin-bottom: 28px;
  max-width: 44ch;
}

.how-it-works-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.how-it-works-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(186, 117, 23, .16);
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  position: relative;
  padding: 24px 24px 22px;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(250, 199, 117, .52);
  box-shadow: 0 18px 40px rgba(65,36,2,.08);
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--amber-100) 0%, var(--amber-200) 100%);
}

.step::after {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 199, 117, .24) 0%, rgba(250, 199, 117, 0) 72%);
  pointer-events: none;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: var(--amber-900);
  color: var(--amber-100);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.step-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--amber-50) 0%, #fff2d1 100%);
  color: var(--amber-700);
  font-size: 20px;
  box-shadow: inset 0 0 0 1px rgba(250, 199, 117, .55);
}

.step h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--amber-900);
  margin: 0 0 10px;
  line-height: 1.15;
  max-width: 18ch;
}

.step p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  max-width: 42ch;
}

.step-meta {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(211, 209, 199, .75);
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}

/* ─── Listing types ─────────────────────────────────────────────────────────── */

.types { background: var(--amber-50); }

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

.type-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1.5px solid var(--amber-100);
}

.type-card.green-card { border-color: #b8d48a; }

.type-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.type-tag.amber { background: var(--amber-50); color: var(--amber-700); border: 1px solid var(--amber-100); }
.type-tag.green { background: var(--green-50); color: #3B6D11; border: 1px solid #b8d48a; }

.type-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--amber-900);
  margin-bottom: 10px;
}

.type-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Download CTA ──────────────────────────────────────────────────────────── */

.download {
  background: var(--amber-900);
  text-align: center;
  padding: 96px 24px;
}

.download .section-label { color: var(--amber-100); }

.download .section-title {
  color: var(--white);
  margin-bottom: 12px;
}

.download .section-sub {
  color: rgba(255,255,255,.65);
  margin: 0 auto 40px;
}

.download-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.download .btn-store-apple {
  background: var(--amber-200);
  color: var(--amber-900);
}

.download .btn-store-google {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}

.download .btn-store-google:hover { border-color: var(--white); }

/* ─── Footer ────────────────────────────────────────────────────────────────── */

footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  padding: 40px 24px;
}

.footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-size: 17px;
  font-weight: 700;
  color: var(--amber-900);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color .15s;
}

.footer-links a:hover { color: var(--gray-900); }

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

/* ─── Legal pages ───────────────────────────────────────────────────────────── */

.legal-hero {
  background: linear-gradient(160deg, var(--amber-50) 0%, var(--white) 60%);
  padding: 64px 24px 48px;
  border-bottom: 1px solid var(--gray-100);
}

.legal-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--amber-900);
  margin-bottom: 8px;
}

.legal-hero p {
  font-size: 15px;
  color: var(--text-muted);
}

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.legal-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--amber-900);
  margin: 48px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}

.legal-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 28px 0 8px;
}

.legal-body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-body ul, .legal-body ol {
  margin: 0 0 16px 20px;
}

.legal-body li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-body strong { color: var(--gray-900); font-weight: 600; }

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.legal-body th {
  text-align: left;
  padding: 10px 12px;
  background: var(--gray-50);
  color: var(--gray-900);
  font-weight: 600;
  border: 1px solid var(--gray-100);
}

.legal-body td {
  padding: 10px 12px;
  border: 1px solid var(--gray-100);
  color: var(--text-secondary);
  vertical-align: top;
}

.legal-body .caps {
  font-size: 13px;
  line-height: 1.7;
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */

@media (max-width: 1200px) {
  :root {
    --content-width: 1000px;
  }

  .hero-inner {
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  :root {
    --content-width: 920px;
  }

  .nav-inner,
  .section-inner,
  .footer-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    padding: 64px 32px 0;
    gap: 24px;
  }

  .hero-copy {
    padding-bottom: 64px;
  }

  .phone-mockup {
    width: min(200px, 28vw);
    border-radius: 32px;
  }

  .phone-mockup.hero-phone {
    width: min(220px, 30vw);
  }

  .phone-screen {
    border-radius: 30px;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-it-works-inner {
    grid-template-columns: 1fr;
  }

  .how-it-works-intro {
    position: static;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .type-card {
    padding: 32px 28px;
  }
}

@media (max-width: 768px) {
  nav {
    position: sticky;
  }

  .nav-inner {
    position: relative;
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    background: var(--amber-200);
    border: 1px solid var(--amber-400);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 18px 20px 20px;
    gap: 14px;
    align-items: flex-start;
  }

  .nav-links a {
    font-size: 16px;
  }

  .nav-cta {
    padding: 10px 16px;
  }

  .nav-hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 20px 0;
    text-align: center;
  }

  .hero-copy {
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero::before {
    width: 320px;
    height: 320px;
    top: -80px;
    right: -100px;
  }

  .hero h1 br,
  .section-title br {
    display: none;
  }

  .hero-sub {
    margin-bottom: 28px;
  }

  .hero-actions,
  .download-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }

  .btn-store {
    width: 100%;
    justify-content: center;
  }

  .hero-phones {
    justify-content: center;
  }

  .phone-mockup.hero-phone {
    width: min(240px, 65vw);
  }

  section {
    padding: 64px 20px;
  }

  .section-sub {
    margin-bottom: 36px;
  }

  .features-grid,
  .types-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .type-card {
    padding: 24px;
  }

  .how-it-works {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .how-it-works-intro {
    padding: 26px 24px;
    border-radius: 26px;
  }

  .how-it-works-sub {
    margin-bottom: 22px;
  }

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

  .step {
    padding: 22px 20px 20px;
    border-radius: 24px;
  }

  .step h3 {
    font-size: 22px;
  }

  .download {
    padding: 72px 20px;
  }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .footer-links {
    gap: 14px 20px;
  }

  .legal-hero {
    padding: 48px 20px 36px;
  }

  .legal-body {
    padding: 40px 20px 72px;
  }

  .legal-body h2 {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 16px;
  }

  .nav-logo {
    font-size: 18px;
  }

  .nav-links.open {
    left: 16px;
    right: 16px;
    padding: 16px;
  }

  section {
    padding: 56px 16px;
  }

  .hero-inner {
    padding: 48px 16px 0;
  }

  .hero-badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .hero-sub {
    font-size: 15px;
  }

  .phone-mockup.hero-phone {
    width: min(220px, 62vw);
  }

  .how-it-works-intro {
    padding: 22px 20px;
  }

  .how-it-works-pill {
    font-size: 12px;
    min-height: 34px;
    padding: 8px 12px;
  }

  .step-top {
    margin-bottom: 14px;
  }

  .step-number {
    min-width: 52px;
    height: 32px;
    font-size: 12px;
  }

  .step-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 18px;
  }

  .step h3 {
    font-size: 20px;
  }

  .step p {
    font-size: 15px;
  }

  .phone-mockup.center {
    width: min(240px, 78vw);
    border-radius: 28px;
  }

  .phone-screen {
    border-radius: 26px;
  }

  .phone-notch {
    top: 10px;
    width: 52px;
    height: 14px;
  }

  .features-grid {
    gap: 16px;
  }

  .feature-card h3,
  .type-card h3 {
    font-size: 20px;
  }

  .step::before {
    width: 32px;
    height: 32px;
    left: -10px;
    font-size: 14px;
  }

  .step {
    padding-left: 18px;
  }

  .step h3,
  .step p {
    margin-left: 16px;
  }

  .download {
    padding: 64px 16px;
  }

  footer {
    padding: 32px 16px;
  }

  .legal-hero,
  .legal-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .legal-body table {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .nav-inner {
    height: 56px;
    padding: 0 14px;
  }

  .nav-logo {
    font-size: 16px;
    gap: 6px;
  }


  .nav-links.open {
    top: 56px;
    left: 14px;
    right: 14px;
  }

  .hero-inner {
    padding: 40px 14px 0;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  .hero h1 {
    font-size: clamp(28px, 9.5vw, 34px);
    line-height: 1.08;
    letter-spacing: -.03em;
  }

  .how-it-works {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .btn-store {
    padding: 12px 18px;
    font-size: 14px;
  }

  .phone-mockup.hero-phone {
    width: min(200px, 70vw);
  }

  section,
  .download,
  footer {
    padding-left: 14px;
    padding-right: 14px;
  }
}
