@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --violet: #6b35ff;
  --violet-hover: #5725d9;
  --lime: #dfff70;
  --bg: #f7f6fc;
  --surface: #ffffff;
  --lavender: #eee9ff;
  --ink: #211a32;
  --muted: #655e73;
  --muted-light: #d7cee8;
  --border: #dcd5ed;
  --container: 1200px;
  --gutter: 48px;
  --section-gap: clamp(64px, 8vw, 112px);
  --radius-card: 24px;
  --radius-button: 16px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover { text-decoration: none; }

button, a { -webkit-tap-highlight-color: transparent; }

:where(a, summary):focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 4px;
  border-radius: 5px;
}

.dark-section :where(a, summary):focus-visible,
.final-cta-section :where(a, summary):focus-visible {
  outline-color: var(--lime);
}

.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.section-space { padding-block: var(--section-gap); }

.desktop-only { display: inline; }

.icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.site-header {
  position: relative;
  z-index: 5;
  min-height: 80px;
  padding-block: 18px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-link img { display: block; width: 183px; height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  margin-left: auto;
  margin-right: clamp(10px, 4vw, 38px);
  font-size: 15px;
  font-weight: 600;
}

.site-nav a, .footer-nav a { text-decoration: none; }
.site-nav a { transition: color 180ms var(--ease); }
.site-nav a:hover { color: var(--violet); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: var(--radius-button);
  color: #fff;
  background: var(--violet);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 8px 20px rgb(107 53 255 / 16%);
  transition: transform 180ms var(--ease), background-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.button:hover {
  color: #fff;
  background: var(--violet-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgb(107 53 255 / 22%);
}

.button:active { transform: translateY(0); }
.button-small { min-height: 46px; padding: 11px 18px; font-size: 15px; }
.button-small .icon { width: 20px; height: 20px; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 22px 0 70px;
  text-align: center;
}

.hero-content { position: relative; z-index: 1; }

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 22px;
  padding: 5px 18px;
  border-radius: 999px;
  color: var(--violet);
  background: var(--lavender);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.hero h1 {
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(3.8rem, 8.1vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .94;
}

.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong { color: var(--violet); font-weight: 800; }

.hero-underline {
  display: block;
  width: min(420px, 44vw);
  height: auto;
  margin: -1px auto 14px;
  transform: translateX(28px) rotate(-1deg);
}

.hero-lead {
  max-width: 730px;
  margin: 0 auto 26px;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.45;
}

.button-hero { min-height: 58px; padding-inline: 28px; font-size: 17px; }
.button-hero .icon { width: 22px; height: 22px; }
.hero-caption { margin: 9px 0 0; color: var(--muted); font-size: 14px; }
.hero-instruction { margin: 17px 0 0; color: var(--muted); font-size: 14px; }

.hero-shape {
  position: absolute;
  z-index: -1;
  background: var(--lime);
  pointer-events: none;
}

.hero-shape-left {
  top: 54px;
  left: -58px;
  width: 122px;
  height: 122px;
  border-radius: 8px;
  transform: rotate(40deg);
}

.hero-shape-right {
  top: 94px;
  right: -48px;
  width: 206px;
  height: 152px;
  border-radius: 14px;
  opacity: .92;
  transform: rotate(10deg);
}

.hero-note {
  position: absolute;
  color: #9f83ff;
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  pointer-events: none;
}

.hero-note-right {
  top: 124px;
  right: 42px;
  z-index: 0;
  width: 135px;
  color: var(--ink);
  font-size: 18px;
  transform: rotate(-8deg);
}

.hero-note-left { top: 280px; left: 58px; transform: rotate(-8deg); }
.hero-note-bottom { right: 72px; bottom: 42px; font-size: 11px; letter-spacing: .09em; }
.scribble { display: block; width: 86px; height: 15px; margin-top: 8px; border-bottom: 3px solid currentColor; border-radius: 50%; transform: rotate(-5deg); }

.compact-heading { margin-bottom: 25px; }
.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.6vw, 4.3rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .98;
}

.section-heading .section-kicker,
.limits-heading .section-kicker,
.faq-heading .section-kicker { margin-bottom: 16px; }
.section-kicker { padding: 0; min-height: auto; background: transparent; font-size: 13px; letter-spacing: .01em; }

.comparison-section { padding-top: 36px; }

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 136px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.price-card {
  position: relative;
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  align-items: center;
  min-height: 220px;
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.price-card-found { border-color: var(--violet); }
.product-image-wrap { display: grid; place-items: center; width: 176px; height: 192px; overflow: hidden; border-radius: 16px; background: #f4f2f3; }
.product-image-wrap img { display: block; width: 100%; height: 100%; object-fit: contain; }
.price-card-copy { min-width: 0; padding: 2px 12px 0 18px; }
.price-label { margin: 0 0 3px; color: #8b83a1; font-size: 15px; font-weight: 700; line-height: 1.2; }
.price-label-accent { display: inline-block; padding: 5px 9px; border-radius: 8px; color: var(--violet); background: var(--lavender); }
.price-value { margin: 0; font-size: clamp(2.15rem, 4vw, 3.1rem); font-weight: 800; letter-spacing: -.055em; line-height: 1.05; white-space: nowrap; }
.product-name { margin: 8px 0 0; color: #847c98; font-size: 15px; line-height: 1.28; }
.savings-badge { position: absolute; top: 28px; right: 17px; padding: 10px 17px; border-radius: 999px; color: var(--ink); background: var(--lime); font-size: 14px; font-weight: 700; line-height: 1.12; }
.savings-badge strong { font-size: 17px; }
.delivery-caption { position: absolute; bottom: 20px; left: 207px; margin: 0; color: #817895; font-size: 12px; }

.comparison-connector { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--ink); font-size: 12px; font-weight: 700; line-height: 1.25; text-align: center; }
.comparison-connector img { width: 74px; height: 52px; object-fit: contain; }
.illustrative-note { margin: 20px 0 0; color: var(--muted); font-size: 14px; text-align: center; }
.illustrative-note strong { color: var(--ink); }
.section-explanation { max-width: 720px; margin: 22px auto 0; color: var(--muted); font-size: 16px; text-align: center; }

.facts-section { padding: 0 0 74px; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.fact-chip { display: flex; align-items: center; justify-content: center; gap: 13px; min-height: 58px; padding: 12px 16px; border-radius: 999px; color: var(--ink); background: var(--lavender); font-size: 14px; font-weight: 700; line-height: 1.25; text-align: center; }
.fact-icon { width: 26px; height: 26px; flex: 0 0 auto; color: var(--violet); fill: none; stroke: currentColor; stroke-width: 1.8; }
.facts-caption { margin: 17px 0 0; color: var(--muted); font-size: 14px; text-align: center; }
.facts-caption a { color: var(--violet); font-weight: 700; }

.dark-section { color: #fff; background: var(--ink); }
.wishlist-section { position: relative; overflow: hidden; padding-block: clamp(72px, 9vw, 122px); }
.wishlist-glow { position: absolute; top: -180px; right: 15%; width: 420px; height: 420px; border-radius: 50%; background: rgb(107 53 255 / 35%); filter: blur(80px); opacity: .6; pointer-events: none; }
.wishlist-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr); align-items: center; gap: clamp(56px, 10vw, 144px); }
.section-kicker-light { color: var(--lime); }
.wishlist-copy h2 { margin: 0; color: #fff; font-size: clamp(2.55rem, 5vw, 5.3rem); font-weight: 800; letter-spacing: -.075em; line-height: .98; }
.wishlist-copy h2 strong { color: var(--lime); font-weight: 800; }
.wishlist-lead { margin: 28px 0 0; color: #fff; font-size: clamp(1.08rem, 1.7vw, 1.4rem); line-height: 1.42; }
.wishlist-caption { max-width: 500px; margin: 24px 0 0; color: var(--muted-light); font-size: 15px; }
.dark-note { margin: 48px 0 0; color: var(--lime); font-size: 21px; font-style: italic; font-weight: 700; line-height: 1.17; transform: rotate(-5deg); }
.dark-note .scribble { width: 96px; }

.wishlist-visual { position: relative; }
.wishlist-card { max-width: 590px; margin-left: auto; padding: 24px; border-radius: 23px; color: var(--ink); background: #fff; box-shadow: 0 22px 55px rgb(0 0 0 / 25%); }
.wishlist-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 0 2px 16px; }
.wishlist-card-header h3 { display: inline; margin: 0; font-size: 20px; letter-spacing: -.04em; }
.wishlist-count { margin-left: 8px; color: var(--muted); font-size: 13px; }
.demo-label { padding: 4px 8px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); font-size: 11px; }
.wishlist-items { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.wishlist-items li { display: grid; grid-template-columns: 64px minmax(0, 1fr) 24px; align-items: center; gap: 15px; min-height: 78px; padding: 7px 12px 7px 7px; border: 1px solid #ece9f2; border-radius: 14px; }
.wishlist-product-image { display: grid; place-items: center; width: 64px; height: 64px; overflow: hidden; border-radius: 10px; background: #f4f2f3; }
.wishlist-product-image img { display: block; width: 100%; height: 100%; object-fit: contain; }
.wishlist-items strong, .wishlist-items span { display: block; }
.wishlist-items strong { font-size: 13px; line-height: 1.3; }
.wishlist-items span { margin-top: 3px; color: var(--muted); font-size: 12px; }
.bookmark-icon { width: 23px; height: 23px; color: var(--violet); fill: rgb(107 53 255 / 10%); stroke: currentColor; stroke-width: 1.8; }
.demo-disclaimer { margin: 13px 0 0; color: var(--muted); font-size: 12px; text-align: right; }
.wishlist-side-note { position: absolute; right: -94px; bottom: -12px; margin: 0; color: #c6b5ff; font-size: 17px; font-style: italic; font-weight: 700; line-height: 1.2; transform: rotate(-7deg); }
.wishlist-side-note .scribble { width: 62px; }

.steps-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.steps-aside { display: flex; align-items: center; gap: 12px; color: #9f83ff; font-size: 13px; font-style: italic; font-weight: 700; line-height: 1.2; }
.steps-aside img { width: 78px; height: 78px; }
.steps-grid { display: grid; grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr); align-items: center; gap: 8px; margin-top: 46px; }
.step-card { min-height: 230px; padding: 0 12px 0 0; }
.step-number { display: block; margin-bottom: 12px; color: var(--violet); font-size: clamp(3.5rem, 6vw, 5.2rem); font-weight: 800; letter-spacing: -.08em; line-height: .82; }
.step-card h3 { margin: 0 0 10px; font-size: 21px; letter-spacing: -.035em; }
.step-card p { max-width: 300px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.48; }
.step-arrow { display: grid; place-items: center; color: var(--violet); }
.step-arrow .icon { width: 32px; height: 32px; stroke-width: 1.5; }
.bot-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; padding: 9px 16px; border-radius: 999px; color: var(--violet); background: var(--lavender); font-size: 16px; font-weight: 700; text-decoration: none; transition: transform 180ms var(--ease), background-color 180ms var(--ease); }
.bot-link:hover { color: var(--violet-hover); background: #e3dcff; transform: translateX(3px); }
.bot-link .icon { width: 20px; height: 20px; }

.limits-section { background: #efebf8; }
.limits-layout { display: grid; grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr); gap: clamp(44px, 8vw, 120px); }
.limits-heading > p:last-child { max-width: 330px; margin: 23px 0 0; color: var(--muted); }
.limits-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 28px; }
.limit-item { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 14px; padding-top: 17px; border-top: 1px solid #cfc6e1; }
.limit-index { color: var(--violet); font-size: 14px; font-weight: 800; }
.limit-item h3 { margin: 0; font-size: 17px; letter-spacing: -.025em; line-height: 1.25; }
.limit-item p { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.limits-caption { margin: 40px 0 0; padding-top: 22px; border-top: 1px solid #cfc6e1; color: var(--muted); font-size: 14px; }

.faq-layout { display: grid; grid-template-columns: minmax(220px, .62fr) minmax(0, 1.38fr); gap: clamp(44px, 9vw, 140px); }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 72px; padding: 17px 0; cursor: pointer; list-style: none; font-size: 17px; font-weight: 700; line-height: 1.3; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon { width: 23px; height: 23px; flex: 0 0 auto; color: var(--violet); transition: transform 180ms var(--ease); }
.faq-list details[open] .faq-icon { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; margin: -4px 48px 22px 0; color: var(--muted); font-size: 15px; line-height: 1.55; }

.final-cta-section { color: #fff; background: var(--violet); }
.final-cta-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .75fr); align-items: center; gap: 72px; padding-block: clamp(64px, 8vw, 98px); }
.final-cta-inner h2 { margin: 0; font-size: clamp(2.55rem, 5.5vw, 5.7rem); font-weight: 800; letter-spacing: -.075em; line-height: .96; }
.final-cta-inner h2 strong { color: var(--lime); font-weight: 800; }
.final-cta-inner p:not(.section-kicker) { max-width: 600px; margin: 26px 0 0; font-size: 17px; }
.final-cta-action { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.button-light { color: var(--ink); background: #fff; box-shadow: 0 8px 20px rgb(33 26 50 / 15%); }
.button-light:hover { color: var(--ink); background: var(--lime); }
.final-cta-action > span { font-size: 13px; color: #e8ddff; }

.site-footer { padding-block: 40px 26px; background: var(--bg); }
.footer-top, .footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; }
.footer-brand p { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px 28px; padding-top: 7px; color: var(--muted); font-size: 14px; }
.footer-nav a:hover { color: var(--violet); }
.footer-bottom { align-items: center; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--border); color: var(--muted); font-size: 12px; }
.footer-bottom p { max-width: 660px; margin: 0; }
.footer-bottom span { white-space: nowrap; }

.mobile-cta { display: none; }

@media (max-width: 1279px) {
  :root { --gutter: 32px; }
  .hero-note-right { right: 6px; }
  .hero-note-left { left: 10px; }
  .wishlist-grid { gap: 56px; }
  .wishlist-side-note { right: -48px; }
}

@media (max-width: 1023px) {
  .hero { padding-top: 16px; }
  .hero h1 { font-size: clamp(4rem, 10vw, 6.6rem); }
  .hero-note-right { top: 110px; right: -8px; }
  .hero-note-left, .hero-note-bottom { display: none; }
  .comparison-grid { grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr); gap: 8px; }
  .price-card { grid-template-columns: 122px minmax(0, 1fr); min-height: 184px; padding: 9px; }
  .product-image-wrap { width: 122px; height: 162px; }
  .price-card-copy { padding-left: 12px; }
  .price-value { font-size: 2.2rem; }
  .delivery-caption { left: 145px; bottom: 14px; font-size: 11px; }
  .savings-badge { top: 13px; right: 10px; padding: 7px 11px; font-size: 11px; }
  .savings-badge strong { font-size: 14px; }
  .wishlist-grid { grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr); gap: 36px; }
  .wishlist-card { padding: 18px; }
  .wishlist-count { display: block; margin: 5px 0 0; }
  .wishlist-side-note { display: none; }
  .steps-aside { display: none; }
  .final-cta-inner { gap: 42px; }
}

@media (max-width: 767px) {
  :root { --gutter: 20px; --section-gap: 58px; }
  body { font-size: 16px; padding-bottom: 0; }
  .desktop-only { display: none; }
  .site-header { min-height: 64px; padding-block: 13px; }
  .header-inner { gap: 14px; }
  .brand-link img { width: 132px; }
  .site-nav { display: none; }
  .button-small { min-height: 40px; padding: 9px 12px; border-radius: 12px; font-size: 13px; }
  .button-small .icon { width: 18px; height: 18px; }

  .hero { padding: 28px 0 52px; }
  .hero-shape-left { top: 26px; left: -78px; width: 104px; height: 104px; }
  .hero-shape-right { top: 54px; right: -116px; width: 176px; height: 114px; opacity: .68; }
  .hero-note { display: none; }
  .eyebrow { margin-bottom: 20px; padding: 6px 13px; font-size: 12px; }
  .hero h1 { max-width: 350px; font-size: clamp(3.1rem, 13vw, 4.2rem); letter-spacing: -.085em; line-height: .97; }
  .hero-underline { width: min(290px, 82vw); margin: 2px auto 17px; transform: translateX(13px) rotate(-1deg); }
  .hero-lead { margin-bottom: 24px; font-size: 16px; line-height: 1.43; }
  .button-hero { width: 100%; min-height: 56px; padding-inline: 15px; font-size: 15px; }
  .hero-caption, .hero-instruction { font-size: 13px; }
  .hero-instruction { margin-top: 15px; }

  .comparison-section { padding-top: 36px; }
  .section-heading h2 { font-size: clamp(2.35rem, 11vw, 3.4rem); }
  .section-kicker { font-size: 12px; }
  .compact-heading { margin-bottom: 22px; }
  .comparison-grid { grid-template-columns: 1fr; gap: 15px; }
  .price-card { grid-template-columns: 38% minmax(0, 1fr); min-height: 176px; border-radius: 19px; }
  .product-image-wrap { width: 100%; height: 152px; }
  .price-card-copy { padding: 0 8px 0 12px; }
  .price-label { font-size: 13px; }
  .price-label-accent { padding: 4px 7px; }
  .price-value { font-size: clamp(2rem, 11vw, 2.75rem); }
  .product-name { margin-top: 7px; font-size: 13px; }
  .savings-badge { top: 12px; right: 10px; }
  .delivery-caption { left: calc(38% + 12px); bottom: 12px; font-size: 10px; }
  .comparison-connector { flex-direction: row; justify-content: center; gap: 8px; font-size: 11px; }
  .comparison-connector img { width: 50px; height: 36px; transform: rotate(90deg); }
  .illustrative-note { margin-top: 19px; font-size: 13px; line-height: 1.4; }
  .section-explanation { margin-top: 18px; font-size: 15px; text-align: left; }

  .facts-section { padding-bottom: 58px; }
  .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .fact-chip { min-height: 72px; flex-direction: column; gap: 5px; padding: 9px 8px; border-radius: 16px; font-size: 12px; }
  .fact-icon { width: 23px; height: 23px; }
  .facts-caption { margin-top: 14px; font-size: 13px; text-align: left; }

  .wishlist-section { padding-block: 58px 64px; }
  .wishlist-grid { grid-template-columns: 1fr; gap: 36px; }
  .wishlist-copy h2 { font-size: clamp(2.55rem, 12vw, 4.1rem); }
  .wishlist-lead { margin-top: 22px; font-size: 17px; }
  .wishlist-caption { margin-top: 19px; font-size: 14px; }
  .dark-note { margin-top: 30px; font-size: 18px; }
  .wishlist-card { padding: 14px; border-radius: 18px; }
  .wishlist-card-header { padding-bottom: 12px; }
  .wishlist-card-header h3 { font-size: 17px; }
  .wishlist-count { font-size: 11px; }
  .wishlist-items li { grid-template-columns: 52px minmax(0, 1fr) 20px; gap: 10px; min-height: 66px; padding: 6px 8px 6px 6px; }
  .wishlist-product-image { width: 52px; height: 52px; }
  .wishlist-items strong { font-size: 11px; }
  .wishlist-items span { font-size: 10px; }
  .bookmark-icon { width: 19px; height: 19px; }
  .demo-disclaimer { margin-top: 10px; font-size: 11px; }

  .steps-section { padding-top: 60px; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; margin-top: 32px; }
  .step-card { min-height: 0; padding: 0 0 34px 0; }
  .step-number { margin-bottom: 10px; font-size: 3.8rem; }
  .step-card h3 { font-size: 19px; }
  .step-card p { max-width: 100%; font-size: 15px; }
  .step-arrow { display: none; }
  .bot-link { margin-top: 0; }

  .limits-section { padding-block: 58px; }
  .limits-layout { grid-template-columns: 1fr; gap: 34px; }
  .limits-heading > p:last-child { margin-top: 16px; }
  .limits-list { grid-template-columns: 1fr; gap: 0; }
  .limit-item { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; padding-block: 18px; }
  .limit-item h3 { font-size: 16px; }
  .limit-item p { margin-top: 8px; font-size: 14px; }
  .limits-caption { margin-top: 25px; padding-top: 17px; font-size: 13px; }

  .faq-section { padding-block: 58px; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-heading h2 { font-size: clamp(2.8rem, 12vw, 4.2rem); }
  .faq-list summary { min-height: 68px; padding-block: 16px; font-size: 15px; }
  .faq-list summary span { max-width: 82%; }
  .faq-list details p { margin-right: 0; font-size: 14px; }

  .final-cta-inner { grid-template-columns: 1fr; gap: 32px; padding-block: 58px; }
  .final-cta-inner h2 { font-size: clamp(2.65rem, 12vw, 4.2rem); }
  .final-cta-inner p:not(.section-kicker) { margin-top: 21px; font-size: 16px; }
  .final-cta-action { width: 100%; align-items: stretch; }
  .button-light { width: 100%; }
  .final-cta-action > span { text-align: center; }

  .site-footer { padding-block: 34px 26px; }
  .footer-top, .footer-bottom { flex-direction: column; gap: 23px; }
  .footer-nav { justify-content: flex-start; gap: 13px 21px; padding-top: 0; font-size: 13px; }
  .footer-bottom { margin-top: 24px; padding-top: 18px; font-size: 11px; }
  .footer-bottom span { align-self: flex-start; }

  .mobile-cta { position: fixed; z-index: 10; right: 16px; bottom: calc(14px + env(safe-area-inset-bottom)); left: 16px; display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; padding: 13px 16px; border-radius: 15px; color: #fff; background: var(--violet); box-shadow: 0 12px 30px rgb(33 26 50 / 24%); font-size: 14px; font-weight: 700; text-decoration: none; opacity: 0; pointer-events: none; transform: translateY(14px); transition: opacity 180ms var(--ease), transform 180ms var(--ease); }
  .mobile-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-cta .icon { width: 20px; height: 20px; }
}

@media (max-width: 374px) {
  :root { --gutter: 16px; }
  .button-small span { display: none; }
  .button-small { width: 40px; padding: 9px; }
  .hero h1 { font-size: 2.95rem; }
  .price-card { grid-template-columns: 36% minmax(0, 1fr); }
  .delivery-caption { left: calc(36% + 12px); }
  .fact-chip { font-size: 11px; }
}

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