:root {
  --section-space: clamp(84px, 10vw, 132px);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.site-nav {
  transition: background .25s ease, border-color .25s ease;
}

.nav-links a,
.footer-links a {
  transition: color .2s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--text);
}

.nav-cta,
.btn {
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  background: var(--green2);
  box-shadow: 0 18px 48px rgba(16,185,129,.28);
}

.nav-cta:active,
.btn:active {
  transform: translateY(0) scale(.98);
}

.section {
  position: relative;
  padding: var(--section-space) 0;
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 840px;
  margin-bottom: 52px;
}

.section-label {
  margin-bottom: 16px;
  color: var(--green2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-label::before {
  content: "// ";
  color: var(--green);
}

h2 {
  font-family: var(--display);
  font-size: clamp(31px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.section-head > p,
.price-copy > p,
.audit-copy > p {
  max-width: 680px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.problem {
  background: linear-gradient(180deg, rgba(251,113,133,.035), transparent 55%);
}

.loss-timeline {
  display: grid;
  grid-template-columns: 1fr 72px 1fr 72px 1fr;
  align-items: stretch;
}

.loss-step {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13,19,29,.82);
}

.loss-step strong {
  display: block;
  margin-top: 22px;
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.3;
}

.loss-step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.loss-time {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 7px;
  background: var(--green-soft);
  color: var(--green2);
  font-family: var(--mono);
  font-size: 12px;
}

.loss-final {
  border-color: rgba(251,113,133,.28);
}

.loss-final .loss-time {
  background: rgba(251,113,133,.1);
  color: var(--red);
}

.loss-line {
  position: relative;
}

.loss-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  height: 1px;
  background: linear-gradient(90deg, var(--green), var(--line2));
}

.loss-line::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 9px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--green);
  border-right: 1px solid var(--green);
  transform: rotate(45deg);
}

.loss-line-red::before {
  background: linear-gradient(90deg, var(--line2), var(--red));
}

.loss-line-red::after {
  border-color: var(--red);
}

.channel-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.channel-strip span {
  padding: 15px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  text-align: center;
}

.channel-strip span:last-child {
  border-right: 0;
}

.channel-strip span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

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

.step {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.step-num {
  color: var(--green2);
  font-family: var(--mono);
  font-size: 12px;
}

.step h3 {
  margin-top: 68px;
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.25;
}

.step p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
}

.human-note {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 20px;
  padding: 23px 28px;
  border: 1px solid rgba(16,185,129,.28);
  border-radius: 14px;
  background: var(--green-soft);
}

.human-note strong {
  flex: 0 0 auto;
  color: var(--green2);
  font-family: var(--display);
  font-size: 15px;
}

.human-note p {
  color: var(--muted);
}

.demo-replay {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid var(--line2);
  border-radius: 9px;
  background: rgba(8,11,17,.62);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  cursor: pointer;
}

.demo-replay:hover {
  color: var(--text);
  border-color: var(--green);
}

.demo-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px,.9fr) minmax(270px,1.1fr);
  gap: 10px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: #070a0f;
}

.chat,
.handoff {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel2);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
}

.chat-head img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.chat-head div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.chat-head strong {
  font-size: 11px;
}

.chat-head div span {
  color: var(--dim);
  font-size: 10px;
}

