:root {
  --bg: #f3f8f9;
  --surface: #ffffff;
  --surface-strong: #edf7f8;
  --surface-alt: #f7fbfc;
  --text: #102326;
  --muted: #5a7073;
  --line: rgba(16, 35, 38, 0.1);
  --primary: #0d7f8c;
  --primary-dark: #0a6570;
  --primary-strong: #0a6f7a;
  --accent: #ffb24b;
  --shadow: 0 18px 50px rgba(11, 53, 59, 0.1);
  --shadow-soft: 0 10px 24px rgba(11, 53, 59, 0.06);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1120px;
  --nav-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 127, 140, 0.1), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 178, 75, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfdfd 0%, var(--bg) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border-radius: 999px;
}

.skip-link:focus {
  left: 1rem;
}

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

.narrow {
  max-width: 760px;
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
}

.section-muted::before,
.section-accent::before,
.section-demo::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(1120px, calc(100% - 2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(16, 35, 38, 0.08), transparent);
}

.section-accent {
  background:
    linear-gradient(135deg, rgba(13, 127, 140, 0.06), rgba(255, 178, 75, 0.08)),
    #fcfefe;
}

.section-demo {
  background:
    radial-gradient(circle at top left, rgba(13, 127, 140, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(239, 247, 248, 0.85), rgba(255, 255, 255, 0.92));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(251, 253, 253, 0.82);
  border-bottom: 1px solid rgba(16, 35, 38, 0.08);
}

.nav {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #12a0b0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.desktop-nav,
.nav-actions,
.hero-actions,
.metric-strip,
.comparison-strip,
.footer-layout,
.footer-nav,
.booking-strip,
.panel-header,
.call-row {
  display: flex;
  align-items: center;
}

.desktop-nav,
.footer-nav {
  gap: 1.5rem;
}

.desktop-nav a,
.footer-nav a {
  color: var(--muted);
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

.nav-actions,
.hero-actions {
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: -0.015em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
}

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

.button:focus-visible {
  outline: 3px solid rgba(13, 127, 140, 0.24);
  outline-offset: 2px;
}

.button-small {
  min-height: 2.9rem;
  padding-inline: 1.1rem;
}

.button-block {
  width: 100%;
}

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #17a2b2 0%, var(--primary-strong) 100%);
  box-shadow: 0 16px 30px rgba(13, 127, 140, 0.24);
}

.button-primary:hover {
  box-shadow: 0 20px 38px rgba(13, 127, 140, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(16, 35, 38, 0.12);
  box-shadow: var(--shadow-soft);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
}

.hero {
  padding-top: 4.75rem;
  overflow: clip;
}

.hero-grid,
.problem-grid,
.problem-layout,
.steps-grid,
.demo-grid,
.pricing-grid,
.testimonials-grid,
.benefits-layout,
.benefits-grid,
.scenario-grid,
.roi-layout,
.calculator-grid,
.roi-results {
  display: grid;
  gap: 1.75rem;
}

.hero-grid,
.benefits-layout,
.demo-grid,
.roi-layout {
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.02fr 0.9fr;
  gap: 2.5rem;
}

.eyebrow,
.section-tag,
.plan-badge,
.transcript-label,
.visual-kicker {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(13, 127, 140, 0.09);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 5.3rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

h3 {
  font-size: clamp(1.22rem, 2vw, 1.45rem);
}

.hero-lead,
.section-intro,
.cta-microcopy,
.footer-copy,
.plan-copy,
.audio-note,
.faq-item p,
.call-card p,
.benefit-card p,
.info-card p,
.quote-card span,
.step-card p,
.scenario-card p,
.scene-plumber p,
.booking-card p,
.roi-result-card span,
.problem-list-row em,
.field span,
.demo-summary span {
  color: var(--muted);
}

.hero-lead {
  max-width: 40ch;
  margin-top: 1.15rem;
  font-size: 1.06rem;
}

.hero-actions {
  margin-top: 1.9rem;
  flex-wrap: wrap;
}

.cta-microcopy {
  margin-top: 0.95rem;
  font-size: 0.95rem;
}

.impact-line,
.pricing-roi {
  margin-top: 1rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(16, 35, 38, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.info-card,
.step-card,
.benefit-card,
.quote-card,
.pricing-card,
.faq-item,
.demo-card,
.final-cta-card,
.scenario-card,
.roi-card,
.problem-visual-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.panel-shell {
  padding: 1.4rem;
  border: 1px solid rgba(16, 35, 38, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 249, 0.94));
  box-shadow: 0 28px 70px rgba(7, 43, 49, 0.12);
}

.hero-copy .button-primary {
  min-width: 11.5rem;
}

.status-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.panel-header {
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.95rem;
}

.status-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: #1ac47f;
  box-shadow: 0 0 0 0.3rem rgba(26, 196, 127, 0.15);
}

.hero-story-card,
.booking-card,
.transcript-card,
.roi-result-card {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(16, 35, 38, 0.08);
}

.hero-story-card,
.transcript-card,
.roi-result-card {
  padding: 1.3rem;
}

.hero-story-card {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(244, 250, 251, 0.98));
}

.hero-story-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(243, 248, 249, 0.9);
}

.hero-story-row-accent {
  background: linear-gradient(135deg, rgba(13, 127, 140, 0.14), rgba(255, 178, 75, 0.14));
}

.story-label,
.call-label,
.call-time,
.booking-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-story-row strong {
  max-width: 15ch;
  text-align: right;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-story-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.95rem;
}

.booking-card {
  padding: 0.95rem 1rem;
}

.booking-card strong {
  display: block;
  margin-top: 0.25rem;
}

.hero-panel {
  max-width: 450px;
  width: 100%;
  justify-self: end;
}

.info-card,
.step-card,
.benefit-card,
.quote-card,
.pricing-card,
.faq-item,
.demo-card,
.final-cta-card,
.scenario-card,
.roi-card,
.problem-visual-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.booking-card-strong,
.roi-result-card-strong {
  background: linear-gradient(180deg, rgba(13, 127, 140, 0.09), rgba(255, 255, 255, 0.98));
}

.flow-list,
.plan-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.flow-list li,
.plan-list li {
  display: flex;
  gap: 0.85rem;
}

.flow-list li {
  padding: 1rem 0;
  border-top: 1px solid rgba(16, 35, 38, 0.08);
}

.flow-list span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--primary-dark);
  background: rgba(13, 127, 140, 0.12);
  font-weight: 700;
}

