:root {
  --paper: #f6f7f2;
  --paper-strong: #ffffff;
  --paper-warm: #ecefe6;
  --ink: #102925;
  --ink-soft: #48605b;
  --line: #d6ddd5;
  --green: #0d6b56;
  --green-dark: #085344;
  --mint: #bdebd2;
  --mint-light: #e1f7ea;
  --lime: #d7f36a;
  --coral: #f36f56;
  --amber: #f5bd4f;
  --shadow: 0 24px 70px rgba(20, 56, 49, 0.12);
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.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;
}

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

.section-shell {
  position: relative;
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 247, 242, 0.92);
  border-color: rgba(16, 41, 37, 0.1);
  box-shadow: 0 8px 34px rgba(16, 41, 37, 0.06);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 11px;
  font-family: var(--font-display);
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  background: var(--ink);
  border-radius: 8px 8px 8px 2px;
  overflow: hidden;
}

.brand-mark i {
  position: absolute;
  display: block;
  bottom: 7px;
  width: 5px;
  background: var(--lime);
  border-radius: 4px;
}

.brand-mark i:first-child {
  left: 8px;
  height: 10px;
  transform: rotate(-13deg);
}

.brand-mark i:last-child {
  right: 8px;
  height: 16px;
  transform: rotate(13deg);
}

.brand-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-name b {
  color: var(--green);
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: #354c47;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  color: white;
  background: var(--ink);
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta span {
  margin-left: 9px;
  font-size: 15px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--green);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 200ms ease;
}

.hero {
  min-height: 900px;
  padding: 146px 0 0;
  background:
    linear-gradient(rgba(16, 41, 37, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 41, 37, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
}

.hero::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(225, 247, 234, 0.5));
  content: "";
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(13, 107, 86, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 130px;
  right: -180px;
  width: 720px;
  height: 720px;
}

.orbit-two {
  top: 250px;
  right: -60px;
  width: 480px;
  height: 480px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  min-height: 620px;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 25px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 1px;
  margin-right: 11px;
  background: currentColor;
}

.eyebrow > span::after {
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

.hero h1,
.section-intro h2,
.voice-copy h2,
.features-heading h2,
.channels-copy h2,
.steps-heading h2,
.clarity-card h2,
.pricing-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1.03;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(52px, 5.45vw, 76px);
}

.marker-word {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--green);
}

.marker-word::after {
  position: absolute;
  z-index: -1;
  right: -7px;
  bottom: 2px;
  left: -6px;
  height: 20%;
  background: var(--lime);
  content: "";
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(13, 107, 86, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 16px 32px rgba(13, 107, 86, 0.25);
}

.button-primary > span,
.button-light > span {
  margin-left: 13px;
  font-size: 18px;
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--line);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: white;
  box-shadow: 0 12px 28px rgba(16, 41, 37, 0.08);
}

.play-dot {
  display: inline-grid;
  width: 26px;
  height: 26px;
  margin-left: 11px;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font-size: 8px;
  place-items: center;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 31px;
  color: #516762;
  font-size: 12.5px;
  font-weight: 600;
}

.hero-proof > span {
  display: inline-flex;
  align-items: center;
}

.hero-proof b {
  margin-left: 6px;
  padding: 2px 7px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 6px;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
}

.status-dot.active {
  background: #24ad75;
  box-shadow: 0 0 0 4px rgba(36, 173, 117, 0.12);
}

.status-dot.soon {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(243, 111, 86, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 584px;
}

.visual-stamp {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 0;
  padding: 8px 12px;
  color: white;
  background: var(--coral);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  transform: rotate(4deg);
}

.call-console {
  position: absolute;
  z-index: 2;
  top: 25px;
  right: 30px;
  width: min(100%, 480px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 41, 37, 0.15);
  border-radius: 30px;
  box-shadow: 0 32px 90px rgba(16, 41, 37, 0.18);
  backdrop-filter: blur(14px);
  transform: translateY(var(--parallax-y, 0px)) rotate(1.2deg);
}

.call-console::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--lime);
  content: "";
}

.call-console-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px 26px 20px;
  border-bottom: 1px solid #e3e8e2;
}

