:root {
  --ink: #17231f;
  --ink-soft: #30403a;
  --forest: #173f36;
  --forest-deep: #102f29;
  --teal: #2e8f7d;
  --mint: #a9d4c5;
  --mint-light: #dcebe4;
  --ivory: #f4f0e7;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: rgba(23, 35, 31, 0.13);
  --muted: #67736f;
  --gold: #d9b77c;
  --shadow: 0 24px 70px rgba(17, 47, 41, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--teal);
}

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

button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

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

.section {
  padding: 120px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: 80px;
  background: rgba(244, 240, 231, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: height 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  height: 70px;
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(23, 35, 31, 0.05);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.7px;
}

.brand-mark {
  width: 31px;
  height: 31px;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  position: relative;
  height: 42px;
  padding-left: 11px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(23, 35, 31, 0.13);
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.language-switcher:hover,
.language-switcher:focus-within {
  background: var(--white);
  border-color: rgba(46, 143, 125, 0.45);
}

.language-switcher > svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.language-switcher::after {
  position: absolute;
  right: 10px;
  color: var(--muted);
  content: "⌄";
  font-size: 11px;
  pointer-events: none;
  transform: translateY(-1px);
}

.language-switcher select {
  width: 52px;
  height: 100%;
  padding: 0 20px 0 7px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 999px;
  outline: 0;
  cursor: pointer;
  appearance: none;
  font-size: 12px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.text-link:focus-visible,
summary:focus-visible,
.role-option input:focus-visible + .role-content {
  outline: 3px solid rgba(46, 143, 125, 0.35);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 42px;
  padding: 0 19px;
  font-size: 14px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--forest);
  box-shadow: 0 10px 25px rgba(23, 35, 31, 0.18);
}

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 10px 25px rgba(46, 143, 125, 0.21);
}

.button-primary:hover {
  background: #267e6e;
  box-shadow: 0 14px 28px rgba(46, 143, 125, 0.28);
}

.button-light {
  color: var(--forest-deep);
  background: var(--white);
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.75);
}

.eyebrow {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.7px;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--mint);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(54px, 6vw, 78px);
}

h2 {
  font-size: clamp(42px, 5vw, 62px);
}

h3 {
  font-size: 24px;
}

h1 em,
h2 em,
blockquote em {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero {
  position: relative;
  padding: 160px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(46, 143, 125, 0.025) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(rgba(46, 143, 125, 0.025) 1px, transparent 1px) 0 0 / 54px 54px,
    var(--ivory);
}

.hero-glow {
  position: absolute;
  top: 70px;
  right: -160px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 212, 197, 0.36), rgba(169, 212, 197, 0) 67%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 70px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 62px;
}

.hero-lede {
  max-width: 565px;
  margin: 28px 0 34px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}

.play-icon {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 35, 31, 0.22);
  border-radius: 50%;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.play-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--ink);
}

.text-link:hover .play-icon {
  background: var(--white);
  border-color: var(--white);
}

