:root {
  --green: #66a80f;
  --green-2: #7fbd19;
  --lime: #d9f79a;
  --ink: #111827;
  --muted: #5b6472;
  --soft: #f7faf3;
  --line: rgba(17, 24, 39, .08);
  --shadow: 0 24px 70px rgba(17, 24, 39, .11);
  --page: min(1240px, calc(100% - 156px));
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 4%, #fbfff2 0, rgba(251, 255, 242, 0) 36%),
    linear-gradient(180deg, #fff 0%, #fbfcf8 70%, #fff 100%);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  justify-content: center;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(17, 24, 39, .04);
}

.nav-inner,
.nav {
  display: flex;
  align-items: center;
}

.nav-inner {
  width: var(--page);
  min-height: 70px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 22px;
  min-width: 0;
}

.nav > .brand,
.nav > nav,
.nav > .lang {
  margin: 12px 18px;
}

.nav > .brand { margin-left: clamp(18px, 4vw, 56px); }
.nav > nav { margin-left: auto; }
.nav > .lang { margin-right: clamp(18px, 4vw, 56px); }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 900;
  white-space: nowrap;
}

.brand img {
  width: 39px;
  height: 39px;
  border-radius: 10px;
}

.brand span span { color: var(--green); }

.nav nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 800;
}

.nav nav a {
  position: relative;
  padding: 8px 0;
}

.nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav nav a:hover::after { transform: scaleX(1); }

.download,
.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 15px;
  background: linear-gradient(180deg, #86bc1e, #5f980c);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(102, 168, 15, .25);
  transition: transform .2s ease, box-shadow .2s ease;
}

.download:hover,
.primary:hover,
.store-badge:hover {
  transform: translateY(-2px);
}

.download:hover,
.primary:hover {
  box-shadow: 0 18px 36px rgba(102, 168, 15, .32);
}

.hero {
  width: var(--page);
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 430px 1fr;
  align-items: center;
  gap: 24px;
  padding: 26px 0 14px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.badge {
  width: max-content;
  margin: 0 0 28px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #effbdc;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

h1, h2, h3, p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 4.8vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 span { color: var(--green); }

.lead {
  max-width: 430px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.store-badge {
  width: 156px;
  display: inline-flex;
  margin-top: 28px;
  padding: 0;
  border-radius: 11px;
  background: transparent;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  transition: transform .2s ease, filter .2s ease;
}

.store-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 15px;
}

.rating span { color: #ffc400; }
.rating b { color: var(--ink); }
.rating em { font-style: normal; }

.hero-visual {
  position: relative;
  min-height: 535px;
  margin-left: -82px;
  margin-right: -38px;
  overflow: hidden;
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-visual::before {
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .62) 7%, rgba(255, 255, 255, .12) 17%, rgba(255, 255, 255, 0) 27%),
    linear-gradient(270deg, #fbfcf8 0%, rgba(251, 252, 248, .24) 6%, rgba(251, 252, 248, 0) 13%),
    linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .16) 7%, rgba(255, 255, 255, 0) 15%);
}

.hero-visual::after {
  inset: auto 0 0 0;
  height: 22%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .38) 70%, #fff);
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  animation: heroFloat 8s ease-in-out infinite;
}

.magic-stars {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.magic-stars span {
  position: absolute;
  width: auto;
  height: auto;
  color: #b3ee42;
  opacity: .7;
  font-size: 22px;
  line-height: 1;
  text-shadow: 0 0 14px rgba(179, 238, 66, .9), 0 0 28px rgba(102, 168, 15, .42);
  animation: twinkle 2.2s ease-in-out infinite;
}

.magic-stars span::before {
  content: "✦";
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.magic-stars span::after {
  display: none;
}

.hero-stars {
  inset: 54px 18px auto auto;
  width: 360px;
  height: 280px;
}

.hero-stars span:nth-child(1) { left: 12%; top: 12%; animation-delay: .1s; }
.hero-stars span:nth-child(2) { left: 78%; top: 18%; width: 7px; height: 7px; animation-delay: .9s; }
.hero-stars span:nth-child(3) { left: 88%; top: 62%; animation-delay: 1.5s; }
.hero-stars span:nth-child(4) { left: 36%; top: 78%; width: 6px; height: 6px; animation-delay: 2s; }

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 22px;
  text-align: center;
}

.section-heading p {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.08;
}

.hero-copy,
.feature-strip,
.how,
.pricing,
.proof,
.quotes {
  animation: riseIn .55s ease both;
}

#features,
#how,
#pricing,
#blog,
#download {
  scroll-margin-top: 92px;
}