.call-console-top > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.live-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--coral);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.live-kicker i {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.call-console-top strong {
  font-family: var(--font-display);
  font-size: 15px;
}

.soon-label {
  padding: 6px 9px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 7px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.caller-row {
  display: flex;
  align-items: center;
  padding: 22px 26px;
  background: #f5f8f3;
  border-bottom: 1px solid #e3e8e2;
}

.caller-avatar {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
  place-items: center;
}

.caller-avatar i {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 13px;
  height: 13px;
  background: #24ad75;
  border: 3px solid white;
  border-radius: 50%;
}

.caller-info {
  display: flex;
  flex-direction: column;
  margin-left: 13px;
}

.caller-info strong {
  font-family: var(--font-display);
  font-size: 16px;
}

.caller-info span {
  color: var(--ink-soft);
  font-size: 11px;
}

.audio-bars,
.voice-levels {
  display: flex;
  align-items: center;
  gap: 3px;
}

.audio-bars {
  height: 34px;
  margin-left: auto;
}

.audio-bars i,
.voice-levels i {
  display: block;
  width: 3px;
  background: var(--green);
  border-radius: 10px;
  animation: sound-wave 1.15s ease-in-out infinite alternate;
}

.audio-bars i:nth-child(1),
.audio-bars i:nth-child(9) { height: 7px; animation-delay: -0.3s; }
.audio-bars i:nth-child(2),
.audio-bars i:nth-child(8) { height: 15px; animation-delay: -0.55s; }
.audio-bars i:nth-child(3),
.audio-bars i:nth-child(7) { height: 24px; animation-delay: -0.1s; }
.audio-bars i:nth-child(4),
.audio-bars i:nth-child(6) { height: 13px; animation-delay: -0.7s; }
.audio-bars i:nth-child(5) { height: 30px; animation-delay: -0.45s; }

.transcript {
  padding: 22px 26px 20px;
}

.transcript-line {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 11px;
  margin-bottom: 14px;
}

.transcript-line > span {
  padding-top: 3px;
  color: #7c8d89;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.transcript-line p {
  margin: 0;
  color: #344c46;
  font-size: 12.5px;
  line-height: 1.5;
}

.transcript-line.mate-line p {
  font-weight: 600;
}

.transcript-line.is-current p::after {
  display: inline-block;
  width: 2px;
  height: 13px;
  margin-left: 3px;
  background: var(--green);
  vertical-align: -2px;
  content: "";
  animation: blink 1s steps(1) infinite;
}

.call-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 1px;
  background: #dce4dd;
  border-top: 1px solid #dce4dd;
}

.call-result-grid > div {
  display: flex;
  flex-direction: column;
  min-height: 74px;
  padding: 16px;
  background: white;
}

.call-result-grid span {
  color: #70827d;
  font-size: 9px;
}

.call-result-grid strong {
  margin-top: 3px;
  font-size: 11px;
}

.call-result-grid .result-success {
  color: white;
  background: var(--green);
}

.call-result-grid .result-success span {
  color: rgba(255, 255, 255, 0.68);
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  min-width: 248px;
  padding: 14px 16px;
  background: white;
  border: 1px solid rgba(16, 41, 37, 0.13);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(16, 41, 37, 0.15);
  transform: translateY(var(--parallax-y, 0px));
}

.note-one {
  right: -22px;
  bottom: 52px;
}

.note-two {
  bottom: 135px;
  left: -30px;
}

.mini-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  margin-right: 11px;
  color: var(--green);
  background: var(--mint-light);
  border-radius: 11px;
  font-size: 15px;
  font-weight: 800;
  place-items: center;
}

.wave-icon {
  color: var(--coral);
  background: #fff0ec;
  font-size: 22px;
}

.floating-note > div {
  display: flex;
  flex-direction: column;
}

.floating-note strong {
  font-family: var(--font-display);
  font-size: 11px;
}

.floating-note small {
  color: var(--ink-soft);
  font-size: 9.5px;
}

.sector-rail {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  min-height: 100px;
  margin-top: 36px;
  border-top: 1px solid rgba(16, 41, 37, 0.14);
}

.sector-rail > span {
  color: #71837e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sector-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #3d544f;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
}

.sector-list i {
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
}