.online {
  color: var(--green2);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.chat-body {
  display: flex;
  min-height: 326px;
  padding: 13px;
  flex-direction: column;
  gap: 9px;
  background:
    radial-gradient(circle at 15% 10%, rgba(16,185,129,.08), transparent 38%),
    #0a0f17;
}

.bubble {
  width: fit-content;
  max-width: 88%;
  padding: 9px 11px;
  border-radius: 11px;
  font-size: 10px;
  line-height: 1.45;
}

.bubble span {
  display: block;
  margin-bottom: 3px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 8px;
}

.bubble.client {
  align-self: flex-end;
  border-bottom-right-radius: 3px;
  background: #1a2840;
}

.bubble.bot {
  align-self: flex-start;
  border: 1px solid rgba(16,185,129,.25);
  border-bottom-left-radius: 3px;
  background: rgba(16,185,129,.1);
}

.handoff {
  padding: 18px;
  border-color: rgba(16,185,129,.34);
  background:
    linear-gradient(145deg, rgba(16,185,129,.12), transparent 48%),
    var(--panel2);
}

.handoff-title {
  display: flex;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
}

.handoff-title span {
  color: var(--green2);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.handoff-title strong {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.3;
}

.handoff dl {
  display: flex;
  margin-top: 10px;
  flex-direction: column;
}

.handoff dl div {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.handoff dl div:last-child {
  border-bottom: 0;
}

.handoff dt {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.handoff dd {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 700;
}

.handoff .hot {
  display: inline-flex;
  padding: 4px 8px;
  border: 1px solid rgba(52,211,153,.3);
  border-radius: 999px;
  background: rgba(16,185,129,.1);
  color: var(--green2);
}

.demo-stage.is-prepared .demo-later {
  opacity: 0;
}

.demo-stage.is-replaying .demo-later {
  animation: demo-in .45s cubic-bezier(.16,1,.3,1) forwards;
}

.demo-stage.is-replaying .message-3 { animation-delay: .35s; }
.demo-stage.is-replaying .message-4 { animation-delay: 1.05s; }
.demo-stage.is-replaying .handoff { animation-delay: 1.75s; }

@keyframes demo-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.implementation {
  background:
    radial-gradient(circle at 12% 18%, rgba(16,185,129,.07), transparent 30%),
    var(--bg);
}

.implementation-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.implementation-step {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13,19,29,.78);
}

.implementation-step > span {
  color: var(--green2);
  font-family: var(--mono);
  font-size: 11px;
}

.implementation-step h3 {
  margin-top: 42px;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.3;
}

.implementation-step p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.case {
  background:
    linear-gradient(135deg, rgba(16,185,129,.045), transparent 46%),
    var(--panel);
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr);
  gap: clamp(42px,8vw,96px);
  align-items: center;
}

.case-copy > p {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}

.case-copy h2 {
  font-size: clamp(34px,3.35vw,48px);
}

.case-copy .case-disclaimer {
  padding-left: 16px;
  border-left: 2px solid var(--green);
  color: var(--dim);
  font-size: 13px;
}

.case-proof {
  padding: 28px;
  border: 1px solid var(--line2);
  border-radius: 22px;
  background: rgba(8,11,17,.82);
}

.case-owner {
  display: flex;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  gap: 5px;
}

.case-owner span,
.case-evidence span,
.trust-facts span,
.footer-contacts > span,
.footer-address > span {
  color: var(--green2);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-owner strong {
  font-size: 16px;
}

.case-evidence {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--green-soft);
}

.case-evidence strong {
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(18px,2vw,24px);
  line-height: 1.35;
}

.case-proof > p {
  margin-top: 16px;
  color: var(--dim);
  font-size: 11px;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(300px,.82fr) minmax(0,1.18fr);
  gap: 18px;
}

.trust-founder {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(16,185,129,.34);
  border-radius: 20px;
  background: var(--green-soft);
}

.trust-founder img {
  width: 102px;
  height: 128px;
  flex: 0 0 auto;
  border-radius: 14px;
  object-fit: cover;
  object-position: top;
}

.trust-founder span {
  color: var(--green2);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.trust-founder strong {
  display: block;
  margin-top: 7px;
  font-family: var(--display);
  font-size: 18px;
}

.trust-founder p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.trust-facts {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.trust-facts div {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: rgba(13,19,29,.72);
}

.trust-facts div:last-child {
  border-right: 0;
}

.trust-facts strong {
  display: block;
  margin-top: 12px;
  font-size: 16px;
}

.trust-facts p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.price-layout,
.audit-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(390px,.78fr);
  gap: clamp(42px,8vw,100px);
  align-items: center;
}

.price-card {
  position: relative;
  padding: 36px;
  border: 1px solid rgba(16,185,129,.48);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(16,185,129,.12), var(--panel) 45%);
  box-shadow: 0 25px 75px rgba(0,0,0,.34), 0 0 55px rgba(16,185,129,.08);
}

.price-card-top {
  display: flex;
  flex-direction: column;
}

.price-card-top > span {
  color: var(--green2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.price-card-top strong {
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(41px,5vw,57px);
  line-height: 1;
  letter-spacing: -.04em;
}

.price-card-top small {
  margin-top: 8px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.price-month {
  margin-top: 24px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.price-month strong {
  color: var(--green2);
}

.price-card ul {
  display: flex;
  margin: 24px 0;
  list-style: none;
  flex-direction: column;
  gap: 12px;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 11px;
  height: 1px;
  background: var(--green);
}

.price-card .btn {
  width: 100%;
}

.price-filter {
  margin-top: 15px;
  color: var(--dim);
  font-size: 11px;
  text-align: center;
}

.faq-section {
  background: var(--panel);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px,.72fr) minmax(0,1.28fr);
  gap: clamp(42px,8vw,96px);
  align-items: start;
}

.faq-layout .section-head {
  position: sticky;
  top: 104px;
  margin-bottom: 0;
}

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

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

.faq-list summary {
  position: relative;
  padding: 23px 44px 23px 0;
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 2px;
  color: var(--green2);
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 400;
}

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

.faq-list details p {
  max-width: 700px;
  padding: 0 44px 23px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.audit {
  background:
    radial-gradient(circle at 78% 40%, rgba(16,185,129,.09), transparent 33%),
    var(--panel);
}

.audit-result {
  display: flex;
  max-width: 520px;
  margin-top: 32px;
  padding: 19px;
  border-left: 2px solid var(--green);
  background: rgba(16,185,129,.06);
  flex-direction: column;
}

.audit-result span {
  color: var(--green2);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.audit-result strong {
  margin-top: 5px;
  font-size: 15px;
}

.lead-form {
  display: grid;
  padding: 30px;
  border: 1px solid var(--line2);
  border-radius: 22px;
  background: rgba(8,11,17,.78);
  gap: 15px;
}

.lead-form label {
  display: flex;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
  flex-direction: column;
  gap: 6px;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: #070a0f;
  color: var(--text);
  font-family: var(--body);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,.1);
}

.lead-form [aria-invalid="true"] {
  border-color: var(--red);
}

.lead-form .btn {
  width: 100%;
  margin-top: 2px;
}

.lead-form .btn[disabled] {
  cursor: wait;
  opacity: .65;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-legal {
  color: var(--dim);
  font-size: 10px;
  text-align: center;
}

.form-legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  min-height: 22px;
  color: var(--red);
  font-size: 13px;
  text-align: center;
}

.form-status.success {
  padding: 12px;
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green2);
}

.secondary-exit {
  padding: 28px 0 46px;
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.secondary-exit-card {
  display: grid;
  grid-template-columns: minmax(260px,.9fr) minmax(300px,1.2fr) auto;
  align-items: center;
  gap: 28px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8,11,17,.68);
}

.secondary-exit-copy .section-label {
  margin-bottom: 8px;
  font-size: 9px;
}

.secondary-exit-copy h2 {
  font-size: clamp(23px,2.5vw,31px);
}

.secondary-exit-copy p {
  max-width: 440px;
  margin-top: 8px;
  color: var(--dim);
  font-size: 12px;
}

.secondary-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.secondary-products > span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 11px;
}

.secondary-products small {
  color: var(--green2);
  font-family: var(--mono);
  font-size: 8px;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 210px;
  padding: 12px 14px;
  border: 1px solid var(--line2);
  border-radius: 9px;
  color: var(--muted);
  font-size: 12px;
  transition: color .2s ease, border-color .2s ease;
}

.secondary-link:hover {
  border-color: var(--green);
  color: var(--text);
}

.secondary-link span {
  color: var(--green2);
}

.site-footer {
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
  background: #06080d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.25fr .85fr;
  gap: 32px;
}

.footer-company {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-company > strong {
  margin-top: 17px;
  font-size: 13px;
}

.footer-company p,
.footer-address p {
  margin-top: 7px;
  color: var(--dim);
  font-size: 12px;
}

.footer-contacts,
.footer-address {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-contacts a {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 10px;
}

@media (max-width: 960px) {
  .loss-timeline {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .loss-line {
    height: 28px;
  }

  .loss-line::before {
    top: 0;
    bottom: 0;
    left: 32px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--green), var(--line2));
  }

  .loss-line::after {
    top: auto;
    bottom: 0;
    left: 29px;
    right: auto;
    transform: rotate(135deg);
  }

  .loss-line-red::before {
    background: linear-gradient(var(--line2), var(--red));
  }

  .case-layout,
  .faq-layout,
  .price-layout,
  .audit-layout {
    grid-template-columns: 1fr;
  }

  .case-copy,
  .price-copy,
  .audit-copy {
    max-width: 760px;
  }

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

  .trust-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout .section-head {
    position: static;
    margin-bottom: 12px;
  }

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

  .secondary-exit-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .secondary-link {
    width: max-content;
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  :root {
    --section-space: 76px;
  }

  h2 {
    font-family: system-ui,-apple-system,'Segoe UI',sans-serif;
    font-size: clamp(29px,8vw,40px);
  }

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

  .section-head > p,
  .price-copy > p,
  .audit-copy > p {
    font-size: 16px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 0;
  }

  .step h3 {
    margin-top: 36px;
  }

  .human-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .demo-stage {
    grid-template-columns: 1fr;
    padding: 8px;
    border-radius: 18px;
  }

  .chat-body {
    min-height: 0;
  }

  .handoff dl {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0 16px;
  }

  .handoff-title strong {
    font-size: 18px;
  }

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

  .channel-strip span:nth-child(2) {
    border-right: 0;
  }

  .channel-strip span:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .price-layout,
  .case-layout,
  .faq-layout,
  .audit-layout {
    gap: 36px;
  }

  .trust-facts {
    grid-template-columns: 1fr;
  }

  .trust-facts div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .secondary-exit {
    padding: 20px 0 34px;
  }
}

@media (max-width: 480px) {
  .loss-step,
  .step,
  .implementation-step,
  .case-proof,
  .price-card,
  .lead-form {
    padding: 22px;
  }

  .implementation-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .implementation-step h3 {
    margin-top: 28px;
  }

  .case-evidence {
    padding: 18px;
  }

  .trust-founder {
    align-items: flex-start;
    padding: 20px;
  }

  .trust-founder img {
    width: 78px;
    height: 98px;
  }

  .price-card-top strong {
    font-family: system-ui,-apple-system,'Segoe UI',sans-serif;
    font-size: 45px;
  }

  .handoff dl {
    grid-template-columns: 1fr 1fr;
  }

  .hero-experience .chat-head {
    padding: 9px 10px;
  }

  .hero-experience .chat-head img {
    width: 30px;
    height: 30px;
  }

  .hero-experience .chat-body {
    padding: 10px;
    gap: 8px;
  }

  .hero-experience .bubble {
    max-width: 92%;
    padding: 8px 9px;
    font-size: 9px;
  }

  .hero-experience .handoff {
    padding: 16px;
  }

  .secondary-exit-card {
    padding: 20px;
  }

  .secondary-products > span {
    width: 100%;
    justify-content: space-between;
  }

  .secondary-link {
    width: 100%;
  }

  .footer-links {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
