:root {
  --carbon: #111111;
  --carbon-2: #191919;
  --tangerine: #FF5A1F;
  --tangerine-dark: #E94D17;
  --warm: #F5F1EA;
  --soft: #D9D6D0;
  --white: #FFFFFF;
  --muted: #76736D;
  --line: rgba(17, 17, 17, 0.12);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.14);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--warm);
  color: var(--carbon);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { line-height: 1.65; margin: 0; }
ul { margin: 0; padding: 0; }
li { list-style: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--carbon);
  color: var(--white);
  padding: 12px 16px;
  z-index: 999;
  border-radius: 10px;
}
.skip-link:focus { left: 8px; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.section { padding: 104px 0; }
.section-dark {
  background: var(--carbon);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,90,31,.22), transparent 64%);
  right: -220px;
  top: -260px;
  pointer-events: none;
}
.section-dark > .container { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 234, 0.86);
  border-bottom: 1px solid rgba(17,17,17,.08);
  backdrop-filter: blur(18px);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand img { width: 240px; height: auto; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #3d3a36;
  font-size: 14px;
  font-weight: 700;
}
.primary-nav a { transition: color .2s ease; }
.primary-nav a:hover, .primary-nav a:focus { color: var(--tangerine); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--carbon);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover, .btn:focus { transform: translateY(-2px); }
.btn-primary {
  background: var(--tangerine);
  color: var(--carbon);
  box-shadow: 0 14px 34px rgba(255,90,31,.28);
}
.btn-primary:hover, .btn-primary:focus { background: var(--tangerine-dark); box-shadow: 0 18px 44px rgba(255,90,31,.38); }
.btn-secondary {
  background: var(--white);
  color: var(--carbon);
  border-color: rgba(17,17,17,.12);
}
.btn-secondary:hover, .btn-secondary:focus { border-color: rgba(255,90,31,.35); }
.btn-large { min-height: 54px; padding: 16px 24px; font-size: 15px; }
.btn-full { width: 100%; }

.hero {
  padding: 88px 0 92px;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr);
  gap: 62px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tangerine);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow-dark { color: var(--tangerine); }