.problem-layout {
  margin-top: 2.4rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.problem-grid,
.steps-grid,
.testimonials-grid,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agitation-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2.25rem;
}

.agitation-card {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 35, 38, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 250, 0.94));
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.agitation-card:first-child {
  background: linear-gradient(180deg, rgba(13, 127, 140, 0.09), rgba(255, 255, 255, 0.97));
}

.agitation-card:hover,
.info-card:hover,
.step-card:hover,
.benefit-card:hover,
.scenario-card:hover,
.quote-card:hover,
.pricing-card:hover,
.roi-result-card:hover,
.problem-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(7, 43, 49, 0.12);
}

.agitation-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.info-card,
.step-card,
.quote-card,
.pricing-card,
.benefit-card,
.scenario-card {
  padding: 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(13, 127, 140, 0.12), rgba(13, 127, 140, 0.05));
  color: var(--primary-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.icon-badge svg {
  width: 1.3rem;
  height: 1.3rem;
}

.step-number {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--primary);
  font-weight: 700;
}

.problem-visual-card {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(242, 249, 250, 0.94));
}

.problem-list {
  display: grid;
  gap: 0.85rem;
}

.problem-list-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(16, 35, 38, 0.08);
}

.problem-list-row span {
  font-size: 0.9rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.problem-list-row strong {
  font-size: 1rem;
}

.benefits-layout {
  grid-template-columns: 0.9fr 1.1fr;
}

.benefits-grid,
.scenario-grid,
.calculator-grid,
.roi-results {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.demo-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.demo-card {
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 249, 0.98));
  box-shadow: 0 24px 56px rgba(7, 43, 49, 0.12);
}

.demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.demo-tab {
  border: 1px solid rgba(16, 35, 38, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.demo-tab:hover,
.demo-tab.is-active {
  color: var(--text);
  border-color: rgba(13, 127, 140, 0.22);
  background: rgba(13, 127, 140, 0.08);
}

.demo-tab:hover {
  transform: translateY(-2px);
}

.demo-audio {
  padding: 1.65rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(13, 127, 140, 0.12), rgba(255, 178, 75, 0.12));
}

.audio-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.3rem;
  border: 1px solid rgba(16, 35, 38, 0.08);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #17363a, #102326);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audio-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(7, 43, 49, 0.14);
}

.audio-icon {
  width: 0;
  height: 0;
  border-top: 0.45rem solid transparent;
  border-bottom: 0.45rem solid transparent;
  border-left: 0.75rem solid #fff;
}

.audio-note {
  margin-top: 0.85rem;
  font-size: 0.95rem;
}

