@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/onest-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/onest-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/onest-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/onest-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --page: #ffffff;
  --surface: #f1f3f7;
  --surface-cool: #e9eef4;
  --surface-accent: #ece8fb;
  --ink: #171827;
  --muted: #626575;
  --accent: #6546d7;
  --accent-deep: #4f35b8;
  --accent-soft: #e8e2ff;
  --line: rgba(23, 24, 39, 0.1);
  --section-radius: 36px;
  --card-radius: 24px;
  --control-radius: 999px;
  --shadow-media: 0 34px 80px -40px rgba(41, 44, 68, 0.4);
}

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

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  color: var(--ink);
  background: var(--page);
  font-family: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

.page {
  width: 100%;
  background: var(--page);
}

.section {
  position: relative;
  width: 100%;
}

.section-inner,
.content-shell,
.site-header,
.site-footer {
  width: min(1440px, 100%);
  margin-inline: auto;
}

.section-inner {
  padding: clamp(54px, 6vw, 88px) clamp(36px, 7vw, 108px);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding-inline: clamp(28px, 7vw, 108px);
}

.wordmark {
  font-size: 20px;
  font-weight: 790;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(23, 24, 39, 0.68);
  font-size: 15px;
  font-weight: 620;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 5px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-section {
  isolation: isolate;
  min-height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(46% 58% at 78% 34%, rgba(119, 101, 189, 0.13), transparent 72%),
    radial-gradient(40% 50% at 18% 12%, rgba(180, 202, 221, 0.22), transparent 76%),
    linear-gradient(180deg, #f5f7fb 0%, #eef2f6 56%, #f8fafb 82%, #fff 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: -24%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 34%, rgba(101, 70, 215, 0.1), transparent 23%),
    radial-gradient(circle at 30% 40%, rgba(110, 174, 195, 0.12), transparent 27%);
  filter: blur(62px);
  mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 94%);
  animation: hero-drift 16s ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(320px, 430px);
  align-items: center;
  justify-content: space-between;
  min-height: 100dvh;
  padding-top: 104px;
  padding-bottom: 48px;
  gap: clamp(72px, 8vw, 120px);
}

.hero-copy {
  max-width: 680px;
  min-width: 0;
}

.hero-copy h1,
.section-heading h2,
.problem-title,
.video-copy h2,
.qr-copy h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 830;
  letter-spacing: 0;
}

.hero-copy h1 {
  font-size: clamp(42px, 3.6vw, 52px);
  line-height: 1.04;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy p {
  max-width: 540px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--control-radius);
  font-size: 15px;
  font-weight: 720;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button-primary {
  color: #faf9ff;
  background: var(--accent-deep);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #432ba2;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #fff;
}

.card-area {
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.card-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(34vw, 430px, calc((100dvh - 144px) * 3 / 4));
  aspect-ratio: 3 / 4;
  transform-style: preserve-3d;
}

.card-wrap {
  --card-rotate-y: 0deg;
  --card-scale: 1;
  --card-shadow-x: 0px;
  --card-shadow-alpha: 0.22;

  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(var(--card-scale)) rotateY(var(--card-rotate-y));
  transform-style: preserve-3d;
  filter: drop-shadow(var(--card-shadow-x) 30px 42px rgba(41, 44, 68, var(--card-shadow-alpha)));
  transition:
    transform 520ms cubic-bezier(0.22, 0.8, 0.2, 1),
    filter 520ms cubic-bezier(0.22, 0.8, 0.2, 1);
  will-change: transform, filter;
}

.floating-card {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--card-radius);
  object-fit: contain;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.problem-section,
.video-section,
.qr-section,
.pricing-section {
  padding: 14px;
  background: var(--page);
}

.problem-inner,
.video-inner,
.qr-inner,
.pricing-inner {
  border-radius: var(--section-radius);
  background: var(--surface);
}

.problem-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  grid-template-areas: "copy visual";
  align-content: center;
  align-items: center;
  column-gap: clamp(54px, 7vw, 112px);
  row-gap: 28px;
  min-height: 760px;
  background:
    radial-gradient(54% 58% at 84% 22%, rgba(101, 70, 215, 0.09), transparent 72%),
    var(--surface);
}