h1, h2, h3 { margin: 0; letter-spacing: -.055em; line-height: .98; }
h1 { font-size: clamp(48px, 6vw, 82px); max-width: 820px; }
h2 { font-size: clamp(36px, 4vw, 58px); max-width: 900px; }
h3 { font-size: 32px; }
.hero-subtitle {
  margin-top: 26px;
  color: #4d4942;
  font-size: clamp(18px, 2vw, 21px);
  max-width: 680px;
}
.hero-note {
  margin-top: 18px;
  font-weight: 900;
  color: var(--carbon);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.microcopy {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual { position: relative; }
.mockup-shell {
  background: linear-gradient(145deg, #151515, #0f0f0f);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 34px;
  box-shadow: var(--shadow), 0 24px 100px rgba(0,0,0,.22);
  overflow: hidden;
  transform: rotate(-1deg);
}
.mockup-topbar {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.64);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.26);
  margin-right: 7px;
}
.dot:first-child { background: var(--tangerine); }
.mockup-content {
  padding: 22px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
}
.chat-card, .system-card, .dashboard-card {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.chat-card { padding: 16px; grid-row: span 2; }
.chat-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--white);
}
.chat-header span { display: block; color: rgba(255,255,255,.56); font-size: 12px; margin-top: 2px; }
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--tangerine);
  color: var(--carbon);
  font-weight: 900;
}
.bubble {
  padding: 13px 14px;
  border-radius: 16px;
  margin: 10px 0;
  font-size: 13px;
  line-height: 1.45;
}
.bubble-client {
  background: var(--white);
  color: var(--carbon);
  border-bottom-left-radius: 4px;
  margin-right: 28px;
}
.bubble-agent {
  background: rgba(255,90,31,.16);
  color: var(--white);
  border: 1px solid rgba(255,90,31,.22);
  border-bottom-right-radius: 4px;
  margin-left: 28px;
}
.system-card { padding: 16px; }
.system-title, .dashboard-head p {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.status-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.68);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
}
.status-row:last-child { border-bottom: 0; }
.status-row strong { color: var(--white); text-align: right; }
.status-row strong.orange { color: var(--tangerine); }
.dashboard-card { grid-column: 2; padding: 16px; }
.dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.dashboard-head span {
  background: rgba(255,90,31,.15);
  color: var(--tangerine);
  border: 1px solid rgba(255,90,31,.25);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.metric-grid div {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 12px;
}
.metric-grid strong {
  display: block;
  color: var(--white);
  font-size: 24px;
  letter-spacing: -.03em;
}
.metric-grid span { color: rgba(255,255,255,.58); font-size: 11px; line-height: 1.35; display: block; }

.quick-benefits {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.quick-grid article {
  background: var(--white);
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(17,17,17,.08);
}
.icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 13px;
  background: rgba(255,90,31,.12);
  color: var(--tangerine);
  font-weight: 900;
  margin-bottom: 14px;
}
.quick-grid strong { display: block; font-size: 17px; margin-bottom: 8px; }
.quick-grid p { color: var(--muted); font-size: 14px; }

.section-heading { text-align: center; max-width: 920px; margin: 0 auto 46px; }
.section-heading .eyebrow { justify-content: center; }
.section-heading p:not(.eyebrow) { color: var(--muted); margin-top: 18px; font-size: 18px; }
.section-dark .section-heading p:not(.eyebrow), .section-dark p { color: rgba(255,255,255,.68); }
.narrow { max-width: 820px; }
.card-grid { display: grid; gap: 16px; }
.five-cards { grid-template-columns: repeat(5, 1fr); }
.pain-card {
  min-height: 138px;
  display: flex;
  align-items: end;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 22px;
  font-weight: 900;
  box-shadow: 0 16px 44px rgba(17,17,17,.06);
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: "";
  position: absolute;
  width: 46px;
  height: 4px;
  background: var(--tangerine);
  top: 18px;
  left: 20px;
  border-radius: 2px;
}
.quote-box {
  margin: 34px auto 0;
  max-width: 900px;
  background: var(--carbon);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 18px 48px rgba(17,17,17,.14);
}
.quote-box.compact { font-size: 17px; text-align: left; margin-inline: 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col h2 { margin-bottom: 22px; }
.lead {
  font-size: 19px;
  font-weight: 700;
  color: rgba(255,255,255,.84) !important;
  margin-bottom: 18px;
}
.dark-callout {
  margin-top: 28px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,90,31,.13);
  border: 1px solid rgba(255,90,31,.24);
  color: var(--white);
  font-weight: 900;
  line-height: 1.45;
}
.dark-callout.center { max-width: 900px; margin: 34px auto 0; text-align: center; }
.feature-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.feature-list {
  display: grid;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-weight: 700;
}
.feature-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tangerine);
  flex: 0 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.steps-grid article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(17,17,17,.08);
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(17,17,17,.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.steps-grid span {
  color: var(--tangerine);
  font-weight: 900;
  font-size: 13px;
}
.steps-grid strong { font-size: 21px; line-height: 1.2; letter-spacing: -.03em; }
.center-action { display: flex; justify-content: center; margin-top: 34px; }

.benefits { background: var(--white); }
.reversed { grid-template-columns: .9fr 1.1fr; }
.benefit-visual {
  background: var(--warm);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(17,17,17,.08);
}
.score-card {
  background: var(--white);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(17,17,17,.08);
  margin-bottom: 18px;
  box-shadow: 0 16px 40px rgba(17,17,17,.08);
}
.score-card.offset { margin-left: 44px; }
.score-card span { color: var(--muted); font-weight: 800; font-size: 13px; }
.score-card strong { display: block; font-size: 34px; line-height: 1; margin: 10px 0 14px; letter-spacing: -.05em; }
.progress { height: 9px; background: rgba(17,17,17,.1); border-radius: 999px; overflow: hidden; }
.progress i { display: block; height: 100%; background: var(--tangerine); border-radius: 999px; }
.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.benefit-list p {
  background: var(--warm);
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 16px;
  padding: 15px 16px;
  font-weight: 850;
  line-height: 1.35;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.industry-grid article {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: 24px;
  min-height: 184px;
}
.industry-grid strong { color: var(--white); font-size: 20px; display: block; margin-bottom: 12px; }
.industry-grid p { font-size: 15px; }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}
.timeline article {
  background: var(--white);
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 22px;
  padding: 22px;
  min-height: 150px;
  box-shadow: 0 16px 44px rgba(17,17,17,.06);
}
.timeline span {
  display: inline-flex;
  color: var(--tangerine);
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 42px;
}
.timeline strong { display: block; font-size: 18px; line-height: 1.25; letter-spacing: -.02em; }

.plans { background: var(--white); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.plan-card {
  border-radius: var(--radius);
  border: 1px solid rgba(17,17,17,.1);
  background: var(--warm);
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 60px rgba(17,17,17,.08);
}
.plan-card.featured {
  background: var(--carbon);
  color: var(--white);
  border-color: rgba(255,90,31,.35);
  transform: translateY(-10px);
}
.plan-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--tangerine);
  color: var(--carbon);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
}
.plan-head span {
  color: var(--tangerine);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 900;
}
.plan-head h3 { margin: 10px 0 14px; }
.plan-head p { color: var(--muted); }
.plan-card.featured .plan-head p, .plan-card.featured li { color: rgba(255,255,255,.74); }
.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 28px;
  flex: 1;
}
.plan-card li {
  display: flex;
  gap: 10px;
  align-items: start;
  color: #4d4942;
  font-weight: 700;
  line-height: 1.35;
}
.plan-card li::before {
  content: "✓";
  color: var(--tangerine);
  font-weight: 900;
  flex: 0 0 auto;
}
.plans-note {
  margin: 24px auto 0;
  max-width: 820px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.diff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.diff-list span {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 14px;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.compare-card {
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
}
.compare-card.muted { background: rgba(255,255,255,.04); }
.compare-card.highlight { background: rgba(255,90,31,.13); border-color: rgba(255,90,31,.28); }
.compare-card h3 { margin-bottom: 22px; color: var(--white); }
.compare-card ul { display: grid; gap: 14px; }
.compare-card li {
  color: rgba(255,255,255,.78);
  display: flex;
  gap: 10px;
  line-height: 1.45;
}
.compare-card li::before { content: "•"; color: var(--tangerine); font-weight: 900; }

.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(17,17,17,.05);
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--carbon);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 22px 24px;
  font-weight: 900;
  cursor: pointer;
}
.faq-question::after {
  content: "+";
  color: var(--tangerine);
  font-size: 22px;
  line-height: 1;
  transition: transform .2s ease;
}
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-answer p { padding: 0 24px 22px; color: var(--muted); }