.promise-section {
  padding: 126px 0;
  background: white;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 100px;
}

.section-no {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.section-intro h2,
.features-heading h2,
.steps-heading h2,
.pricing-copy h2,
.faq-heading h2 {
  font-size: clamp(40px, 4.2vw, 60px);
}

h2 em {
  color: var(--green);
  font-style: normal;
}

.promise-copy {
  padding-bottom: 6px;
}

.promise-copy p {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.promise-copy a {
  display: inline-flex;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.promise-copy a span {
  margin-left: 30px;
}

.journey-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 82px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-strip article {
  position: relative;
  min-height: 300px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  transition: background 220ms ease, transform 220ms ease;
}

.journey-strip article:first-child {
  border-left: 1px solid var(--line);
}

.journey-strip article:hover {
  z-index: 2;
  background: var(--mint-light);
  transform: translateY(-8px);
}

.journey-index {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #8b9995;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
}

.journey-icon {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--green);
  background: var(--mint-light);
  border-radius: 15px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  place-items: center;
}

.journey-strip article:hover .journey-icon {
  background: white;
}

.journey-strip h3 {
  margin: 52px 0 12px;
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: -0.03em;
}

.journey-strip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.voice-section {
  padding: 128px 0 48px;
  color: white;
  background: var(--ink);
}

.voice-section::before {
  position: absolute;
  top: -30%;
  right: -9%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(215, 243, 106, 0.11);
  border-radius: 50%;
  content: "";
}

.voice-section::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: repeating-linear-gradient(90deg, transparent, transparent 57px, rgba(255,255,255,.028) 58px);
  content: "";
}

.voice-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 100px;
}

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

.voice-copy h2 {
  font-size: clamp(52px, 5.2vw, 74px);
}

.voice-copy h2 em {
  color: var(--lime);
}

.voice-copy > p {
  max-width: 540px;
  margin: 26px 0 0;
  color: #b8cbc5;
  font-size: 18px;
  line-height: 1.75;
}

.voice-points {
  margin: 38px 0;
}

.voice-points > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.voice-points > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.voice-points span {
  padding-top: 2px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
}

.voice-points p {
  margin: 0;
  color: #b7c9c4;
  font-size: 13px;
}

.voice-points strong {
  color: white;
}

.button-light {
  color: var(--ink);
  background: var(--lime);
}

.button-light:hover,
.button-light:focus-visible {
  background: white;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.voice-stage {
  position: relative;
  min-height: 580px;
}

.voice-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(215, 243, 106, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a {
  width: 430px;
  height: 430px;
  animation: ring-pulse 4s ease-in-out infinite;
}

.ring-b {
  width: 530px;
  height: 530px;
  animation: ring-pulse 4s 1.4s ease-in-out infinite;
}

.voice-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 318px;
  height: 318px;
  background: var(--lime);
  border-radius: 50%;
  color: var(--ink);
  box-shadow: 0 0 0 30px rgba(215, 243, 106, 0.06), 0 34px 80px rgba(0, 0, 0, 0.26);
  transform: translate(-50%, -50%);
}

.phone-glyph {
  position: absolute;
  top: 48px;
  display: grid;
  width: 40px;
  height: 40px;
  background: var(--ink);
  border-radius: 50%;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  place-items: center;
}

.voice-levels {
  height: 80px;
  gap: 5px;
}

.voice-levels i {
  width: 5px;
  background: var(--ink);
}

.voice-levels i:nth-child(1), .voice-levels i:nth-child(11) { height: 16px; }
.voice-levels i:nth-child(2), .voice-levels i:nth-child(10) { height: 34px; animation-delay: -.7s; }
.voice-levels i:nth-child(3), .voice-levels i:nth-child(9) { height: 54px; animation-delay: -.1s; }
.voice-levels i:nth-child(4), .voice-levels i:nth-child(8) { height: 38px; animation-delay: -.55s; }
.voice-levels i:nth-child(5), .voice-levels i:nth-child(7) { height: 68px; animation-delay: -.25s; }
.voice-levels i:nth-child(6) { height: 78px; animation-delay: -.4s; }

.voice-core strong {
  font-family: var(--font-display);
  font-size: 17px;
}

.voice-core small {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
}

.voice-caption {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 13px 17px;
  color: var(--ink);
  background: white;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  font-size: 11px;
  font-weight: 600;
}

.voice-caption span {
  width: 8px;
  height: 8px;
  margin-right: 9px;
  background: var(--green);
  border-radius: 50%;
}

.caption-top {
  top: 105px;
  right: -5px;
}

.caption-bottom {
  bottom: 100px;
  left: 0;
}

.caption-bottom span {
  background: var(--coral);
}

.voice-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #c8d6d2;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.voice-bottom i {
  color: var(--lime);
  font-style: normal;
}