.problem-copy {
  grid-area: copy;
  display: grid;
  gap: 32px;
  align-content: center;
}

.problem-heading {
  max-width: 670px;
}

.problem-title {
  font-size: clamp(36px, 3.8vw, 54px);
  line-height: 1.06;
}

.problem-subtitle {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 520;
  line-height: 1.48;
}

.problem-text {
  max-width: 640px;
}

.problem-text p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
}

.marker-highlight {
  padding: 0 0.1em;
  color: var(--ink);
  font-weight: 760;
  background: linear-gradient(transparent 54%, rgba(101, 70, 215, 0.22) 54%, rgba(101, 70, 215, 0.22) 94%, transparent 94%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.addressbook-visual {
  grid-area: visual;
  width: min(100%, 520px);
  margin: 0;
  justify-self: end;
}

.addressbook-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-media);
}

.details-section {
  padding: clamp(48px, 5vw, 72px) 28px clamp(92px, 10vw, 150px);
  background: var(--page);
}

.content-shell {
  padding-inline: clamp(22px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(36px, 4.4vw, 62px);
  line-height: 1.04;
}

.section-heading p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.52;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(230px, auto));
  gap: 16px;
}

.feature-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--card-radius);
  background: var(--surface);
}

.feature-card h3 {
  max-width: 420px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 760;
  line-height: 1.12;
}

.feature-card p {
  max-width: 450px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.54;
}

.feature-card-visual {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.72fr);
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  background: var(--surface-accent);
}

.feature-card-visual img {
  width: min(100%, 270px);
  max-height: 500px;
  justify-self: end;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(45, 36, 78, 0.18));
}

.feature-card-search {
  grid-column: 8 / 13;
  grid-row: 1;
  background: var(--surface-cool);
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.keyword-list li {
  padding: 9px 14px;
  border-radius: var(--control-radius);
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(79, 53, 184, 0.1);
}

.feature-card-return {
  grid-column: 8 / 11;
  grid-row: 2;
  background: #f2f3f7;
}

.feature-card-ready {
  grid-column: 11 / 13;
  grid-row: 2;
  background: var(--accent-deep);
}

.feature-card-ready h3,
.feature-card-ready p {
  color: #f8f7ff;
}

.feature-card-ready h3 {
  font-size: clamp(20px, 1.6vw, 25px);
}

.feature-card-ready p {
  opacity: 0.76;
}

.video-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  align-items: center;
  justify-content: space-between;
  min-height: calc(100dvh - 28px);
  padding-block: 16px;
  gap: clamp(48px, 6vw, 96px);
  background:
    radial-gradient(48% 56% at 80% 42%, rgba(101, 70, 215, 0.08), transparent 74%),
    var(--surface);
}

.video-copy {
  max-width: 600px;
}

.video-copy h2,
.qr-copy h2 {
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.04;
}

.video-copy > p,
.qr-copy > p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.52;
}

.video-points {
  display: grid;
  gap: 0;
  max-width: 540px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.video-points li {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.video-points li:last-child {
  border-bottom: 0;
}

.video-points strong {
  font-size: 15px;
  font-weight: 730;
}

.video-points span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.phone-shadow {
  --radius: 20px;

  position: relative;
  width: min(40vw, 480px, calc((100dvh - 60px) * 720 / 1562));
  aspect-ratio: 720 / 1562;
  justify-self: center;
}

.phone-mask,
.screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  clip-path: inset(0 round var(--radius));
}

.phone-mask {
  background: #f8f9fc;
  box-shadow: var(--shadow-media);
}

.screen video {
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin: -1px;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  clip-path: inherit;
}

.qr-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  align-items: center;
  min-height: 720px;
  gap: clamp(52px, 8vw, 132px);
  background:
    radial-gradient(50% 60% at 84% 16%, rgba(101, 70, 215, 0.11), transparent 70%),
    var(--surface-accent);
}

.qr-copy {
  max-width: 660px;
}

