:root {
  --ink: #252525;
  --muted: #6f706d;
  --line: #d7d8d3;
  --surface: #ffffff;
  --canvas: #f4f5f2;
  --canvas-warm: #f7f7f3;
  --green: #91bd00;
  --green-dark: #759b00;
  --green-soft: #edf5d4;
  --blue: #217da8;
  --blue-dark: #17688e;
  --blue-soft: #e7f2f7;
  --orange: #dc6b2c;
  --shadow: 0 18px 45px rgba(42, 48, 37, 0.1);
  --small-shadow: 0 4px 14px rgba(42, 48, 37, 0.08);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(215, 216, 211, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 32px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border-radius: 9px;
}

.brand-copy,
.footer-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 19px;
}

.brand-copy small,
.footer-brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  color: #484946;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--blue-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 21px;
  border: 1px solid var(--green-dark);
  border-radius: 5px;
  background: linear-gradient(#a4cf17, #89b500);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), var(--small-shadow);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  filter: brightness(0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 18px rgba(93, 126, 0, 0.18);
  transform: translateY(-1px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(33, 125, 168, 0.25);
  outline-offset: 3px;
}

.button-small {
  min-height: 38px;
  padding-inline: 17px;
  font-size: 14px;
}

.button-large {
  min-height: 50px;
  padding-inline: 25px;
}

.button-secondary {
  border-color: #b9bbb6;
  background: linear-gradient(#fff, #f0f1ee);
  box-shadow: var(--small-shadow);
  color: #353633;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 72px;
  background:
    radial-gradient(circle at 84% 8%, rgba(145, 189, 0, 0.13), transparent 27%),
    linear-gradient(180deg, #fff 0%, var(--canvas-warm) 100%);
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(33, 125, 168, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(33, 125, 168, 0.035), 0 0 0 84px rgba(33, 125, 168, 0.02);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.92fr);
  align-items: center;
  gap: 68px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(42px, 5.1vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 660px;
  margin: 25px 0 0;
  color: #5e5f5c;
  font-size: 20px;
  line-height: 1.55;
}

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

.trial-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.trial-note span {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #617e00;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.cashier-scene {
  position: relative;
  padding: 14px;
  border: 1px solid #d7d9d2;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.cashier-window {
  overflow: hidden;
  border: 1px solid #c8cac4;
  border-radius: 10px;
  background: #f6f6f4;
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 15px;
  border-bottom: 1px solid #cdcec9;
  background: linear-gradient(#fdfdfd, #e9eae7);
  color: #4e504c;
  font-size: 12px;
}

.window-title {
  font-weight: 700;
}

.window-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.window-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(145, 189, 0, 0.15);
}

.scan-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px;
  padding: 13px;
  border: 1px solid #cbdde5;
  background: var(--blue-soft);
}

.scan-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 5px;
  background: var(--blue);
  color: #fff;
}

.scan-row span:last-child {
  display: flex;
  flex-direction: column;
}

.scan-row small,
.offer-row small,
.product-pair small {
  color: var(--muted);
}

.scan-row strong {
  font-size: 15px;
}

.prompt-card {
  margin: 0 14px;
  padding: 14px;
  border: 1px solid #d2d3cf;
  background: #fff;
  box-shadow: 0 2px 7px rgba(34, 38, 31, 0.06);
}

.prompt-card > p {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.offer-row {
  display: grid;
  grid-template-columns: 27px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid #ecece9;
}

.offer-row > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.offer-row strong {
  font-size: 14px;
}

.offer-row small {
  font-size: 11px;
}

.offer-number {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid #bdc0b8;
  border-radius: 4px;
  background: #f5f5f2;
  font-size: 12px;
  font-weight: 700;
}

.offer-action {
  padding: 6px 9px;
  border: 1px solid var(--green-dark);
  border-radius: 4px;
  background: #99c60c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.cashier-tip {
  margin: 12px 14px 15px;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
  color: #5d5f5b;
  font-size: 12px;
}

.scene-caption {
  position: absolute;
  right: 28px;
  bottom: -24px;
  display: flex;
  flex-direction: column;
  width: min(350px, calc(100% - 56px));
  padding: 14px 17px;
  border: 1px solid #d5d6d1;
  border-radius: 7px;
  background: #fff;
  box-shadow: var(--small-shadow);
  font-size: 13px;
}

.scene-caption span {
  color: var(--muted);
}

.quick-facts {
  border-block: 1px solid var(--line);
  background: #fff;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.facts-grid > div {
  display: flex;
  flex-direction: column;
  min-height: 105px;
  padding: 24px 28px;
  border-left: 1px solid var(--line);
}

.facts-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.facts-grid strong {
  font-size: 22px;
}

.facts-grid span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 100px 0;
}

.section-tinted {
  border-block: 1px solid var(--line);
  background: var(--canvas);
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.steps li:last-child {
  border-right: 1px solid var(--line);
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid #bdd1db;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 700;
}

.steps p,
.feature-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 10px rgba(42, 48, 37, 0.04);
}

.feature-card-wide {
  grid-column: span 3;
  min-height: 0;
  padding-right: 36%;
  background:
    linear-gradient(90deg, #fff 0%, #fff 62%, rgba(231, 242, 247, 0.4) 62%),
    #fff;
}

.feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid #bed1da;
  border-radius: 7px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 700;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 80px;
}

.recommendation-copy > p:not(.eyebrow):not(.safe-note) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.safe-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.safe-note span {
  display: grid;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 700;
}

.insight-panel {
  overflow: hidden;
  border: 1px solid #cfd0cb;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.insight-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(#fcfcfc, #efefec);
  font-size: 13px;
}

.insight-head strong {
  color: #607e00;
}

.product-pair {
  display: grid;
  grid-template-columns: 1fr 38px 1fr;
  align-items: center;
  gap: 16px;
  padding: 34px 24px;
}

.product-pair div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-pair strong {
  font-size: 18px;
}

.pair-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 20px;
}

.insight-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: #f7f7f5;
}