.transcript-card {
  margin-top: 1rem;
}

.transcript-card-static {
  margin-top: 0;
}

.transcript-lines {
  display: grid;
  gap: 0.85rem;
}

.transcript-lines p {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(242, 248, 249, 1), rgba(255, 255, 255, 1));
}

.demo-summary {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 35, 38, 0.08);
}

.demo-summary strong {
  display: block;
  margin-top: 0.2rem;
}

.scenario-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.roi-layout {
  grid-template-columns: 0.75fr 1.25fr;
}

.roi-card {
  padding: 1.65rem;
}

.field {
  display: grid;
  gap: 0.8rem;
}

.field strong {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

.roi-results {
  margin-top: 1.3rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.roi-result-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.comparison-strip,
.metric-strip {
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 35, 38, 0.08);
}

.comparison-strip span,
.metric-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.comparison-strip strong,
.metric-strip strong {
  display: block;
  margin-top: 0.15rem;
}

.quote-card blockquote {
  font-size: 1.08rem;
  line-height: 1.7;
}

.quote-card figcaption {
  margin-top: 1rem;
  font-weight: 700;
}

.quote-card span {
  display: block;
  font-weight: 400;
}

.pricing-card-featured {
  position: relative;
  background: linear-gradient(180deg, rgba(13, 127, 140, 0.08), rgba(255, 255, 255, 0.99));
  border-color: rgba(13, 127, 140, 0.2);
  box-shadow: 0 24px 60px rgba(13, 127, 140, 0.14);
  transform: translateY(-0.25rem);
}

.plan-name {
  color: var(--primary-dark);
  font-weight: 700;
}

.pricing-card h3 {
  margin-top: 0.75rem;
  font-size: 2.9rem;
}

.pricing-card h3 span {
  font-size: 1rem;
  color: var(--muted);
}

.plan-copy {
  margin-top: 0.75rem;
}

.plan-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.plan-list li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  flex: 0 0 auto;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.faq-list {
  display: grid;
  gap: 1.1rem;
  max-width: 860px;
}

.faq-item {
  padding: 1.25rem 1.45rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

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

.faq-item p {
  margin-top: 0.75rem;
  max-width: 70ch;
}

.final-cta {
  padding-bottom: 7rem;
}

.final-cta-card {
  padding: 2.6rem;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(13, 127, 140, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 248, 0.98));
  box-shadow: 0 28px 70px rgba(7, 43, 49, 0.12);
}

.final-cta-card p:not(.section-tag) {
  max-width: 58ch;
  margin: 1rem auto 0;
}

.final-cta-card .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 2.5rem 0 7rem;
  border-top: 1px solid rgba(16, 35, 38, 0.08);
}

.footer-layout {
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-footer {
  margin-bottom: 1rem;
}

.footer-copy {
  max-width: 46ch;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(251, 253, 253, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(16, 35, 38, 0.08);
  box-shadow: 0 -8px 24px rgba(7, 43, 49, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (min-width: 861px) {
  .mobile-cta {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .benefits-layout,
  .demo-grid,
  .agitation-strip,
  .problem-layout,
  .problem-grid,
  .steps-grid,
  .testimonials-grid,
  .pricing-grid,
  .roi-layout,
  .roi-results {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .scenario-grid,
  .calculator-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card-featured {
    transform: none;
  }

  .desktop-nav {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --nav-height: 76px;
  }

  .section {
    padding: 4.75rem 0;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    padding-top: 2.75rem;
  }

  .benefits-grid,
  .hero-story-notes,
  .comparison-strip,
  .metric-strip,
  .footer-layout,
  .footer-nav {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-panel {
    max-width: 100%;
    justify-self: stretch;
  }

  .comparison-strip,
  .metric-strip,
  .footer-layout,
  .footer-nav {
    display: flex;
  }
}

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

  h1 {
    max-width: 12ch;
  }

  h2 {
    max-width: 14ch;
  }

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

  .button,
  .button-small {
    width: 100%;
  }

  .panel-shell,
  .demo-card,
  .final-cta-card,
  .pricing-card,
  .quote-card,
  .benefit-card,
  .step-card,
  .info-card,
  .agitation-card,
  .roi-card,
  .problem-visual-card,
  .scenario-card {
    padding: 1.2rem;
  }

  .trust-badges,
  .demo-tabs,
  .benefits-grid,
  .scenario-grid,
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .trust-badge {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-story-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-story-row strong {
    max-width: none;
    text-align: left;
  }

  .problem-list-row {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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