.hero-proof {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 34px;
  height: 34px;
  margin-left: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 2px solid var(--ivory);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-one { background: #9b6b51; }
.avatar-two { background: #49697b; }
.avatar-three { background: #617154; }

.hero-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-proof strong {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 565px;
  padding: 64px 50px 52px;
  border-radius: 40px 40px 0 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(169, 212, 197, 0.28), transparent 31%),
    var(--forest);
  box-shadow: 0 30px 75px rgba(16, 47, 41, 0.18);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  border: 1px solid rgba(169, 212, 197, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-visual::before {
  top: -80px;
  right: -90px;
  width: 320px;
  height: 320px;
}

.hero-visual::after {
  top: -30px;
  right: -40px;
  width: 220px;
  height: 220px;
}

.status-pill {
  position: relative;
  z-index: 1;
  margin: 0 auto 20px;
  width: max-content;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mint-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.3px;
}

.status-pill span,
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #68c6a6;
  box-shadow: 0 0 0 4px rgba(104, 198, 166, 0.12);
}

.call-card {
  position: relative;
  z-index: 2;
  padding: 28px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 23px;
  box-shadow: 0 20px 55px rgba(8, 28, 23, 0.3);
}

.call-topline,
.caller-info,
.call-outcome {
  display: flex;
  align-items: center;
}

.call-topline {
  justify-content: space-between;
}

.caller-info {
  gap: 12px;
}

.caller-avatar,
.author-avatar {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--white);
  background: #627a6b;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.caller-info > div:last-child {
  display: flex;
  flex-direction: column;
}

.caller-info strong {
  margin-top: 1px;
  font-size: 15px;
}

.meta-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.call-time {
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.waveform {
  height: 66px;
  margin: 27px 0 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(90deg, rgba(46, 143, 125, 0.04), rgba(46, 143, 125, 0.1), rgba(46, 143, 125, 0.04));
  border-radius: 12px;
}

.waveform span {
  width: 3px;
  height: var(--h);
  background: var(--teal);
  border-radius: 8px;
  animation: pulse-wave 1.5s ease-in-out infinite alternate;
}

.waveform span:nth-child(2n) { animation-delay: -0.4s; }
.waveform span:nth-child(3n) { animation-delay: -0.8s; }

@keyframes pulse-wave {
  from { transform: scaleY(0.58); opacity: 0.56; }
  to { transform: scaleY(1); opacity: 1; }
}

.live-quote {
  min-height: 78px;
  padding: 16px 18px;
  color: var(--ink-soft);
  background: var(--ivory);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.65;
}

.call-outcome {
  margin-top: 19px;
  gap: 12px;
}

.outcome-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  background: var(--mint-light);
  border-radius: 10px;
}

.outcome-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.call-outcome > div:last-child {
  display: flex;
  flex-direction: column;
}

.call-outcome span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.call-outcome strong {
  margin-top: 2px;
  font-size: 13px;
}

.insight-card {
  position: absolute;
  z-index: 3;
  padding: 13px 17px;
  background: var(--white);
  border: 1px solid rgba(23, 35, 31, 0.07);
  border-radius: 13px;
  box-shadow: 0 14px 35px rgba(8, 28, 23, 0.2);
}

.insight-one {
  bottom: 46px;
  left: -29px;
  display: flex;
  flex-direction: column;
}

.insight-one .insight-number {
  color: var(--teal);
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
}

.insight-one span:last-child {
  color: var(--muted);
  font-size: 10px;
}

.insight-two {
  right: -23px;
  bottom: 82px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.insight-two svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.insight-two > span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 9px;
}

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

.trust-row {
  position: relative;
  padding: 39px 0 33px;
  display: flex;
  align-items: center;
  gap: 42px;
  border-top: 1px solid rgba(23, 35, 31, 0.08);
}

.trust-label {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-cloud {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #73807b;
  filter: grayscale(1);
}

.logo-cloud > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.logo-shape {
  position: relative;
  width: 19px;
  height: 19px;
  display: inline-block;
}

.logo-shape.arch { border: 5px solid currentColor; border-bottom: 0; border-radius: 20px 20px 0 0; }
.logo-shape.circle { border: 4px solid currentColor; border-radius: 50%; }
.logo-shape.circle::after { position: absolute; inset: 4px; background: currentColor; border-radius: 50%; content: ""; }
.logo-shape.diamond { width: 16px; height: 16px; background: currentColor; transform: rotate(45deg); }
.logo-shape.bars { background: linear-gradient(90deg, currentColor 0 23%, transparent 23% 38%, currentColor 38% 62%, transparent 62% 77%, currentColor 77%); }
.logo-shape.wave { border-top: 4px solid currentColor; border-bottom: 4px solid currentColor; border-radius: 50%; transform: rotate(-15deg); }

.outcomes {
  color: var(--white);
  background: var(--forest-deep);
}

.outcomes-grid {
  padding: 33px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.outcomes-grid > div {
  padding: 4px 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.outcomes-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.outcomes-grid strong {
  color: var(--mint);
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -1px;
  white-space: nowrap;
}

.outcomes-grid span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  line-height: 1.35;
}

.demo-section {
  background: var(--paper);
}

.demo-shell {
  min-height: 650px;
  padding: 70px 76px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 78px;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 90%, rgba(46, 143, 125, 0.32), transparent 32%),
    var(--forest-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.demo-copy h2 {
  font-size: clamp(40px, 4.3vw, 56px);
}

.demo-copy h2 em {
  color: var(--mint);
}

.demo-copy > p {
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 17px;
  line-height: 1.75;
}

.check-list {
  margin: 31px 0 0;
  padding: 25px 0 0;
  display: grid;
  gap: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
}

.check-list li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.check-list span {
  width: 20px;
  height: 20px;
  margin-right: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-deep);
  background: var(--mint);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.demo-form-card {
  min-height: 534px;
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(6, 26, 22, 0.35);
}

.form-heading {
  margin-bottom: 25px;
}

.step-tag {
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.form-heading h3,
.demo-result h3 {
  margin-top: 6px;
  font-size: 29px;
}

.form-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

#demo-form label,
#demo-form legend {
  display: block;
  margin: 14px 0 7px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.input-wrap {
  position: relative;
}

.input-wrap > svg {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 18px;
  height: 18px;
  color: #81908b;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transform: translateY(-50%);
  pointer-events: none;
}

.input-wrap input {
  width: 100%;
  height: 49px;
  padding: 0 14px 0 43px;
  color: var(--ink);
  background: #fbfbf8;
  border: 1px solid #dce1de;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-wrap input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 143, 125, 0.12);
}

.input-wrap input[aria-invalid="true"] {
  border-color: #ad574f;
}

.field-error {
  min-height: 15px;
  display: block;
  color: #a54b43;
  font-size: 10px;
  line-height: 1.4;
}

#demo-form fieldset {
  margin: 2px 0 20px;
  padding: 0;
  border: 0;
}

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

.role-option {
  margin: 0 !important;
  cursor: pointer;
}

.role-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.role-content {
  min-height: 74px;
  padding: 11px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--muted);
  background: #fbfbf8;
  border: 1px solid #e1e5e2;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.role-content svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.role-option:hover .role-content,
.role-option input:checked + .role-content {
  color: var(--teal);
  background: rgba(46, 143, 125, 0.07);
  border-color: var(--teal);
}

.demo-submit {
  width: 100%;
  min-height: 50px;
  border-radius: 10px;
}

.demo-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.demo-submit.loading svg {
  animation: loading-arrow 0.8s ease-in-out infinite alternate;
}

@keyframes loading-arrow {
  to { transform: translateX(5px); }
}

.form-note {
  margin: 9px 0 0;
  color: #89938f;
  font-size: 9px;
  text-align: center;
}

.demo-result {
  padding-top: 38px;
  text-align: center;
}

.demo-result[hidden] {
  display: none;
}

.result-check {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--mint-light);
  border-radius: 50%;
}

.result-check svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.demo-result > p {
  max-width: 390px;
  margin: 12px auto 20px;
  color: var(--muted);
  font-size: 14px;
}

.result-preview {
  margin: 0 0 23px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
  text-align: left;
  background: var(--ivory);
  border-radius: 13px;
}

.result-domain {
  font-weight: 700;
}

.result-role {
  color: var(--teal);
  font-size: 12px;
}

.mini-wave {
  grid-row: 1 / 3;
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 3px;
}

.mini-wave i {
  width: 3px;
  height: 12px;
  background: var(--teal);
  border-radius: 5px;
  animation: result-wave 0.8s ease-in-out infinite alternate;
}

.mini-wave i:nth-child(2n) { height: 24px; animation-delay: -0.4s; }
.mini-wave i:nth-child(3n) { height: 17px; animation-delay: -0.2s; }

@keyframes result-wave {
  to { transform: scaleY(0.5); }
}

.conversation-section {
  background: var(--ivory);
}

.conversation-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
  align-items: center;
}

.section-intro > p,
.centered-heading > p,
.setup-heading > p,
.faq-heading > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-intro > p {
  margin: 26px 0 37px;
}

.conversation-points {
  display: grid;
  gap: 17px;
}

.conversation-points > div {
  padding-top: 17px;
  display: grid;
  grid-template-columns: 35px 1fr;
  border-top: 1px solid var(--line);
}

.conversation-points > div > span {
  color: var(--teal);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
}

.conversation-points p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.conversation-points strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.transcript-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23, 35, 31, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 65px rgba(23, 35, 31, 0.1);
}

.transcript-head {
  padding: 17px 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  background: #fbfbf8;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.transcript-head > div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 600;
}

.player-controls {
  display: none !important;
  gap: 10px !important;
}

.is-animated .player-controls {
  display: flex !important;
}

.player-time {
  min-width: 63px;
  color: var(--muted);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.player-toggle {
  min-height: 32px;
  padding: 0 12px 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--white);
  background: var(--forest);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.player-toggle:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.player-toggle:focus-visible {
  outline: 3px solid rgba(46, 143, 125, 0.3);
  outline-offset: 2px;
}

.player-toggle svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.pause-symbol {
  display: none;
  fill: none !important;
}

.player-toggle.is-playing .play-symbol {
  display: none;
}

.player-toggle.is-playing .pause-symbol {
  display: block;
}

.player-progress {
  position: relative;
  height: 3px;
  display: none;
  overflow: hidden;
  background: rgba(46, 143, 125, 0.1);
}

.is-animated .player-progress {
  display: block;
}

.player-progress span {
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: scaleX(var(--conversation-progress, 0));
  transform-origin: left;
  transition: transform 0.45s ease;
}

.transcript-body {
  padding: 28px;
}

.is-animated .transcript-body {
  min-height: 495px;
}

.message {
  max-width: 86%;
  margin-bottom: 17px;
  padding: 15px 17px;
  background: #f3f3ef;
  border-radius: 7px 16px 16px 16px;
}

.typing-indicator {
  width: max-content;
  margin: 0 0 17px auto;
  padding: 10px 13px;
  display: none;
  align-items: center;
  gap: 9px;
  background: #e5f0eb;
  border-radius: 16px 7px 16px 16px;
}

.is-animated .typing-indicator {
  display: flex;
}

.typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.typing-dots i {
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  animation: typing-dot 0.8s ease-in-out infinite alternate;
}

.typing-dots i:nth-child(2) { animation-delay: 0.16s; }
.typing-dots i:nth-child(3) { animation-delay: 0.32s; }

@keyframes typing-dot {
  from { opacity: 0.35; transform: translateY(2px); }
  to { opacity: 1; transform: translateY(-2px); }
}

.is-animated [data-beat] {
  max-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    max-height 0.45s ease,
    margin 0.45s ease,
    padding 0.45s ease,
    opacity 0.38s ease,
    transform 0.38s ease;
}

.is-animated .message.is-visible {
  max-height: 190px;
  margin-bottom: 17px;
  padding: 15px 17px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.is-animated .message.final-message.is-visible {
  margin-bottom: 23px;
}

.is-animated .typing-indicator.is-visible {
  max-height: 55px;
  margin: 0 0 17px auto;
  padding: 10px 13px;
  opacity: 1;
  transform: translateY(0);
}

.is-animated .booking-confirmation.is-visible {
  max-height: 90px;
  padding: 14px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.zentra-message {
  margin-left: auto;
  background: #e5f0eb;
  border-radius: 16px 7px 16px 16px;
}

.message-meta {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mini-avatar {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #66776f;
  border-radius: 50%;
  font-size: 7px;
  font-weight: 700;
}

.mini-avatar.zentra {
  background: var(--teal);
  font-size: 10px;
}

.message-meta strong {
  font-size: 10px;
}

.message-meta time {
  margin-left: auto;
  color: #8b9692;
  font-size: 8px;
}

.message p {
  margin: 9px 0 0 29px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.compact-message {
  max-width: 55%;
}

.final-message {
  margin-bottom: 23px;
}

.booking-confirmation {
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--forest);
  border-radius: 13px;
  color: var(--white);
}

.calendar-date {
  width: 42px;
  height: 47px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 7px;
  line-height: 1;
}

.calendar-date span {
  color: var(--teal);
  font-size: 7px;
  font-weight: 700;
}

.calendar-date strong {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 18px;
}

.booking-confirmation > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  font-size: 11px;
}

.booking-confirmation > div:nth-child(2) strong {
  color: var(--mint);
  font-size: 10px;
}

.confirmed-badge {
  margin-left: auto;
  padding: 5px 9px;
  color: var(--mint-light);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 8px;
}

.confirmed-badge i {
  margin-right: 3px;
  color: var(--mint);
  font-style: normal;
}

.is-animated .booking-confirmation.is-visible .confirmed-badge {
  animation: confirmation-pop 0.5s 0.25s ease both;
}

@keyframes confirmation-pop {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.capabilities-section {
  background: var(--paper);
}

.centered-heading {
  max-width: 810px;
  margin: 0 auto 62px;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p {
  margin: 20px 0 0;
}

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

.feature-card {
  position: relative;
  min-height: 510px;
  padding: 33px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-primary {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: rgba(46, 143, 125, 0.1);
  border-radius: 13px;
}

.feature-primary .feature-icon {
  color: var(--mint);
  background: rgba(255, 255, 255, 0.08);
}

.feature-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-number {
  position: absolute;
  top: 37px;
  right: 33px;
  color: #9ba39f;
  font-family: var(--display);
  font-size: 11px;
}

.feature-card h3 {
  margin: 32px 0 16px;
  max-width: 290px;
  font-size: 26px;
}

.feature-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.feature-primary > p {
  color: rgba(255, 255, 255, 0.66);
}

.availability-visual,
.calendar-visual,
.routing-visual {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  min-height: 115px;
  padding: 17px;
  border-radius: 13px;
}

.availability-visual {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.day-row {
  display: flex;
  justify-content: space-between;
}

.day-row span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--mint);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
}

.day-row span:nth-child(6),
.day-row span:nth-child(7) {
  color: var(--mint);
  background: rgba(169, 212, 197, 0.12);
}

.time-line {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-line span {
  height: 1px;
  flex: 1;
  background: rgba(169, 212, 197, 0.28);
}

.time-line i {
  color: var(--mint);
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
}

.calendar-visual {
  padding: 14px;
  background: #f6f7f3;
  border: 1px solid var(--line);
}

.calendar-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
}

.calendar-days {
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
}

.calendar-days i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  font-size: 8px;
  font-style: normal;
}

.calendar-days .active {
  color: var(--white);
  background: var(--teal);
}

.calendar-event {
  padding: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  background: var(--white);
  border-radius: 6px;
  font-size: 7px;
}

.calendar-event > span {
  width: 3px;
  height: 17px;
  background: var(--teal);
  border-radius: 3px;
}

.calendar-event b {
  color: var(--ink);
}

.calendar-event em {
  margin-left: auto;
  color: var(--teal);
  font-style: normal;
}

.routing-visual {
  display: grid;
  grid-template-rows: auto 25px auto;
  background: #f6f7f3;
  border: 1px solid var(--line);
}

.route-source {
  width: max-content;
  margin: 0 auto;
  padding: 5px 10px;
  color: var(--teal);
  background: var(--white);
  border: 1px solid rgba(46, 143, 125, 0.3);
  border-radius: 6px;
  font-size: 8px;
}

.route-lines {
  position: relative;
}

.route-lines::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 14px;
  background: #b8c4bf;
  content: "";
}

.route-lines::after {
  position: absolute;
  right: 16%;
  bottom: 5px;
  left: 16%;
  height: 1px;
  background: #b8c4bf;
  content: "";
}

.route-destinations {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}

.route-destinations span {
  min-width: 62px;
  padding: 6px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 7px;
  text-align: center;
}

.route-destinations span:last-child {
  color: #a06a3f;
  background: #fbf2e7;
}

.setup-section {
  color: var(--white);
  background: var(--forest-deep);
}

.setup-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.setup-heading h2 em {
  color: var(--mint);
}

.setup-heading > p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.63);
}

.steps-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.setup-step {
  position: relative;
  padding: 44px 31px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.setup-step:first-child {
  padding-left: 0;
}

.setup-step:last-child {
  border-right: 0;
}

.step-number {
  position: absolute;
  top: -9px;
  left: 31px;
  padding: 0 8px;
  color: var(--mint);
  background: var(--forest-deep);
  font-size: 10px;
  font-weight: 700;
}

.setup-step:first-child .step-number {
  left: 0;
  padding-left: 0;
}

.step-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.step-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.setup-step h3 {
  margin: 24px 0 12px;
  font-size: 20px;
  letter-spacing: -0.5px;
}

.setup-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.7;
}

.setup-action {
  margin-top: 45px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.setup-action > span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.results-section {
  background: var(--ivory);
}

.results-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 95px;
  align-items: center;
}

.results-story blockquote {
  margin: 0;
  max-width: 720px;
  font-family: var(--display);
  font-size: clamp(33px, 4vw, 47px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.28;
}

.testimonial-author,
.quote-author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.testimonial-author {
  margin-top: 35px;
}

.testimonial-author > div:last-child,
.quote-author > div {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong,
.quote-author strong {
  font-size: 13px;
}

.testimonial-author span,
.quote-author span {
  color: var(--muted);
  font-size: 11px;
}

.results-numbers {
  border-top: 1px solid var(--line);
}

.result-stat {
  padding: 27px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.result-stat > strong {
  color: var(--teal);
  font-family: var(--display);
  font-size: 46px;
  letter-spacing: -2px;
}

.result-stat > div {
  display: flex;
  flex-direction: column;
}

.result-stat span {
  font-size: 14px;
  font-weight: 700;
}

.result-stat p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.testimonial-grid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.quote-card {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.quote-mark {
  height: 32px;
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 50px;
  line-height: 1;
}

.quote-card > p {
  margin: 20px 0 27px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.author-avatar.small {
  width: 39px;
  height: 39px;
  background: #806558;
  font-size: 10px;
}

.author-avatar.small.alt {
  background: #526b7c;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
}

.faq-heading > p {
  max-width: 340px;
  margin-top: 25px;
  font-size: 15px;
}

.faq-heading a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 45px 25px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.4px;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 14px;
  height: 1px;
  background: var(--teal);
  content: "";
  transition: transform 0.2s ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  margin: -7px 45px 26px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.final-cta {
  padding-top: 50px;
  background: var(--paper);
}

.final-cta-inner {
  padding: 86px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0, rgba(169, 212, 197, 0.15), transparent 35%),
    var(--forest);
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta-mark {
  width: 51px;
  height: 51px;
  margin-bottom: 27px;
  display: grid;
  place-items: center;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.cta-mark svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.final-cta h2 em {
  color: var(--mint);
}

.final-cta p {
  max-width: 600px;
  margin: 24px 0 31px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}

.cta-note {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
}

.site-footer {
  padding: 85px 0 26px;
  color: var(--white);
  background: #0d2722;
}

.footer-top {
  padding-bottom: 65px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
}

.brand-light {
  color: var(--white);
}

.footer-brand > p {
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-links a {
  width: max-content;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 10px;
}

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

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

.reveal-delay {
  transition-delay: 0.12s;
}

html[data-device="mobile"] .reveal-delay {
  transition-delay: 0s;
}

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

@media (max-width: 1050px) {
  .main-nav { gap: 20px; }
  .header-actions { gap: 8px; }
  .hero-grid { gap: 35px; }
  .hero-visual { padding-inline: 34px; }
  .insight-one { left: -15px; }
  .insight-two { right: -12px; }
  .demo-shell { padding: 60px 52px; gap: 50px; }
  .conversation-grid { gap: 60px; }
  .feature-card { padding: 26px; }
  .feature-card h3 { font-size: 23px; }
  .results-grid { gap: 55px; }
}

@media (max-width: 900px) {
  .section { padding: 92px 0; }
  .header-cta { display: none; }
  .brand { order: 1; }
  .header-actions { order: 2; margin-left: auto; }
  .menu-toggle {
    position: relative;
    z-index: 55;
    order: 3;
    width: 42px;
    height: 42px;
    padding: 11px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) {
    width: 100%;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 0;
    padding: 130px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    color: var(--ink);
    background: var(--ivory);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-nav a { font-family: var(--display); font-size: 30px; }
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; padding-bottom: 30px; }
  .hero-visual { max-width: 650px; width: 92%; margin: 0 auto; }
  .trust-row { flex-direction: column; align-items: flex-start; gap: 25px; }
  .logo-cloud { flex-wrap: wrap; gap: 25px 40px; justify-content: flex-start; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .demo-shell { grid-template-columns: 1fr; padding: 60px; }
  .demo-copy { max-width: 650px; }
  .demo-form-card { max-width: 600px; width: 100%; }
  .conversation-grid { grid-template-columns: 1fr; }
  .section-intro { max-width: 650px; }
  .transcript-card { max-width: 700px; width: 100%; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:last-child { grid-column: 1 / -1; }
  .setup-heading { grid-template-columns: 1fr; gap: 30px; }
  .setup-heading > p { max-width: 600px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .setup-step:nth-child(2) { border-right: 0; }
  .setup-step:nth-child(3), .setup-step:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, 0.12); }
  .results-grid { grid-template-columns: 1fr; }
  .results-numbers { max-width: 570px; }
  .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .faq-heading > p { max-width: 500px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 75px 0; }
  .site-header { height: 68px; }
  .brand { font-size: 21px; }
  .brand-mark { width: 28px; height: 28px; }
  h1 { font-size: clamp(46px, 14vw, 62px); }
  h2 { font-size: clamp(38px, 11vw, 48px); }
  .hero { padding-top: 112px; }
  .hero-lede { margin: 22px 0 29px; font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { align-items: flex-start; }
  .hero-visual { min-height: 480px; width: 100%; padding: 50px 16px 40px; border-radius: 26px 26px 0 0; }
  .call-card { padding: 20px; }
  .waveform { margin: 20px 0 16px; }
  .insight-one { bottom: 14px; left: 7px; }
  .insight-two { right: 7px; bottom: 30px; }
  .trust-row { padding-top: 30px; }
  .logo-cloud { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 15px; }
  .logo-cloud > span { font-size: 12px; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-grid > div { padding: 17px 13px; flex-direction: column; align-items: flex-start; gap: 0; }
  .outcomes-grid > div:nth-child(2n + 1) { padding-left: 0; border-left: 0; }
  .outcomes-grid > div:nth-child(n + 3) { border-top: 1px solid rgba(255, 255, 255, 0.13); }
  .outcomes-grid strong { font-size: 25px; }
  .demo-shell { width: 100%; padding: 45px 16px 16px; gap: 40px; border-radius: 0; }
  .demo-copy { padding: 0 3px; }
  .demo-form-card { min-height: 0; padding: 25px 18px; }
  .role-content { min-height: 72px; }
  .conversation-grid { gap: 45px; }
  .transcript-body { padding: 16px; }
  .is-animated .transcript-body { min-height: 565px; }
  .message { max-width: 94%; }
  .compact-message { max-width: 75%; }
  .booking-confirmation { align-items: flex-start; }
  .confirmed-badge { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card:last-child { grid-column: auto; }
  .feature-card { min-height: 500px; }
  .centered-heading { margin-bottom: 45px; text-align: left; }
  .centered-heading .eyebrow { justify-content: flex-start; }
  .steps-grid { grid-template-columns: 1fr; }
  .setup-step { padding: 38px 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .setup-step:nth-child(2), .setup-step:nth-child(3), .setup-step:nth-child(4) { border-top: 0; }
  .setup-step:last-child { border-bottom: 0; }
  .step-number, .setup-step:first-child .step-number { right: 0; left: auto; padding: 0 0 0 8px; }
  .setup-action { align-items: flex-start; flex-direction: column; }
  .setup-action .button { width: 100%; }
  .result-stat { grid-template-columns: 92px 1fr; }
  .result-stat > strong { font-size: 39px; }
  .testimonial-grid { margin-top: 65px; grid-template-columns: 1fr; }
  .quote-card { padding: 29px 24px; }
  .faq-grid { gap: 40px; }
  .final-cta { padding-top: 20px; }
  .final-cta-inner { width: 100%; padding: 70px 20px; border-radius: 0; }
  .cta-actions { width: 100%; flex-direction: column; gap: 12px; }
  .cta-actions .button { width: 100%; }
  .site-footer { padding-top: 65px; }
  .footer-top { grid-template-columns: 1fr; gap: 55px; }
  .footer-links { gap: 15px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

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