.insight-stats span {
  display: flex;
  flex-direction: column;
  padding: 15px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.insight-stats span:last-child {
  border-right: 0;
}

.insight-stats strong {
  color: var(--ink);
  font-size: 18px;
}

.insight-button {
  float: right;
  margin: 18px;
  opacity: 1;
}

.client-section {
  overflow: hidden;
}

.client-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 64px;
}

.client-preview {
  position: relative;
}

.client-preview::before {
  position: absolute;
  inset: 8% 5% -10%;
  z-index: 0;
  border-radius: 50%;
  background: rgba(33, 125, 168, 0.12);
  filter: blur(24px);
  content: "";
}

.client-preview img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.client-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--green-dark);
  font-weight: 700;
  content: "✓";
}

.download-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.client-download-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.store-download-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 62px;
  padding: 9px 20px;
  border: 1px solid #111;
  border-radius: 8px;
  background: #1b1b1b;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.store-download-button:hover {
  background: #303030;
  transform: translateY(-1px);
}

.store-download-button > span:last-child {
  display: grid;
  gap: 2px;
}

.store-download-button small {
  color: #ddd;
  font-size: 11px;
  line-height: 1;
}

.store-download-button strong {
  font-size: 17px;
  line-height: 1.1;
}

.store-mark {
  display: grid;
  grid-template-columns: repeat(2, 9px);
  grid-template-rows: repeat(2, 9px);
  gap: 2px;
  flex: 0 0 auto;
}

.store-mark i {
  display: block;
  background: #fff;
}

.manual-download-link {
  color: var(--blue);
  font-weight: 700;
  text-underline-offset: 3px;
}

.pricing-section {
  background: #fff;
}

.trial-plan {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  padding: 24px 28px;
  border: 1px solid #bfd176;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--green-soft), #f8faef);
}

.plan-badge {
  display: inline-block;
  margin-bottom: 7px;
  color: #607e00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trial-plan h3 {
  font-size: 21px;
}

.trial-plan p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.trial-plan > strong {
  font-size: 27px;
  white-space: nowrap;
}

.trial-plan > strong small,
.price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.pricing-note {
  margin: 36px 0 12px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

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

.price-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.price-card-popular {
  border-color: #aac2cf;
  box-shadow: 0 8px 22px rgba(33, 125, 168, 0.1);
}

.popular-label {
  position: absolute;
  top: -11px;
  right: 16px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.point-limit {
  margin: 10px 0 25px;
  color: var(--muted);
}

.price {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  white-space: nowrap;
}

.unit-price {
  margin: 5px 0 0;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: var(--canvas-warm);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 7px;
  color: var(--blue-dark);
  font-size: 22px;
  font-weight: 400;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -5px 44px 22px 0;
  color: var(--muted);
}

.final-cta {
  padding: 68px 0;
  background: var(--blue-dark);
  color: #fff;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
}

.final-cta .eyebrow {
  color: #b9deec;
}

.final-cta h2 {
  max-width: 800px;
}

.button-light {
  border-color: #fff;
  background: #fff;
  box-shadow: none;
  color: var(--blue-dark);
}

.site-footer {
  padding: 34px 0 26px;
  border-top: 1px solid #393a37;
  background: #292a28;
  color: #d5d6d2;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 35px;
}

.footer-brand strong {
  color: #fff;
}

.footer-brand small {
  color: #a9aaa6;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.site-footer a {
  color: #fff;
}

.legal-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #444541;
  color: #979894;
  font-size: 11px;
}

@media (max-width: 1020px) {
  .hero-grid,
  .recommendation-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 58px;
  }

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

  .cashier-scene {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .facts-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facts-grid > div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .facts-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 0;
  }

  .steps li:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .feature-card-wide {
    padding-right: 30px;
    background: #fff;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .client-preview {
    order: 2;
  }

  .client-copy {
    max-width: 700px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 64px;
    gap: 14px;
  }

  .main-nav {
    display: none;
  }

  .header-inner > .button {
    margin-left: auto;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding: 54px 0 58px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  h2 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trial-note {
    align-items: flex-start;
  }

  .cashier-scene {
    padding: 8px;
  }

  .window-status,
  .offer-row small,
  .scene-caption {
    display: none;
  }

  .offer-row {
    grid-template-columns: 26px minmax(0, 1fr) auto;
    gap: 7px;
  }

  .offer-action {
    padding-inline: 6px;
  }

  .facts-grid,
  .steps,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .facts-grid > div,
  .facts-grid > div:last-child,
  .facts-grid > div:nth-child(2) {
    min-height: 0;
    padding: 18px 12px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .facts-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

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

  .steps {
    gap: 0;
  }

  .steps li,
  .steps li:nth-child(2),
  .steps li:last-child {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .step-number {
    margin: 0;
  }

  .feature-card,
  .feature-card-wide {
    grid-column: auto;
    min-height: 0;
    padding: 24px;
  }

  .recommendation-grid,
  .client-grid {
    gap: 42px;
  }

  .product-pair {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 18px;
  }

  .pair-arrow {
    width: 32px;
    height: 32px;
    transform: rotate(90deg);
  }

  .insight-stats {
    grid-template-columns: 1fr;
  }

  .insight-stats span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .insight-stats span:last-child {
    border-bottom: 0;
  }

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

  .trial-plan {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .trial-plan .button {
    width: 100%;
  }

  .price-card {
    padding: 23px;
  }

  .final-cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-inner {
    gap: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