.device-note {
  max-width: 600px;
  margin-top: 34px;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(79, 53, 184, 0.08);
}

.device-note strong {
  display: block;
  color: var(--accent-deep);
  font-size: 15px;
  font-weight: 760;
}

.device-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.qr-demo {
  width: min(100%, 390px);
  margin: 0;
  justify-self: center;
}

.qr-frame {
  padding: 24px;
  border-radius: var(--card-radius);
  background: #fff;
  box-shadow: var(--shadow-media);
}

.qr-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.qr-demo figcaption {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.qr-demo figcaption strong {
  color: var(--accent-deep);
  font-size: 17px;
  font-weight: 780;
}

.pricing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.78fr);
  align-items: center;
  min-height: 560px;
  gap: clamp(56px, 8vw, 132px);
  background:
    radial-gradient(48% 92% at 90% 14%, rgba(101, 70, 215, 0.12), transparent 72%),
    var(--surface-cool);
}

.pricing-copy {
  max-width: 680px;
}

.pricing-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 830;
  line-height: 1.04;
  letter-spacing: 0;
}

.pricing-copy p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.52;
}

.pricing-summary {
  padding-left: clamp(36px, 5vw, 72px);
  border-left: 1px solid rgba(23, 24, 39, 0.12);
}

.price-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--accent-deep);
  line-height: 0.82;
}

.price-line strong {
  font-size: clamp(72px, 8vw, 112px);
  font-weight: 840;
  letter-spacing: 0;
}

.price-line span {
  margin-top: 8px;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 760;
}

.payment-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 680;
}

.price-includes {
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.price-includes li {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 20px 0 20px 34px;
  border-top: 1px solid rgba(23, 24, 39, 0.1);
}

.price-includes li::before {
  content: "✓";
  position: absolute;
  top: 21px;
  left: 0;
  color: var(--accent-deep);
  font-size: 18px;
  font-weight: 800;
}

.price-includes strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
}

.price-includes span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.cta-section {
  padding: 14px;
  background: var(--page);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(42px, 7vw, 104px);
  width: min(1412px, 100%);
  min-height: 420px;
  margin-inline: auto;
  padding: clamp(52px, 7vw, 96px);
  border-radius: var(--section-radius);
  color: #f8f7ff;
  background:
    radial-gradient(50% 120% at 88% 14%, rgba(255, 255, 255, 0.16), transparent 70%),
    var(--accent-deep);
}

.cta-copy {
  max-width: 760px;
}

.cta-copy h2 {
  margin: 0;
  color: #f8f7ff;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 830;
  line-height: 1.04;
  letter-spacing: 0;
}

.cta-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(248, 247, 255, 0.72);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.52;
}

.cta-button {
  flex: 0 0 auto;
  color: var(--accent-deep);
  background: #f8f7ff;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: var(--accent-soft);
}

.site-footer {
  padding: 74px clamp(28px, 7vw, 108px) 34px;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 62px;
}

.footer-brand {
  max-width: 420px;
}

.footer-brand strong {
  font-size: 19px;
  font-weight: 780;
}

.footer-brand p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--accent-deep);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes hero-drift {
  0% {
    transform: translate3d(-2%, -2%, 0) scale(0.98);
  }

  100% {
    transform: translate3d(3%, 3%, 0) scale(1.04);
  }
}

@media (max-width: 1080px) {
  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  }

  .feature-card-visual {
    grid-template-columns: minmax(0, 1fr) minmax(170px, 0.62fr);
  }

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