.final-cta { padding: 92px 0; }
.final-card {
  text-align: center;
  max-width: 960px;
}
.final-card img { width: 460px; margin: 0 auto 28px; }
.final-card h2 { margin-inline: auto; }
.final-card p { margin: 20px auto 28px; max-width: 680px; font-size: 18px; }
.final-card span { display: block; margin-top: 16px; color: rgba(255,255,255,.62); font-size: 14px; }

.site-footer {
  background: var(--carbon);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 42px 0 92px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 32px;
  align-items: start;
}
.site-footer img { width: 270px; margin-bottom: 18px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.64); }
.site-footer nav { display: grid; gap: 10px; font-weight: 800; }
.site-footer a:hover { color: var(--tangerine); }
.legal { font-size: 13px; }

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 120;
  min-height: 54px;
  border-radius: 999px;
  background: var(--tangerine);
  color: var(--carbon);
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(17,17,17,.28);
}

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-subtitle, .hero-note { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 720px; margin: 0 auto; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .five-cards { grid-template-columns: repeat(3, 1fr); }
  .two-col, .reversed { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 76px 0; }
  .header-inner { height: 72px; }
  .brand img { width: 190px; }
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid rgba(17,17,17,.1);
    border-radius: 22px;
    padding: 10px;
    box-shadow: 0 22px 80px rgba(17,17,17,.22);
  }
  body.nav-open .primary-nav { display: flex; }
  .primary-nav a {
    padding: 16px;
    border-radius: 14px;
  }
  .primary-nav a:hover { background: var(--warm); }
  .hero { padding: 58px 0 72px; }
  h1 { font-size: clamp(42px, 12vw, 66px); }
  h2 { font-size: clamp(34px, 9vw, 50px); }
  .hero-subtitle { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .mockup-shell { transform: none; border-radius: 28px; }
  .mockup-content { grid-template-columns: 1fr; }
  .dashboard-card { grid-column: auto; }
  .quick-benefits { margin-top: 0; padding: 0 0 24px; }
  .quick-grid, .steps-grid, .industry-grid, .plans-grid, .compare-grid { grid-template-columns: 1fr; }
  .five-cards { grid-template-columns: repeat(2, 1fr); }
  .plan-card.featured { transform: none; }
  .plan-badge { position: static; width: max-content; margin-bottom: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-card img { width: 300px; }
  .mobile-sticky-cta { display: flex; }
  .site-footer { padding-bottom: 100px; }
}

@media (max-width: 560px) {
  .brand img { width: 168px; }
  .eyebrow { font-size: 11px; letter-spacing: .06em; }
  .eyebrow::before { width: 24px; }
  .hero-copy { text-align: left; }
  .hero-copy .eyebrow, .section-heading .eyebrow { justify-content: flex-start; }
  .section-heading { text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .five-cards, .benefit-list, .timeline { grid-template-columns: 1fr; }
  .quote-box { font-size: 17px; padding: 20px; text-align: left; }
  .score-card.offset { margin-left: 0; }
  .metric-grid { grid-template-columns: 1fr; }
  .chat-card, .system-card, .dashboard-card { border-radius: 18px; }
  .mockup-content { padding: 14px; }
  .bubble-agent { margin-left: 8px; }
  .bubble-client { margin-right: 8px; }
  .quick-grid article, .pain-card, .steps-grid article, .industry-grid article, .plan-card, .compare-card { padding: 20px; }
  .footer-grid { gap: 24px; }
}

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