.features-section {
  padding: 138px 0;
  background: var(--paper);
}

.features-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 80px;
}

.features-heading > p {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.feature-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 68px;
}

.feature-card {
  position: relative;
  min-height: 400px;
  padding: 32px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.feature-card:hover {
  border-color: #b7c8bf;
  box-shadow: 0 24px 55px rgba(16, 41, 37, 0.1);
  transform: translateY(-6px);
}

.feature-card-wide {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  color: white;
  background: var(--green);
  border-color: var(--green);
}

.feature-tag {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-card-wide .feature-tag {
  color: var(--lime);
}

.feature-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.24;
  letter-spacing: -0.045em;
}

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

.feature-card-wide p {
  color: #d4e5df;
}

.check-list {
  display: grid;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
  font-weight: 600;
}

.check-list li::before {
  margin-right: 8px;
  color: var(--lime);
  content: "✓";
}

.mini-chat {
  align-self: end;
  min-height: 300px;
  padding: 19px;
  color: var(--ink);
  background: #f8faf6;
  border: 5px solid rgba(255, 255, 255, 0.13);
  border-radius: 19px;
  transform: rotate(1.5deg) translateY(12px);
}

.mini-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
}

.mini-chat-head i {
  color: #84938f;
  font-style: normal;
  font-weight: 500;
}

.bubble {
  width: fit-content;
  max-width: 89%;
  margin-top: 17px;
  padding: 10px 12px;
  border-radius: 13px;
  font-size: 10px;
  line-height: 1.45;
}

.bubble.patient {
  margin-left: auto;
  background: #e5eae4;
  border-bottom-right-radius: 4px;
}

.bubble.mate {
  color: white;
  background: var(--green);
  border-bottom-left-radius: 4px;
}

.intent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 19px;
  padding: 11px;
  background: var(--mint-light);
  border-radius: 10px;
  font-size: 9px;
}

.intent-row strong {
  color: var(--green);
}

.feature-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 54px;
  color: var(--green);
  background: var(--mint-light);
  border-radius: 18px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  place-items: center;
}

.calendar-symbol {
  position: relative;
  padding-top: 8px;
  border-top: 13px solid var(--green);
}

.calendar-symbol span {
  font-size: 18px;
}

.micro-status,
.reminder-line,
.alert-note {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
}

.micro-status {
  display: flex;
  align-items: center;
  padding: 11px 13px;
  background: #f0f7f3;
  border-radius: 10px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.micro-status i {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: #24ad75;
  border-radius: 50%;
}

.reminder-symbol {
  color: #9b6610;
  background: #fff3d6;
}

.reminder-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 9px;
}

.reminder-line > span {
  color: var(--ink-soft);
}

.reminder-line em {
  padding: 4px 7px;
  color: #815811;
  background: #fff3d6;
  border-radius: 6px;
  font-style: normal;
}

.memory-symbol {
  color: white;
  background: var(--ink);
}

.knowledge-stack {
  position: absolute;
  right: 25px;
  bottom: 24px;
  left: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.knowledge-stack span {
  padding: 6px 9px;
  color: #405751;
  background: #f2f5f0;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 600;
}

.persona-symbol {
  color: #853e30;
  background: #ffe9e4;
  font-size: 17px;
}

.tone-scale {
  position: absolute;
  right: 25px;
  bottom: 26px;
  left: 25px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 9px;
}

.tone-scale i {
  position: relative;
  height: 5px;
  background: #e2e8e2;
  border-radius: 5px;
}

.tone-scale b {
  position: absolute;
  top: 50%;
  left: 64%;
  width: 12px;
  height: 12px;
  background: var(--coral);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--coral);
  transform: translate(-50%, -50%);
}