@media (max-width: 760px) {
  :root {
    --section-radius: 28px;
    --card-radius: 20px;
  }

  .site-header {
    height: 68px;
    padding-inline: 22px;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav a:not(:last-child) {
    display: none;
  }

  .site-nav a:last-child {
    padding: 10px 15px;
    border-radius: var(--control-radius);
    color: #faf9ff;
    background: var(--accent-deep);
  }

  .site-nav a:last-child::after {
    display: none;
  }

  .section-inner {
    padding: 36px 22px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    min-height: 100dvh;
    padding-top: 88px;
    padding-bottom: 34px;
    gap: 26px;
  }

  .hero-copy {
    width: 100%;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 10.8vw, 45px);
    line-height: 1.05;
  }

  .hero-copy p {
    max-width: 390px;
    margin: 16px auto 0;
    font-size: 16px;
    text-align: center;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 380px);
    margin: 22px auto 0;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .button-secondary {
    display: none;
  }

  .card-stage {
    width: min(70vw, 300px, calc((100dvh - 430px) * 3 / 4));
    min-width: 180px;
  }

  .problem-section,
  .video-section,
  .qr-section,
  .pricing-section {
    padding: 8px;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "visual"
      "text";
    gap: 26px;
    min-height: auto;
    padding: 40px 26px;
  }

  .problem-copy {
    display: contents;
  }

  .problem-heading {
    grid-area: title;
  }

  .problem-text {
    grid-area: text;
  }

  .problem-title,
  .section-heading h2,
  .video-copy h2,
  .qr-copy h2,
  .pricing-copy h2 {
    font-size: clamp(31px, 8.8vw, 40px);
    line-height: 1.08;
  }

  .problem-subtitle {
    margin-top: 14px;
    font-size: 17px;
  }

  .problem-text p {
    font-size: 16px;
  }

  .addressbook-visual {
    width: 100%;
    justify-self: center;
  }

  .details-section {
    padding: 74px 8px;
  }

  .content-shell {
    padding-inline: 14px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading p {
    margin-top: 14px;
    font-size: 17px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .feature-card,
  .feature-card-visual,
  .feature-card-search,
  .feature-card-return,
  .feature-card-ready {
    grid-column: 1;
    grid-row: auto;
  }

  .feature-card {
    padding: 26px;
  }

  .feature-card-visual {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 0;
  }

  .feature-card-visual img {
    width: min(70%, 260px);
    max-height: 420px;
    justify-self: center;
  }

  .video-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: start;
    justify-items: center;
    gap: 18px;
    min-height: calc(100dvh - 16px);
    padding: 26px 0 20px;
  }

  .video-copy {
    width: min(calc(100% - 44px), 420px);
    text-align: center;
  }

  .video-copy > p,
  .video-points {
    display: none;
  }

  .phone-shadow {
    width: min(calc(100vw - 30px), calc((100dvh - 150px) * 720 / 1562));
    min-width: 0;
  }

  .qr-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 36px;
    padding: 44px 26px;
  }

  .qr-copy {
    text-align: left;
  }

  .qr-copy > p {
    font-size: 16px;
  }

  .device-note {
    margin-top: 24px;
    padding: 20px;
  }

  .qr-demo {
    width: min(100%, 320px);
  }

  .qr-frame {
    padding: 18px;
  }

  .pricing-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 36px;
    padding: 44px 26px;
  }

  .pricing-copy p {
    margin-top: 14px;
    font-size: 16px;
  }

  .pricing-summary {
    padding: 30px 0 0;
    border-top: 1px solid rgba(23, 24, 39, 0.12);
    border-left: 0;
  }

  .price-line strong {
    font-size: clamp(68px, 22vw, 88px);
  }

  .price-line span {
    margin-top: 6px;
    font-size: 34px;
  }

  .price-includes {
    margin-top: 28px;
  }

  .cta-section {
    padding: 8px;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
    min-height: auto;
    padding: 44px 26px;
    gap: 30px;
  }

  .cta-copy h2 {
    font-size: clamp(31px, 8.8vw, 40px);
    line-height: 1.08;
  }

  .cta-copy p {
    margin-top: 14px;
    font-size: 16px;
  }

  .cta-button {
    width: 100%;
  }

  .site-footer {
    padding: 52px 26px 28px;
  }

  .footer-main {
    flex-direction: column;
    gap: 34px;
    padding-bottom: 42px;
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: 32px;
  }

  .card-stage {
    min-width: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-section::before {
    animation: none;
  }

  .card-wrap,
  .button,
  .site-nav a,
  .site-nav a::after,
  .reveal-ready [data-reveal] {
    transition: none;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
