/* ============================================================
   Do bem Querer — Landing Page
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1b2a63;
  --navy-soft:   #22306b;
  --pink:        #e76d8a;
  --pink-strong: #e85f80;
  --pink-btn:    #ec6f8a;
  --pink-soft:   #fdeef1;
  --pink-chip:   #fbe4e9;
  --pink-card:   #fdf0f2;
  --purple:      #7b6cae;
  --purple-badge:#7d6fb0;
  --purple-bg:   #8478bd;
  --green:       #3f9e7c;
  --green-soft:  #e9f2ec;
  --cream:       #faf4ef;
  --cream-2:     #fbf6f1;
  --text:        #2b3048;
  --text-muted:  #5c6377;
  --white:       #ffffff;
  --radius:      18px;
  --radius-lg:   26px;
  --shadow:      0 18px 50px rgba(27,42,99,.10);
  --shadow-sm:   0 8px 24px rgba(27,42,99,.07);
  --maxw:        1180px;
}

html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Shared helpers ---------- */
.badge-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 34px;
  border-radius: 11px;
  background: var(--purple-badge);
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .5px;
}
.badge-num.round {
  width: 44px; height: 44px;
  border-radius: 50%;
}
.badge-num.round.light {
  background: #fff;
  color: var(--purple-badge);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

h1, h2, h3 { color: var(--navy); font-weight: 700; line-height: 1.12; letter-spacing: -.5px; overflow-wrap: break-word; }

.section { position: relative; }

.lead {
  color: var(--text-muted);
  font-size: 1.06rem;
  font-weight: 400;
}

.lead-highlight {
  font-weight: 700;
  font-size: 1.12em;
  color: #8b3fd6;
}

/* Decorative leaves */
.leaf {
  position: absolute;
  pointer-events: none;
  opacity: .55;
  z-index: 0;
}

/* Download CTA repetido ao final das seções */
.download-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 640px;
  margin: 46px auto 0;
}
.download-cta .btn { flex: 1 1 240px; min-width: 0; max-width: 320px; padding: 15px 22px; }
.download-cta .btn svg { width: 22px; height: 22px; }
/* Contraste no fundo roxo da seção 09 */
.s09 .download-cta { margin-top: 40px; }
.s09 .download-cta .btn-purple { background: #fff; color: var(--purple); box-shadow: 0 10px 24px rgba(0,0,0,.18); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,244,239,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27,42,99,.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 46px; height: 46px; flex: none; border-radius: 24%; object-fit: cover; }
.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.05;
}
.nav-links {
  display: none;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  color: var(--navy);
  font-weight: 500;
  font-size: .98rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--pink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 14px;
  padding: 14px 26px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-pink { background: var(--pink-btn); color: #fff; box-shadow: 0 10px 24px rgba(236,111,138,.35); }
.btn-pink:hover { filter: brightness(1.04); }
.btn-purple { background: var(--purple); color: #fff; box-shadow: 0 10px 24px rgba(123,108,174,.32); }
.btn-nav { padding: 11px 24px; border-radius: 30px; }

/* ============================================================
   HERO — 01
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 100% 0%, #fbe6ea 0%, rgba(251,230,234,0) 55%),
    linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  z-index: 2;
}
.hero-content { padding: 34px 0 20px; }
.hero h1 {
  font-size: clamp(2rem, 8.5vw, 2.6rem);
  margin: 20px 0 20px;
}
.hero .lead { max-width: 430px; margin-bottom: 30px; }

.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-bottom: 30px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--pink-card);
  border-radius: 14px;
  padding: 12px 16px;
  min-width: 0;
}
.chip span { min-width: 0; }
.chip-ico {
  width: 34px; height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 9px;
  color: var(--pink);
  box-shadow: 0 3px 8px rgba(27,42,99,.06);
}
.chip-ico svg { width: 18px; height: 18px; }
.chip span { font-weight: 500; color: var(--navy); font-size: .95rem; }

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}
.store-buttons .btn { flex: 1 1 220px; min-width: 0; padding: 16px 22px; }
.store-buttons .btn svg { width: 22px; height: 22px; }
.hero-avail { color: #a2879b; font-size: .82rem; }

.hero-media {
  position: relative;
  min-height: 340px;
}
.hero-media::before {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 118%; height: 78%;
  background: radial-gradient(60% 100% at 50% 100%, #f6d4dd 0%, rgba(246,212,221,0) 70%);
  z-index: 0;
}
.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(180deg, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 82%, transparent 100%);
}
.hero .leaf-1 { top: 60px; right: -40px; width: 260px; }

/* ============================================================
   SECTION 02 — Nasceu numa família
   ============================================================ */
.s02 { background: var(--cream); padding: 56px 0 60px; overflow: hidden; }
.s02 .center-logo { display: flex; justify-content: center; margin-bottom: 14px; }
.s02-head { text-align: center; }
.s02-head .badge-num { margin-bottom: 18px; }
.s02 h2 { font-size: clamp(1.8rem, 7vw, 2.3rem); margin-bottom: 18px; }
.s02-text {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 20px;
  font-size: 1.02rem;
}
.s02-highlight {
  color: var(--pink);
  font-weight: 600;
  font-size: 1.16rem;
  max-width: 560px;
  margin: 0 auto 30px;
  line-height: 1.35;
}
.s02-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto 26px;
  box-shadow: var(--shadow);
}
.s02-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.care-banner {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--pink-soft);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  max-width: 900px;
  margin: 0 auto;
}
.care-banner .heart {
  flex: none;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  display: grid; place-items: center;
  color: var(--pink);
}
.care-banner .heart svg { width: 30px; height: 30px; }
.care-banner p {
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(1.15rem, 4.5vw, 1.5rem);
  line-height: 1.2;
}

/* ============================================================
   SECTION 03 — Você se identifica
   ============================================================ */
.s03 { background: var(--cream-2); padding: 58px 0 62px; }
.s03-head { text-align: center; margin-bottom: 40px; }
.s03-head .badge-num { margin-bottom: 16px; }
.s03 h2 { font-size: clamp(1.7rem, 6.4vw, 2.2rem); margin-bottom: 10px; }
.s03-sub { color: var(--text-muted); font-size: 1.1rem; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.situation-card {
  background: var(--pink-card);
  border-radius: 20px;
  padding: 26px 20px 28px;
  text-align: center;
}
.situation-card .illus {
  height: 96px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}
.situation-card .illus svg { width: 92px; height: 92px; }
.situation-card h3 {
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.situation-card p { color: var(--text-muted); font-size: .9rem; }
.s03-footer {
  text-align: center;
  margin-top: 40px;
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(1.15rem, 4.6vw, 1.45rem);
  line-height: 1.3;
}
.s03-footer .hb { color: var(--pink); }

/* ============================================================
   SECTION 04 — Antes / Depois
   ============================================================ */
.s04 { background: var(--cream); padding: 58px 0 60px; }
.s04-head { text-align: center; margin-bottom: 40px; }
.s04-head .badge-num { margin-bottom: 16px; }
.s04 h2 { font-size: clamp(1.7rem, 6.4vw, 2.2rem); }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.compare-card {
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.compare-card.antes { background: var(--pink-soft); }
.compare-card.depois { background: var(--green-soft); }
.compare-card h3 { font-size: 1.7rem; margin-bottom: 18px; }
.compare-card.antes h3 { color: var(--pink-strong); }
.compare-card.depois h3 { color: var(--green); }
.compare-list { list-style: none; display: grid; gap: 14px; max-width: 58%; min-width: 0; }
.compare-list li { min-width: 0; overflow-wrap: break-word; }
.compare-list li {
  display: flex; align-items: center; gap: 14px;
  color: var(--navy); font-weight: 500; font-size: 1rem;
}
.compare-list li svg { width: 20px; height: 20px; flex: none; }
.compare-card.antes li svg { color: var(--pink-strong); }
.compare-card.depois li svg { color: var(--green); }
.compare-photo {
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 42%;
  max-width: 270px;
  border-radius: 16px;
  overflow: hidden;
}
.compare-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.s04-footer {
  text-align: center;
  margin-top: 42px;
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(1.2rem, 4.8vw, 1.55rem);
  line-height: 1.4;
}
.s04-footer .heart-mini { color: var(--pink); display: block; margin-top: 8px; }

/* ============================================================
   SECTION 05 — Recursos
   ============================================================ */
.s05 { background: var(--cream-2); padding: 58px 0 64px; overflow: hidden; }
.s05-head { text-align: center; margin-bottom: 10px; }
.s05-head .badge-num { margin-bottom: 16px; }
.s05 h2 { font-size: clamp(1.9rem, 7vw, 2.5rem); }
.s05-rule { width: 66px; height: 5px; border-radius: 4px; background: var(--purple); margin: 20px auto 44px; }
.s05-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  justify-items: center;
}
.feature-list { display: grid; gap: 26px; max-width: 460px; width: 100%; }
.feature-item { border-top: 1px solid rgba(231,109,138,.22); padding-top: 20px; display: flex; gap: 16px; }
.feature-item:first-child { border-top: none; padding-top: 0; }
.feature-item .fico {
  flex: none; width: 52px; height: 52px; border-radius: 15px;
  background: var(--pink-card); display: grid; place-items: center; color: var(--navy);
}
.feature-item .fico svg { width: 26px; height: 26px; }
.feature-item h3 { font-size: 1.14rem; margin-bottom: 4px; }
.feature-item p { color: var(--text-muted); font-size: .96rem; }

/* ============================================================
   PHONE MOCKUP (shared)
   ============================================================ */
.phone {
  --pw: 300px;
  width: var(--pw);
  background: #1c1c22;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(27,42,99,.20);
  flex: none;
}
.phone-screen {
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 300/620;
  display: flex;
  flex-direction: column;
}
.notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 42%; height: 22px; background: #1c1c22;
  border-bottom-left-radius: 14px; border-bottom-right-radius: 14px;
  z-index: 6;
}
/* Telas que exibem screenshot real do app */
.phone-screen.photo {
  aspect-ratio: auto;
  display: block;
  background: #fff;
}
.phone-screen.photo img {
  width: 100%;
  height: auto;
  display: block;
}
.statusbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px 4px; font-size: .72rem; font-weight: 600; color: #1c1c22;
}
.statusbar .sb-icons { display: flex; align-items: center; gap: 5px; }
.statusbar .sb-icons svg { width: 15px; height: 12px; }

.app-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 18px 12px;
}
.app-user { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--navy); font-size: 1.02rem; }
.app-user .av { width: 26px; height: 26px; color: var(--navy); }
.app-bell { position: relative; color: var(--navy); }
.app-bell svg { width: 24px; height: 24px; }
.app-bell .dot {
  position: absolute; top: -3px; right: -3px;
  width: 15px; height: 15px; background: var(--pink); color: #fff;
  border-radius: 50%; font-size: .58rem; display: grid; place-items: center; font-weight: 700;
}
.app-body { flex: 1; padding: 4px 16px 8px; overflow: hidden; }
.app-daylabel { font-size: .82rem; font-weight: 600; color: var(--navy); padding: 8px 2px 6px; border-bottom: 1px solid #eef0f4; margin-bottom: 4px; }
.app-section-title { text-align: center; font-size: .84rem; font-weight: 600; color: var(--navy); padding: 6px 0 10px; }

.app-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 2px; border-bottom: 1px solid #f1f2f6;
}
.app-item .ai-ico {
  flex: none; width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
}
.app-item .ai-ico svg { width: 20px; height: 20px; }
.app-item .ai-main { flex: 1; min-width: 0; }
.app-item .ai-title { font-weight: 600; color: var(--navy); font-size: .8rem; line-height: 1.2; }
.app-item .ai-sub { color: #8b90a0; font-size: .72rem; }
.app-item .ai-time { color: var(--navy); font-size: .75rem; font-weight: 500; white-space: nowrap; }
.app-item .ai-chev { color: #c2c6d2; }
.app-item .ai-chev svg { width: 14px; height: 14px; }

.ico-red   { background: #fde8ea; color: #e0596f; }
.ico-blue  { background: #e6eefc; color: #4b7fd6; }
.ico-green { background: #e4f3ec; color: #3f9e7c; }
.ico-pink  { background: #fdeaf0; color: #e0679a; }
.ico-purple{ background: #eee9f8; color: #7b6cae; }
.ico-orange{ background: #fdeede; color: #e59a45; }

.app-more { text-align: center; color: var(--pink); font-weight: 600; font-size: .74rem; padding: 8px 0 2px; }

.app-nav {
  display: flex; justify-content: space-around; align-items: center;
  padding: 9px 6px calc(9px + env(safe-area-inset-bottom));
  border-top: 1px solid #eef0f4;
}
.nav-item { display: grid; justify-items: center; gap: 3px; font-size: .58rem; color: #9aa0af; font-weight: 500; }
.nav-item svg { width: 19px; height: 19px; }
.nav-item.active { color: var(--pink); }

/* ============================================================
   SECTION 06 — Tudo em um só lugar
   ============================================================ */
.s06 { background: var(--cream); padding: 56px 0 62px; }
.s06-head { text-align: center; margin-bottom: 40px; }
.s06-head .badge-num { margin-bottom: 16px; }
.s06 h2 { font-size: clamp(1.7rem, 6.6vw, 2.3rem); }
.phones-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 40px 16px;
  justify-items: center;
  margin-bottom: 46px;
}
.phones-row .phone { --pw: 100%; max-width: 300px; }
.s06-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 20px;
  max-width: 900px;
  margin: 0 auto;
}
.s06-feat { text-align: center; }
.s06-feat .sf-ico {
  width: 62px; height: 62px; margin: 0 auto 14px;
  border-radius: 16px; background: var(--pink-card);
  display: grid; place-items: center; color: var(--navy);
}
.s06-feat .sf-ico svg { width: 30px; height: 30px; }
.s06-feat h3 { font-size: 1.12rem; margin-bottom: 8px; }
.s06-feat p { color: var(--text-muted); font-size: .92rem; }

/* ============================================================
   SECTION 07 — FAQ
   ============================================================ */
.s07 { background: var(--cream-2); padding: 58px 0 60px; position: relative; overflow: hidden; }
.s07-head { display: flex; align-items: center; gap: 18px; margin-bottom: 34px; }
.s07 h2 { font-size: clamp(1.7rem, 6.4vw, 2.2rem); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 26px;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(27,42,99,.07);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: fit-content;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; text-align: left;
  padding: 20px 22px;
  font-weight: 600; color: var(--navy); font-size: 1rem; line-height: 1.3;
}
.faq-q .chev { color: var(--navy); transition: transform .3s ease; flex: none; }
.faq-q .chev svg { width: 20px; height: 20px; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 20px; color: var(--text-muted); font-size: .95rem; }

/* ============================================================
   SECTION 08 — CTA
   ============================================================ */
.s08 { background: var(--pink-soft); padding: 60px 0 64px; position: relative; overflow: hidden; }
.s08 .container { position: relative; z-index: 2; }
.s08 .badge-num { margin-bottom: 22px; }
.s08 h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); margin-bottom: 20px; max-width: 560px; }
.s08 .lead { max-width: 480px; margin-bottom: 32px; }
.s08 .store-buttons { max-width: 720px; }
.s08 .leaf-a { top: 30px; right: -30px; width: 300px; }
.s08 .leaf-b { bottom: -40px; right: 120px; width: 180px; }

/* ============================================================
   SECTION 09 — Segurança (purple)
   ============================================================ */
.s09 { background: var(--purple-bg); padding: 54px 0 60px; position: relative; overflow: hidden; color: #fff; }
.s09-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
  position: relative; z-index: 2;
}
.s09 .badge-num.round.light { margin-bottom: 22px; }
.s09 h2 { color: #fff; font-size: clamp(1.7rem, 6.6vw, 2.3rem); margin-bottom: 30px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 18px;
}
.trust-item { text-align: center; }
.trust-item .ti-ico {
  width: 66px; height: 66px; margin: 0 auto 12px;
  border-radius: 18px; background: rgba(255,255,255,.16);
  display: grid; place-items: center; color: #fff;
}
.trust-item .ti-ico svg { width: 30px; height: 30px; }
.trust-item p { font-size: .92rem; line-height: 1.3; color: #f2effb; font-weight: 500; }
.s09-phone { display: flex; justify-content: center; }
.s09-phone .phone { --pw: 240px; }
.splash {
  flex: 1; display: grid; place-items: center;
  background: #f7f3ee;
}
.splash .brand { flex-direction: column; gap: 10px; }
.splash .brand-logo { width: 60px; height: 60px; }
.s09 .blob {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.06); z-index: 1;
}
.s09 .blob-1 { width: 340px; height: 340px; right: -120px; bottom: -140px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: #cdd3e6;
  padding: 44px 0 30px;
}
.footer-inner {
  display: flex; flex-direction: column; gap: 26px;
  align-items: flex-start;
}
.footer .brand-name { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 26px; list-style: none; }
.footer-links a { font-size: .94rem; color: #cdd3e6; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-store { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-store .btn { padding: 12px 20px; font-size: .92rem; }
.footer-copy { color: #8a92b0; font-size: .84rem; border-top: 1px solid rgba(255,255,255,.09); padding-top: 22px; width: 100%; }

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (min-width: 640px) {
  .compare-list { max-width: 55%; }
  .s09-grid { grid-template-columns: 1fr; }
  /* 06 phones: 2x2 on tablets */
  .phones-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 20px; }
  .phones-row .phone { max-width: 260px; }
}

/* ============================================================
   RESPONSIVE — Desktop
   ============================================================ */
@media (min-width: 920px) {
  .container { padding: 0 40px; }
  .nav-links { display: flex; }

  /* Hero side-by-side */
  .hero-grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    min-height: 620px;
  }
  .hero-content { padding: 40px 0; }
  .hero h1 { font-size: clamp(2.4rem, 3.6vw, 3.3rem); }
  .chip-grid { grid-template-columns: repeat(3, 1fr); max-width: 620px; }
  .chip { padding: 11px 14px; }
  .chip span { font-size: .9rem; }
  .store-buttons .btn { flex: 0 1 260px; }
  .hero-media { height: 100%; min-height: 620px; align-self: stretch; }
  .hero-media img {
    position: absolute; bottom: 0; right: 0;
    max-width: none; width: 100%; height: 100%;
    object-fit: cover; object-position: center bottom;
    -webkit-mask-image: none; mask-image: none;
  }
  .hero-media::before { display: none; }

  /* 02 */
  .s02 h2 { font-size: 2.7rem; }
  .s02-two {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: center;
    text-align: left; max-width: 1080px; margin: 0 auto;
  }
  .s02-two .s02-head { text-align: left; }
  .s02-two .s02-text, .s02-two .s02-highlight { margin-left: 0; }
  .s02-two .s02-img { margin: 0; }
  .s02 .center-logo { display: none; }

  /* 03 cards 4-up */
  .cards-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .s03-head { display: flex; align-items: flex-start; gap: 18px; text-align: left; margin-bottom: 44px; }
  .s03-head .badge-num { margin-bottom: 0; margin-top: 4px; }
  .s03 h2 { font-size: 2rem; }

  /* 04 side by side */
  .compare-grid { grid-template-columns: 1fr 1fr; }
  .s04-head { display: flex; align-items: center; gap: 18px; justify-content: center; }
  .s04-head .badge-num { margin-bottom: 0; }

  /* 05 phone + list */
  .s05-grid { grid-template-columns: 1fr 1fr; gap: 60px; justify-items: stretch; align-items: center; }
  .s05-grid .phone { justify-self: center; --pw: 320px; }
  .s05 h2 { font-size: 2.6rem; }
  .s05-head, .s05-rule { text-align: left; }
  .s05-rule { margin-left: 0; }
  .s05-head { display: block; }

  /* 06 four phones in a row */
  .phones-row { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
  .phones-row .phone { --pw: 100%; max-width: 250px; justify-self: center; }
  .s06-features { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
  .s06-head { display: flex; align-items: center; gap: 18px; justify-content: center; }
  .s06-head .badge-num { margin-bottom: 0; }

  /* 07 faq two columns */
  .faq-grid { grid-template-columns: 1fr 1fr; }

  /* 08 */
  .s08 h2 { font-size: 3rem; }
  .s08 .store-buttons .btn { flex: 0 1 280px; }

  /* 09 two cols with phone */
  .s09-grid { grid-template-columns: 1.4fr .9fr; gap: 40px; }
  .trust-row { grid-template-columns: repeat(5, 1fr); gap: 20px; }
  .s09 h2 { font-size: 2.4rem; }
  .s09-phone { justify-content: flex-end; }

  /* footer */
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; flex-wrap: wrap; }
}

@media (min-width: 1140px) {
  .hero h1 { font-size: 3.4rem; }
}