.feature-strip,
.stats,
.quotes {
  width: var(--page);
  margin: 0 auto;
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  min-height: 92px;
  padding: 18px 34px;
  border: 1px solid rgba(17, 24, 39, .04);
  border-radius: 20px;
  transform: translateY(-2px);
}

.feature-strip article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  transition: transform .2s ease;
}

.feature-strip article:hover,
.stats article:hover {
  transform: translateY(-3px);
}

.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon,
.mini-icon {
  position: relative;
  display: block;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon {
  grid-row: span 2;
  width: 43px;
  height: 43px;
}

.icon::before,
.icon::after,
.mini-icon::before,
.mini-icon::after,
.stat-icon::before,
.stat-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  display: none;
}

.icon-brain::before {
  width: 32px;
  height: 25px;
  border: 3px solid currentColor;
  border-radius: 45% 55% 50% 50%;
}

.icon-brain::after {
  width: 12px;
  height: 18px;
  border-left: 3px solid currentColor;
  border-radius: 50%;
}

.icon-search::before {
  width: 25px;
  height: 25px;
  border: 3px solid currentColor;
  border-radius: 50%;
  left: 5px;
  top: 4px;
}

.icon-search::after {
  width: 17px;
  height: 3px;
  right: 4px;
  bottom: 8px;
  background: currentColor;
  transform: rotate(45deg);
}

.icon-bell::before {
  width: 27px;
  height: 29px;
  border: 3px solid currentColor;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom: 0;
}

.icon-bell::after {
  width: 30px;
  height: 3px;
  bottom: 9px;
  background: currentColor;
  box-shadow: 11px 5px 0 -8px currentColor;
}

.icon-lock::before {
  width: 27px;
  height: 24px;
  bottom: 4px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.icon-lock::after {
  width: 17px;
  height: 17px;
  top: 3px;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.icon-device::before {
  width: 24px;
  height: 34px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.icon-device::after {
  width: 7px;
  height: 7px;
  right: 5px;
  bottom: 5px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: #fff;
}

.icon-scan::before {
  width: 31px;
  height: 31px;
  border: 3px solid currentColor;
  border-radius: 9px;
}

.icon-scan::after {
  width: 17px;
  height: 17px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: #fff;
}

.feature-strip strong,
.how-list strong {
  font-size: 14px;
}

.feature-strip strong {
  line-height: 1.15;
}

.feature-strip p,
.how-list p,
.stats p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.32;
}

.how {
  width: var(--page);
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: 62px;
}

.how .section-heading {
  grid-column: 1 / -1;
}

.phone-row {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.showcase-stars {
  inset: -20px 0 auto 0;
  width: 100%;
  height: 100%;
}

.showcase-stars span:nth-child(1) { left: 6%; top: 16%; animation-delay: .1s; }
.showcase-stars span:nth-child(2) { left: 23%; top: 2%; font-size: 18px; animation-delay: .7s; }
.showcase-stars span:nth-child(3) { left: 58%; top: 7%; animation-delay: 1.2s; }
.showcase-stars span:nth-child(4) { left: 87%; top: 22%; font-size: 18px; animation-delay: 1.7s; }
.showcase-stars span:nth-child(5) { left: 16%; top: 78%; font-size: 16px; animation-delay: 2.1s; }
.showcase-stars span:nth-child(6) { left: 75%; top: 82%; animation-delay: 2.5s; }

.phone-showcase {
  display: block;
  width: min(100%, 700px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 38px rgba(17, 24, 39, .12));
  transition: transform .25s ease;
}

.phone-showcase:hover { transform: translateY(-4px) scale(1.01); }

.device-frame {
  position: relative;
  width: 220px;
  margin: 0 -15px 0 0;
  padding: 9px;
  border-radius: 36px;
  background: linear-gradient(145deg, #2a2d33, #030405);
  box-shadow: 0 22px 48px rgba(17, 24, 39, .22);
}

.device-frame.center {
  width: 250px;
  z-index: 2;
}

.device-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1320 / 2868;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
  background: #fff;
}

.device-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 66px;
  height: 18px;
  border-radius: 999px;
  background: #050506;
  transform: translateX(-50%);
}

.how h3,
.proof h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.08;
}

.how-list {
  display: grid;
  gap: 27px;
  margin-top: 40px;
}

.how-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
}

.mini-icon {
  width: 42px;
  height: 42px;
}

.pricing {
  position: relative;
  width: var(--page);
  margin: 58px auto 0;
  padding: 34px 0 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pricing-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin: 0 auto;
}