.alert-card {
  background: #fffaf8;
  border-color: #f0d3cb;
}

.alert-symbol {
  color: #a54635;
  background: #ffe4dd;
}

.alert-note {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #ffe9e4;
  border-radius: 10px;
  color: #7c3b30;
  font-size: 9px;
}

.alert-note i {
  width: 8px;
  height: 8px;
  margin-right: 9px;
  background: var(--coral);
  border-radius: 50%;
}

.alert-note b {
  display: block;
  font-size: 10px;
}

.channels-section {
  padding: 110px 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.channels-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 110px;
}

.channels-copy h2,
.clarity-card h2 {
  font-size: clamp(42px, 4.5vw, 62px);
}

.channels-copy p,
.clarity-card > p,
.pricing-copy > p {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.channel-board {
  overflow: hidden;
  background: white;
  border: 1px solid #cbd5cd;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.channel-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 110px;
  padding: 22px 25px;
  border-bottom: 1px solid var(--line);
}

.channel-row:last-child {
  border-bottom: 0;
}

.channel-logo {
  display: grid;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  place-items: center;
}

.channel-logo.wa {
  color: #08744a;
  background: #dff7e9;
}

.channel-logo.ig {
  color: #8a3a77;
  background: #f6e2f0;
}

.channel-logo.ph {
  color: white;
  background: var(--ink);
}

.channel-row > div {
  display: flex;
  flex-direction: column;
}

.channel-row strong {
  font-family: var(--font-display);
  font-size: 15px;
}

.channel-row small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 11px;
}

.channel-row > em {
  display: flex;
  align-items: center;
  color: var(--green);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.channel-row > em i {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: #24ad75;
  border-radius: 50%;
}

.phone-channel {
  position: relative;
  background: #f8f9f4;
}

.phone-channel::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--lime);
  content: "";
}

.phone-channel > em {
  padding: 6px 9px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 7px;
}

.steps-section {
  padding: 138px 0 124px;
  background: white;
}

