:root {
  --bg: #fbf7f4;
  --surface: #fffdfb;
  --surface-strong: #fff4f1;
  --ink: #281f25;
  --muted: #695961;
  --rose: #bd4f6a;
  --rose-dark: #92374f;
  --peach: #f0c3b9;
  --sage: #536d64;
  --gold: #ab7645;
  --line: rgba(73, 48, 60, 0.14);
  --shadow: 0 18px 48px rgba(57, 36, 45, 0.12);
  --soft-shadow: 0 10px 28px rgba(57, 36, 45, 0.1);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 890px;
  margin-bottom: 24px;
  font-size: 56px;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

p {
  color: var(--muted);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 244, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  color: var(--ink);
  font-weight: 700;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 1px var(--line);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.site-nav a {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 14px 24px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
.faq-question:focus-visible,
.back-to-top:focus-visible {
  outline: 3px solid rgba(83, 109, 100, 0.42);
  outline-offset: 3px;
}

.button-primary {
  background: var(--rose);
  color: #fffaf8;
  box-shadow: 0 14px 28px rgba(189, 79, 106, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--rose-dark);
}

.button-secondary,
.button-outline {
  border-color: var(--line);
  background: rgba(255, 253, 251, 0.88);
  color: var(--ink);
  box-shadow: var(--soft-shadow);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(189, 79, 106, 0.36);
  background: #fff;
}

.button-small {
  min-height: 46px;
  padding: 10px 18px;
  font-size: 15px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.channel-strip,
.chat-source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.channel-strip {
  margin: 0 0 28px;
}

.channel-strip span,
.chat-source-row span {
  border: 1px solid rgba(83, 109, 100, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.82);
  padding: 8px 12px;
  color: var(--sage);
  font-size: 14px;
  font-weight: 900;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(171, 118, 69, 0.24);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.8);
  padding: 8px 13px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f6ece8;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(246, 236, 232, 0.82);
  content: "";
}

.hero-backdrop {
  position: absolute;
  inset: 42px -70px auto auto;
  z-index: 0;
  width: min(62vw, 900px);
  border: 1px solid rgba(73, 48, 60, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 860px;
  align-content: center;
  gap: 34px;
  padding: 110px 0 92px;
}

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

.hero-lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: #493b43;
  font-size: 22px;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.mini-proof {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(73, 48, 60, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 251, 0.82);
  box-shadow: var(--soft-shadow);
  padding: 18px;
}

.mini-proof strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.24;
}

.mini-proof span {
  color: var(--muted);
  font-size: 15px;
}

.hero-chat {
  width: min(100%, 560px);
  margin: 0;
  border: 1px solid rgba(73, 48, 60, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 251, 0.94);
  box-shadow: var(--shadow);
  padding: 24px;
}

.hero-chat figcaption {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.chat-source-row {
  margin-bottom: 18px;
}

.chat-line,
.message {
  width: fit-content;
  max-width: 88%;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 15px;
}

.chat-line + .chat-line {
  margin-top: 12px;
}

.chat-line span,
.message span {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 900;
}

.chat-line p,
.message p {
  margin-bottom: 0;
  color: var(--ink);
}

.chat-client,
.from-client {
  margin-left: auto;
  border-color: rgba(189, 79, 106, 0.18);
  background: #fff0f2;
}

.chat-client span,
.from-client span {
  color: var(--rose-dark);
}

.chat-bot,
.from-bot {
  border-color: rgba(83, 109, 100, 0.18);
  background: #eef4f0;
}

.chat-bot span,
.from-bot span {
  color: var(--sage);
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 560px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.section-heading-wide {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-grid,
.launch-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: start;
}

.problem-band,
.demo-band,
.audience-band,
.faq-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.problem-list,
.feature-list,
.launch-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-list {
  display: grid;
  gap: 14px;
}

.problem-list li,
.feature-list li {
  position: relative;
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  padding: 20px 22px 20px 58px;
  color: var(--ink);
}

.problem-list li::before,
.feature-list li::before {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--peach);
  box-shadow: inset 0 0 0 4px #fff7f3;
  content: "";
}

.cards,
.audience-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.solution-cards,
.benefit-cards,
.audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.benefit-card,
.audience-card,
.price-card,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.info-card {
  min-height: 240px;
  padding: 28px;
}

.info-card p,
.benefit-card p,
.step p,
.price-card p {
  margin-bottom: 0;
}

.card-mark {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  border-radius: var(--radius);
  background: #f4d9cf;
  color: var(--rose-dark);
  font-size: 15px;
  font-weight: 900;
}

.steps-band,
.pricing-band {
  background: #f8efeb;
}

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

.step {
  min-height: 286px;
  padding: 28px;
}

.step > span {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: #f9fffb;
  font-size: 20px;
  font-weight: 900;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1fr);
  gap: 56px;
  align-items: center;
}

.demo-stack {
  display: grid;
  gap: 18px;
}

.capability-layout {
  display: grid;
  gap: 34px;
}

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

.feature-list li {
  min-height: 116px;
  padding: 18px 18px 18px 46px;
  font-size: 16px;
}

.feature-list li::before {
  top: 24px;
  left: 18px;
  background: var(--sage);
}

.visual-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.product-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-shot figcaption {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  border: 1px solid rgba(73, 48, 60, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 251, 0.92);
  padding: 7px 11px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
}

.product-shot::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 251, 0.48);
  content: "";
  pointer-events: none;
}

.product-shot img {
  width: 100%;
  height: auto;
}

.demo-chat {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #faf2ef;
  box-shadow: var(--shadow);
  padding: 28px;
}

.admin-preview {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  padding: 22px;
}

.admin-preview p {
  margin-bottom: 0;
}

.admin-preview-title {
  margin-bottom: 8px !important;
  color: var(--sage);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.message-final {
  max-width: 100%;
}

.roi-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
  border: 1px solid rgba(189, 79, 106, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fffaf7 0%, #fff1ee 100%);
  box-shadow: var(--soft-shadow);
  padding: 22px 24px;
}

.roi-banner strong {
  color: var(--rose-dark);
  font-size: 18px;
}

.roi-banner span {
  color: var(--ink);
}

.benefit-card {
  min-height: 176px;
  padding: 28px;
}

.audience-card {
  display: flex;
  min-height: 116px;
  align-items: center;
  padding: 26px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
}

.audience-card:hover,
.audience-card:focus-visible {
  border-color: rgba(189, 79, 106, 0.32);
  background: #fff7f5;
  transform: translateY(-2px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: 30px;
}

.price-card-featured {
  border-color: rgba(189, 79, 106, 0.38);
  background: #fff7f5;
  box-shadow: var(--shadow);
}

.price-label {
  width: fit-content;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(189, 79, 106, 0.12);
  padding: 8px 12px;
  color: var(--rose-dark);
  font-size: 15px;
  font-weight: 900;
}

.price-card h3 {
  margin-bottom: 28px;
  font-size: 38px;
}

.price-card ul {
  display: grid;
  flex: 1;
  gap: 11px;
  margin: 0 0 28px;
  padding-left: 22px;
  color: var(--ink);
}

.price-card li::marker {
  color: var(--rose);
}

.pricing-note {
  margin: 20px 0 0;
  border: 1px solid rgba(171, 118, 69, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 253, 251, 0.78);
  padding: 18px 20px;
  color: var(--muted);
  font-size: 16px;
}

.support-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  padding: 28px 30px;
}

.support-card h3,
.support-card p {
  margin-bottom: 0;
}

.support-card h3 {
  font-size: 32px;
}

.launch-list {
  display: grid;
  counter-reset: launch;
  gap: 12px;
}

.launch-list li {
  position: relative;
  counter-increment: launch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  padding: 22px 24px 22px 84px;
  color: var(--ink);
}

.launch-list li::before {
  position: absolute;
  top: 16px;
  left: 20px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #f3d2c7;
  color: var(--rose-dark);
  content: counter(launch);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  position: relative;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 24px 68px 24px 24px;
  cursor: pointer;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  text-align: left;
}

.faq-question::after {
  position: absolute;
  top: calc(50% - 18px);
  right: 22px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #f3d2c7;
  color: var(--rose-dark);
  content: "+";
  font-size: 26px;
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  padding: 0 24px 24px;
}

.faq-answer p {
  margin-bottom: 0;
}

.trust-band {
  border-top: 1px solid var(--line);
  background: #fff8f5;
}

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

.trust-card {
  min-height: 192px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  padding: 26px;
}

.trust-card h3 {
  margin-bottom: 12px;
}

.trust-card p {
  margin-bottom: 0;
}

.trust-card a {
  color: var(--rose-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contacts-band {
  background: #27342f;
  color: #fffaf7;
}

.contacts-inner {
  max-width: 900px;
  text-align: center;
}

.contacts-inner .eyebrow {
  border-color: rgba(255, 250, 247, 0.2);
  background: rgba(255, 250, 247, 0.12);
  color: #f6d1c3;
}

.contacts-inner h2 {
  margin-bottom: 18px;
  color: #fffaf7;
  font-size: 48px;
}

.contacts-inner p:not(.eyebrow) {
  margin-bottom: 34px;
  color: #eaded8;
  font-size: 22px;
}

.contacts-inner .button-row {
  justify-content: center;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.contact-meta span {
  border: 1px solid rgba(255, 250, 247, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 247, 0.1);
  padding: 9px 14px;
  color: #f5e6df;
  font-size: 14px;
  font-weight: 800;
}

.contacts-inner .button-secondary {
  border-color: rgba(255, 250, 247, 0.22);
  background: rgba(255, 250, 247, 0.12);
  color: #fffaf7;
  box-shadow: none;
}

.site-footer {
  border-top: 1px solid rgba(255, 250, 247, 0.12);
  background: #1e2824;
  padding: 28px 0;
}

.site-footer p {
  margin: 0;
  color: #e9ddd7;
  font-size: 15px;
  text-align: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  margin-top: 16px;
  color: #f6d1c3;
  font-size: 14px;
  font-weight: 700;
}

.footer-legal a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-note {
  max-width: 820px;
  margin: 16px auto 0 !important;
  color: #cfc3bd !important;
  font-size: 13px !important;
}

.legal-page {
  background: var(--bg);
}

.legal-document {
  max-width: 920px;
  padding: 72px 0;
}

.legal-document article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  padding: 40px;
}

.legal-document h1 {
  font-size: 42px;
}

.legal-document h2 {
  margin-top: 32px;
  font-size: 26px;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 17px;
}

.legal-document a {
  color: var(--rose-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.template-warning {
  border: 1px solid rgba(171, 118, 69, 0.3);
  border-radius: var(--radius);
  background: #fff7e9;
  padding: 18px 20px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 16;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(73, 48, 60, 0.18);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
  color: #fffaf8;
  cursor: pointer;
  font-size: 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--rose-dark);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background: rgba(246, 236, 232, 0.82);
  }

  .hero-backdrop {
    inset: 78px -56px auto auto;
    width: min(78vw, 840px);
    opacity: 0.72;
  }

  .hero-inner {
    min-height: 780px;
    padding: 92px 0 80px;
  }

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

  .step {
    min-height: 250px;
  }

  .demo-layout,
  .section-grid,
  .launch-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .capability-layout,
  .demo-layout {
    gap: 38px;
  }

  .hero-proof-grid,
  .feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .visual-pair {
    grid-template-columns: 1fr;
  }

  .feature-list li {
    min-height: 104px;
  }

  .solution-cards,
  .benefit-cards,
  .audience-grid,
  .trust-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card {
    min-height: 0;
  }
}

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

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    min-width: 0;
    font-size: 16px;
  }

  .site-nav {
    display: none;
  }

  .button-small {
    padding-inline: 14px;
  }

  h1 {
    font-size: 35px;
  }

  h2,
  .contacts-inner h2 {
    font-size: 30px;
  }

  h3,
  .audience-card {
    font-size: 21px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background: rgba(246, 236, 232, 0.88);
  }

  .hero-backdrop {
    inset: auto -96px 48px -24px;
    width: calc(100% + 120px);
    opacity: 0.34;
  }

  .hero-inner {
    min-height: auto;
    gap: 28px;
    padding: 62px 0 64px;
  }

  .hero-lead,
  .contacts-inner p:not(.eyebrow) {
    font-size: 19px;
  }

  .hero-proof-grid,
  .button-row,
  .button {
    width: 100%;
  }

  .button-row {
    display: grid;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero-chat,
  .demo-chat {
    padding: 18px;
  }

  .channel-strip span,
  .chat-source-row span {
    font-size: 13px;
  }

  .chat-line,
  .message {
    max-width: 96%;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading-wide {
    margin-bottom: 30px;
  }

  .steps,
  .solution-cards,
  .benefit-cards,
  .audience-grid,
  .pricing-grid,
  .trust-grid,
  .feature-list,
  .visual-pair {
    grid-template-columns: 1fr;
  }

  .info-card,
  .benefit-card,
  .step {
    min-height: 0;
    padding: 24px;
  }

  .card-mark,
  .step > span {
    margin-bottom: 26px;
  }

  .problem-list li,
  .feature-list li {
    min-height: 0;
    padding: 18px 18px 18px 52px;
  }

  .problem-list li::before,
  .feature-list li::before {
    top: 24px;
    left: 20px;
  }

  .audience-card {
    min-height: 88px;
    padding: 22px;
  }

  .price-card {
    padding: 24px;
  }

  .price-card h3 {
    font-size: 32px;
  }

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

  .support-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .launch-list li {
    padding: 20px 18px 20px 70px;
  }

  .launch-list li::before {
    left: 16px;
  }

  .faq-question {
    padding: 20px 60px 20px 18px;
    font-size: 18px;
  }

  .faq-question::after {
    right: 16px;
  }

  .faq-answer {
    padding: 0 18px 20px;
  }

  .trust-card {
    min-height: 0;
    padding: 22px;
  }

  .contact-meta {
    display: grid;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .legal-document {
    padding: 42px 0;
  }

  .legal-document article {
    padding: 24px;
  }

  .legal-document h1 {
    font-size: 30px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