.pricing-grid article {
  min-height: 245px;
  padding: 26px;
  border: 1px solid rgba(102, 168, 15, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 48px rgba(17, 24, 39, .08);
}

.pricing-grid .featured {
  border-color: rgba(102, 168, 15, .35);
  background: linear-gradient(180deg, #fbfff3, #fff);
  box-shadow: 0 24px 60px rgba(102, 168, 15, .16);
}

.pricing-grid strong,
.pricing-grid span {
  display: block;
}

.pricing-grid strong {
  font-size: 18px;
}

.pricing-grid span {
  margin-top: 12px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 900;
}

.pricing-grid p {
  margin: 10px 0 18px;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.pricing-grid li::before {
  content: "+";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.pricing-stars {
  inset: 16px 0 auto auto;
  width: 260px;
  height: 160px;
}

.pricing-stars span:nth-child(1) { left: 12%; top: 22%; animation-delay: .2s; }
.pricing-stars span:nth-child(2) { left: 52%; top: 4%; font-size: 18px; animation-delay: .8s; }
.pricing-stars span:nth-child(3) { left: 82%; top: 40%; animation-delay: 1.5s; }
.pricing-stars span:nth-child(4) { left: 32%; top: 78%; font-size: 16px; animation-delay: 2.1s; }

.proof {
  width: var(--page);
  margin: 56px auto 0;
  text-align: center;
}

.proof h2 {
  font-size: 22px;
  line-height: 1.25;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 22px;
  box-shadow: none;
  background: transparent;
}

.stats article {
  min-height: 94px;
  display: grid;
  grid-template-columns: 46px 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(17, 24, 39, .08);
  text-align: left;
  transition: transform .2s ease;
}

.stat-icon {
  position: relative;
  grid-row: span 2;
  width: 42px;
  height: 42px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats span {
  display: block;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.stats .score {
  color: #ff7a1a;
}

.stats .score em {
  color: #ffc400;
  font-style: normal;
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 170px 1fr;
  align-items: center;
  gap: 36px;
  margin-top: 42px;
  margin-bottom: 58px;
  padding: 30px 88px;
  background:
    radial-gradient(circle at 50% 45%, rgba(217, 247, 154, .28), rgba(217, 247, 154, 0) 36%),
    linear-gradient(90deg, #f4faec, #fff, #f4faec);
}

.quotes article {
  padding: 24px 24px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(17, 24, 39, .07);
}

.quotes p {
  margin: 0 0 18px;
  line-height: 1.5;
}

.stars {
  margin-bottom: 10px;
  color: #ffc400;
  font-size: 16px;
  letter-spacing: 1px;
}

.quotes img {
  width: 160px;
  border-radius: 0;
  filter: drop-shadow(0 18px 30px rgba(102, 168, 15, .2));
}

.mascot-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.mascot-wrap img {
  position: relative;
  z-index: 1;
}

.quote-stars {
  inset: 0;
  width: 170px;
  height: 150px;
}

.quote-stars span:nth-child(1) { left: 12%; top: 22%; animation-delay: .2s; }
.quote-stars span:nth-child(2) { left: 28%; top: 4%; width: 6px; height: 6px; animation-delay: 1.1s; }
.quote-stars span:nth-child(3) { left: 70%; top: 12%; animation-delay: .7s; }
.quote-stars span:nth-child(4) { left: 84%; top: 52%; width: 7px; height: 7px; animation-delay: 1.8s; }
.quote-stars span:nth-child(5) { left: 18%; top: 76%; width: 6px; height: 6px; animation-delay: 2.3s; }

.person {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 12px;
  align-items: center;
}

.person span {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f2d9c3;
  color: #55351d;
  font-weight: 900;
}

.person strong {
  font-size: 13px;
}

.person em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.icon-users::before {
  width: 30px;
  height: 20px;
  left: 6px;
  bottom: 4px;
  border: 3px solid currentColor;
  border-radius: 18px 18px 7px 7px;
}

.icon-users::after {
  width: 18px;
  height: 18px;
  left: 12px;
  top: 3px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: #fff;
}

.icon-box::before {
  width: 32px;
  height: 28px;
  left: 5px;
  top: 8px;
  border: 3px solid currentColor;
  border-radius: 3px;
  transform: skewY(-10deg);
}

.icon-box::after {
  width: 3px;
  height: 29px;
  left: 21px;
  top: 7px;
  background: currentColor;
}

.icon-calendar::before {
  width: 32px;
  height: 30px;
  left: 5px;
  top: 7px;
  border: 3px solid currentColor;
  border-radius: 5px;
}

.icon-calendar::after {
  width: 22px;
  height: 3px;
  left: 10px;
  top: 16px;
  background: currentColor;
  box-shadow: 12px 14px 0 -8px currentColor;
}

.icon-shield::before {
  width: 31px;
  height: 35px;
  left: 6px;
  top: 4px;
  border: 3px solid currentColor;
  border-radius: 16px 16px 18px 18px;
}

.icon-shield::after {
  width: 13px;
  height: 7px;
  left: 14px;
  top: 18px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.lang {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--soft);
  border-radius: 8px;
}

.lang button {
  border: 0;
  border-radius: 6px;
  padding: 7px 10px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.lang button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 5px 14px rgba(0, 0, 0, .08);
}

.policy {
  width: var(--page);
  margin: 0 auto;
  padding: 54px 0 74px;
}

.policy * {
  min-width: 0;
}

.policy .eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1;
}

.policy .lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.policy h2 {
  margin: 20px 0 10px;
  font-size: 22px;
}

.policy p {
  color: var(--muted);
  line-height: 1.55;
}

.policy section {
  padding: 26px 0;
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: center;
  padding-top: 20px;
}

.policy-date {
  margin: 24px 0 0;
  font-size: 14px;
}

.privacy-seal {
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f4faec, #fff);
  box-shadow: var(--shadow);
}

.privacy-seal span {
  display: block;
  color: var(--green);
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
}

.privacy-seal strong {
  display: block;
  margin-top: 12px;
  font-size: 20px;
}

.privacy-seal p {
  margin: 10px 0 0;
}

.privacy-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.privacy-summary article,
.policy-list article {
  padding: 24px;
  border: 1px solid rgba(102, 168, 15, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 44px rgba(17, 24, 39, .07);
}

.privacy-summary strong {
  display: block;
  font-size: 17px;
}

.privacy-summary p,
.policy-list p {
  margin: 8px 0 0;
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.policy-list h2 {
  margin-top: 0;
}

footer {
  width: var(--page);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.01); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes twinkle {
  0%, 100% { opacity: .2; transform: scale(.55) rotate(0deg); }
  45% { opacity: .95; transform: scale(1.18) rotate(45deg); }
  70% { opacity: .45; transform: scale(.82) rotate(70deg); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 980px) {
  :root { --page: min(100% - 32px, 1140px); }
  .nav-inner { width: min(100% - 32px, 1140px); }
  .nav-inner {
    min-height: 78px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 10px;
  }
  .nav nav {
    order: 3;
    width: 100%;
    min-width: 0;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .nav nav::-webkit-scrollbar { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 30px;
    overflow: hidden;
  }
  .hero-visual {
    min-height: 470px;
    margin-right: -24px;
  }
  .feature-strip,
  .how,
  .pricing-grid,
  .privacy-summary,
  .policy-list,
  .stats,
  .quotes {
    grid-template-columns: 1fr 1fr;
  }
  .policy-hero { grid-template-columns: 1fr; }
  .how { gap: 36px; }
}

@media (max-width: 720px) {
  :root { --page: calc(100% - 28px); }
  .download { display: none; }
  .brand { font-size: 22px; }
  .brand img { width: 36px; height: 36px; }
  .hero,
  .feature-strip,
  .how,
  .pricing,
  .policy,
  .proof,
  .stats,
  .quotes,
  footer {
    width: calc(100% - 28px);
  }
  h1 { font-size: 46px; }
  .lead { max-width: 340px; }
  .policy h1 {
    font-size: 38px;
    line-height: 1.06;
  }
  .policy .lead {
    max-width: 100%;
    font-size: 18px;
  }
  .policy section,
  .policy-hero,
  .privacy-summary,
  .policy-list {
    max-width: 100%;
  }
  .privacy-seal,
  .privacy-summary article,
  .policy-list article {
    width: 100%;
    max-width: calc(100vw - 28px);
  }
  .privacy-seal p,
  .privacy-summary p,
  .policy-list p {
    width: 280px;
    max-width: 100%;
  }
  .hero-visual {
    min-height: 360px;
    margin: 0 -18px;
  }
  .feature-strip,
  .how,
  .pricing-grid,
  .privacy-summary,
  .policy-list,
  .stats,
  .quotes {
    grid-template-columns: 1fr;
  }
  .policy-hero { padding-top: 14px; }
  .phone-row {
    overflow-x: auto;
    padding-bottom: 18px;
  }
  .device-frame { min-width: 178px; }
  .device-frame.center { min-width: 196px; }
  .quotes { padding: 24px; }
  .quotes img { justify-self: center; }
  footer { flex-wrap: wrap; }
}