.steps-heading {
  max-width: 760px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.steps-grid article {
  position: relative;
  min-height: 300px;
  padding: 34px 42px 20px 0;
}

.steps-grid article:not(:last-child) {
  margin-right: 42px;
  border-right: 1px solid var(--line);
}

.step-big {
  display: block;
  color: var(--mint);
  font-family: var(--font-display);
  font-size: 92px;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.steps-grid h3 {
  margin: 30px 0 10px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.035em;
}

.steps-grid p {
  max-width: 310px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.clarity-section {
  padding: 120px 0;
  background: #e3f2e9;
}

.clarity-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.control-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 32px;
}

.control-list span {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
}

.control-list i {
  display: grid;
  width: 22px;
  height: 22px;
  margin-right: 9px;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
  place-items: center;
}

.dashboard-preview {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(16, 41, 37, 0.17);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(16, 41, 37, 0.18);
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  padding: 0 20px;
  border-bottom: 1px solid #e5eae5;
}

.dash-brand {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
}

.dash-brand span {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  background: var(--ink);
  border-radius: 6px;
}

.dash-user {
  display: grid;
  width: 28px;
  height: 28px;
  color: white;
  background: var(--green);
  border-radius: 9px;
  font-size: 8px;
  font-weight: 800;
  place-items: center;
}

.dash-body {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 410px;
}

.dash-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-top: 26px;
  background: var(--ink);
}

.dash-sidebar i {
  width: 21px;
  height: 21px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.dash-sidebar i:first-child {
  background: var(--lime);
}

.dash-main {
  padding: 28px;
  background: #fafbf8;
}

.dash-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-title > div {
  display: flex;
  flex-direction: column;
}

.dash-title span {
  color: #778984;
  font-size: 8px;
}

.dash-title b {
  font-family: var(--font-display);
  font-size: 16px;
}

.dash-title em {
  padding: 5px 8px;
  color: var(--green);
  background: var(--mint-light);
  border-radius: 6px;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 24px;
}

.dash-stats > div {
  display: flex;
  flex-direction: column;
  min-height: 100px;
  padding: 14px;
  background: white;
  border: 1px solid #e3e9e3;
  border-radius: 11px;
}

.dash-stats span,
.dash-stats small {
  color: #7a8a86;
  font-size: 7px;
}

.dash-stats strong {
  margin: 8px 0 2px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 24px;
}

.dash-table {
  margin-top: 14px;
  overflow: hidden;
  background: white;
  border: 1px solid #e3e9e3;
  border-radius: 11px;
}

.dash-table > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 48px;
  padding: 0 13px;
  border-bottom: 1px solid #edf0ed;
  font-size: 8px;
}

.dash-table > div:last-child {
  border-bottom: 0;
}

.dash-table .dash-table-head {
  min-height: 38px;
  color: #7a8b86;
  background: #f5f7f4;
  font-size: 7px;
}

.dash-table > div > span {
  display: flex;
  align-items: center;
}

.dash-table b {
  padding: 4px 6px;
  color: var(--green);
  background: var(--mint-light);
  border-radius: 5px;
  font-size: 7px;
}

.dash-table b.priority {
  color: #9c4435;
  background: #ffe9e4;
}

.avatar-swatch {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 7px;
}

.avatar-swatch.a { background: #cde7d8; }
.avatar-swatch.b { background: #ecd9bd; }
.avatar-swatch.c { background: #e9cfdf; }

.pricing-section {
  padding: 138px 0;
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.7fr;
  align-items: center;
  justify-content: space-between;
  gap: 130px;
}

.pricing-copy > p {
  max-width: 590px;
}

.trial-note {
  display: flex;
  align-items: center;
  max-width: 520px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.trial-note > span {
  margin-right: 18px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
}

.trial-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.trial-note strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 15px;
}

.pricing-card {
  position: relative;
  padding: 34px;
  color: white;
  background: var(--ink);
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(16, 41, 37, 0.22);
}

.pricing-card::before {
  position: absolute;
  top: 0;
  right: 34px;
  width: 64px;
  height: 5px;
  background: var(--lime);
  border-radius: 0 0 6px 6px;
  content: "";
}

.pricing-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.pricing-card-top em {
  padding: 5px 8px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 6px;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.04em;
}

.pricing-card h3 {
  margin: 38px 0 4px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.price-placeholder {
  margin: 0;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.price-note {
  margin: 3px 0 0;
  color: #a9bdb7;
  font-size: 10px;
}

.pricing-card ul {
  display: grid;
  gap: 0;
  margin: 30px 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.pricing-card li {
  display: flex;
  align-items: center;
  min-height: 43px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: #d4e1dd;
  font-size: 11px;
}

.pricing-card li > span {
  display: grid;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  color: var(--green-dark);
  background: var(--lime);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  place-items: center;
}

.pricing-card li > em {
  margin-left: auto;
  padding: 3px 6px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 5px;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.button-full {
  width: 100%;
}

.pricing-card > small {
  display: block;
  margin-top: 13px;
  color: #91a7a0;
  font-size: 9px;
  text-align: center;
}

.faq-section {
  padding: 125px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 120px;
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-heading p {
  max-width: 340px;
  margin: 22px 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-heading > a {
  display: inline-flex;
  align-items: center;
  padding-bottom: 4px;
  color: var(--green);
  border-bottom: 1px solid var(--green);
  font-weight: 800;
}

.faq-heading > a span {
  margin-left: 18px;
}

.accordion {
  border-top: 1px solid #bbc6bf;
}

.faq-item {
  border-bottom: 1px solid #bbc6bf;
}

.faq-item button {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  padding-right: 20px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq-item button i {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid #aebbb4;
  border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item.is-open button i {
  color: white;
  background: var(--green);
  border-color: var(--green);
}

.faq-item.is-open button i::before,
.faq-item.is-open button i::after {
  background: white;
}

.faq-item.is-open button i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 52px 26px 0;
}

.final-cta {
  padding: 30px 0;
  background: var(--paper);
}

.final-cta-inner {
  position: relative;
  overflow: hidden;
  padding: 92px 50px;
  color: white;
  background: var(--green);
  border-radius: 28px;
  text-align: center;
}

.final-cta-inner::before,
.final-cta-inner::after {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.final-cta-inner::before {
  top: -130px;
  left: -90px;
}

.final-cta-inner::after {
  right: -90px;
  bottom: -130px;
}

.final-cta-signal {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  gap: 5px;
  margin-bottom: 18px;
}

.final-cta-signal i {
  display: block;
  width: 4px;
  height: 10px;
  background: var(--lime);
  border-radius: 3px;
}

.final-cta-signal i:nth-child(2),
.final-cta-signal i:nth-child(4) { height: 22px; }
.final-cta-signal i:nth-child(3) { height: 34px; }

.final-cta-inner > span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.final-cta h2 {
  margin-top: 18px;
  font-size: clamp(44px, 5vw, 68px);
}

.final-cta p {
  margin: 22px auto 0;
  color: #d1e4dd;
  font-size: 16px;
}

.final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 32px;
}

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

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--ink);
  background: white;
}

.site-footer {
  padding: 90px 0 24px;
  background: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 62px;
}

.footer-brand p {
  max-width: 380px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

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

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 12px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 12px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  color: #72827e;
  font-size: 10px;
}

.fixed-contact {
  position: fixed;
  z-index: 900;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 7px;
}

.fixed-button {
  display: flex;
  align-items: center;
  min-height: 43px;
  padding: 0 13px 0 8px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  box-shadow: 0 10px 26px rgba(16, 41, 37, 0.22);
  font-size: 10px;
  transition: transform 180ms ease;
}

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

.fixed-button > span {
  display: grid;
  width: 29px;
  height: 29px;
  margin-right: 7px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 800;
  place-items: center;
}

.fixed-button b {
  font-weight: 700;
}

.fixed-whatsapp {
  background: #138b5b;
}

.fixed-phone {
  background: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--delay, 0ms);
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(243, 111, 86, 0.38); }
  50% { box-shadow: 0 0 0 7px rgba(243, 111, 86, 0); }
}

@keyframes sound-wave {
  from { transform: scaleY(0.45); }
  to { transform: scaleY(1); }
}

@keyframes blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.96); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.03); }
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 25px;
  }

  .call-console {
    right: 0;
  }

  .note-two {
    left: -10px;
  }

  .channels-grid,
  .clarity-grid {
    gap: 60px;
  }

  .pricing-grid {
    gap: 80px;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 36px, 760px);
  }

  .nav-wrap {
    height: 72px;
  }

  .main-nav {
    position: fixed;
    z-index: 998;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 30px 24px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 20px;
  }

  .nav-cta {
    margin-left: auto;
    margin-right: 10px;
  }

  .menu-button {
    display: block;
  }

  .menu-button.is-open span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button.is-open span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero-grid,
  .promise-grid,
  .voice-grid,
  .features-heading,
  .channels-grid,
  .clarity-grid,
  .pricing-grid,
  .faq-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
  }

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

  .hero-visual {
    min-height: 610px;
  }

  .call-console {
    right: 50%;
    width: 500px;
    transform: translateX(50%) translateY(var(--parallax-y, 0px)) rotate(1.2deg);
  }

  .visual-stamp {
    right: 70px;
  }

  .note-one {
    right: 18px;
  }

  .note-two {
    left: 18px;
  }

  .sector-rail {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 25px 0;
  }

  .sector-list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
  }

  .promise-grid,
  .features-heading,
  .channels-grid,
  .clarity-grid,
  .pricing-grid,
  .faq-grid,
  .footer-main {
    gap: 48px;
  }

  .journey-strip {
    grid-template-columns: 1fr 1fr;
  }

  .journey-strip article:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .voice-grid {
    gap: 30px;
  }

  .voice-stage {
    min-height: 560px;
  }

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

  .feature-card-wide {
    grid-column: span 2;
  }

  .channels-copy {
    max-width: 680px;
  }

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

  .steps-grid article {
    min-height: 240px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
  }

  .steps-grid article:not(:last-child) {
    margin-right: 0;
    border-right: 0;
  }

  .steps-grid h3 {
    margin-top: 12px;
  }

  .step-big {
    font-size: 70px;
  }

  .dashboard-preview {
    transform: none;
  }

  .faq-heading {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 560px);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 105px;
    background-size: 44px 44px;
  }

  .hero h1 {
    font-size: clamp(43px, 13.5vw, 58px);
    letter-spacing: -0.072em;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 11px;
  }

  .hero-visual {
    min-height: 560px;
    margin: 0 -4px;
  }

  .call-console {
    top: 28px;
    width: 100%;
  }

  .visual-stamp {
    top: 9px;
    right: 8px;
  }

  .call-console-top,
  .caller-row,
  .transcript {
    padding-right: 18px;
    padding-left: 18px;
  }

  .transcript-line {
    grid-template-columns: 38px 1fr;
  }

  .call-result-grid {
    grid-template-columns: 1fr 1fr;
  }

  .call-result-grid .result-success {
    grid-column: span 2;
  }

  .floating-note {
    min-width: 220px;
  }

  .note-one {
    right: -2px;
    bottom: 10px;
  }

  .note-two {
    display: none;
  }

  .sector-list i {
    display: none;
  }

  .sector-list b {
    padding: 6px 9px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 10px;
  }

  .promise-section,
  .features-section,
  .steps-section,
  .pricing-section,
  .faq-section {
    padding: 94px 0;
  }

  .section-intro h2,
  .features-heading h2,
  .steps-heading h2,
  .channels-copy h2,
  .clarity-card h2,
  .pricing-copy h2,
  .faq-heading h2 {
    font-size: 40px;
  }

  .promise-copy p,
  .features-heading > p,
  .channels-copy p,
  .clarity-card > p,
  .pricing-copy > p {
    font-size: 15px;
  }

  .journey-strip {
    grid-template-columns: 1fr;
  }

  .journey-strip article {
    min-height: 245px;
    border-left: 1px solid var(--line);
  }

  .voice-section {
    padding-top: 94px;
  }

  .voice-copy h2 {
    font-size: 51px;
  }

  .voice-copy > p {
    font-size: 16px;
  }

  .voice-stage {
    min-height: 450px;
  }

  .ring-a {
    width: 320px;
    height: 320px;
  }

  .ring-b {
    width: 400px;
    height: 400px;
  }

  .voice-core {
    width: 250px;
    height: 250px;
  }

  .phone-glyph {
    top: 30px;
  }

  .voice-levels {
    transform: scale(0.8);
  }

  .caption-top {
    top: 58px;
    right: -7px;
  }

  .caption-bottom {
    bottom: 53px;
    left: -4px;
  }

  .voice-bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 8px;
    text-align: center;
  }

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

  .feature-card,
  .feature-card-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 390px;
    padding: 26px;
  }

  .feature-card-wide {
    min-height: 720px;
  }

  .mini-chat {
    align-self: auto;
    transform: rotate(1deg);
  }

  .channels-section,
  .clarity-section {
    padding: 88px 0;
  }

  .channel-row {
    grid-template-columns: 45px 1fr;
    min-height: 120px;
    padding: 18px;
  }

  .channel-logo {
    width: 45px;
    height: 45px;
  }

  .channel-row > em {
    grid-column: 2;
    justify-self: start;
    margin-top: 3px;
  }

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

  .dash-body {
    grid-template-columns: 42px 1fr;
    min-height: 370px;
  }

  .dash-main {
    padding: 17px 12px;
  }

  .dash-stats > div {
    padding: 9px;
  }

  .dash-stats strong {
    font-size: 20px;
  }

  .pricing-card {
    padding: 27px 22px;
  }

  .price-placeholder {
    font-size: 40px;
  }

  .faq-item button span {
    font-size: 14px;
  }

  .final-cta {
    padding: 14px 0;
  }

  .final-cta-inner {
    width: calc(100% - 20px);
    padding: 72px 22px;
  }

  .final-cta h2 {
    font-size: 42px;
  }

  .final-actions {
    flex-direction: column;
  }

  .final-actions .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 72px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    row-gap: 35px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .fixed-contact {
    right: 10px;
    bottom: 10px;
  }

  .fixed-button {
    width: 43px;
    height: 43px;
    min-height: 43px;
    padding: 0;
    justify-content: center;
  }

  .fixed-button > span {
    width: 100%;
    height: 100%;
    margin: 0;
    background: transparent;
  }

  .fixed-button b {
    display: none;
  }
}

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

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