:root {
  --teal: #12b8b8;
  --teal-deep: #008c8f;
  --teal-dark: #006f73;
  --mint: #e8faf8;
  --mint-pale: #f0fcfc;
  --canvas: #f7fbfc;
  --white: #fff;
  --navy: #071a2b;
  --slate: #5f6f82;
  --muted: #8a9aaa;
  --line: #e6eef2;
  --success: #20b486;
  --soft-success: rgba(32, 180, 134, .12);
  --warning: #ffb84d;
  --danger: #ff5d64;
  --gradient-primary: linear-gradient(135deg, #11c5c5 0%, #07979b 100%);
  --gradient-hero: linear-gradient(100deg, #fff 0%, #f8fcfd 52%, #efffff 100%);
  --shadow-subtle: 0 6px 18px rgba(7, 26, 43, .04);
  --shadow-soft: 0 14px 40px rgba(7, 26, 43, .07);
  --shadow-medium: 0 24px 70px rgba(7, 26, 43, .10);
  --shadow-strong: 0 34px 90px rgba(7, 26, 43, .14);
  --shadow-cta: 0 12px 32px rgba(18, 184, 184, .28);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1280px;
  --header-height: 76px;
  --radius-card: 20px;
  --radius-panel: 28px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.16, 1, .3, 1);
}

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

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

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection {
  color: var(--navy);
  background: rgba(18, 184, 184, .22);
}

:focus-visible {
  outline: 3px solid rgba(18, 184, 184, .35);
  outline-offset: 3px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus {
  transform: none;
}

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

.section {
  position: relative;
  padding: 96px 0;
}

.section-white {
  background: var(--white);
}

.section-mint {
  background:
    radial-gradient(circle at 8% 8%, rgba(18, 184, 184, .08), transparent 26%),
    var(--mint-pale);
}

.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 4.55vw, 66px);
  line-height: 1.06;
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 3.4vw, 50px);
  line-height: 1.1;
  letter-spacing: -.036em;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -.018em;
}

.section-heading > p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.65;
}

.section-heading .eyebrow {
  margin-bottom: 22px;
}

.section-heading.centered {
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading.centered > p {
  margin-inline: auto;
}

.section-heading.narrow {
  max-width: 850px;
}

.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  color: var(--teal-deep);
  background: var(--mint);
  border: 1px solid rgba(18, 184, 184, .18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .01em;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(32, 180, 134, .11);
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms var(--ease-out), background 180ms, box-shadow 180ms, border-color 180ms;
}

.button svg {
  width: 19px;
  height: 19px;
}

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

.button-primary {
  color: #fff;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-cta);
}

.button-primary:hover {
  box-shadow: 0 16px 40px rgba(18, 184, 184, .36);
}

.button-secondary {
  color: var(--teal-deep);
  background: rgba(255, 255, 255, .8);
  border-color: var(--teal);
}

.button-secondary:hover {
  background: var(--mint);
}

.button-quiet {
  color: var(--slate);
  background: var(--canvas);
  border-color: var(--line);
  box-shadow: none;
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  border-radius: 12px;
  font-size: 14px;
}

.button:disabled,
.button.is-loading {
  opacity: .62;
  pointer-events: none;
}

.button-pulse {
  position: relative;
}

.button-pulse::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(18, 184, 184, .42);
  border-radius: inherit;
  content: "";
  animation: pulse-ring 2.6s infinite;
  pointer-events: none;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(230, 238, 242, .78);
  backdrop-filter: blur(18px);
  transition: box-shadow 240ms, background 240ms;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-subtle);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -.025em;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5px;
  color: var(--teal);
  background: var(--mint);
  border: 1px solid rgba(18, 184, 184, .16);
  border-radius: 11px;
}

.brand-mark i {
  width: 2.5px;
  height: 12px;
  display: block;
  background: currentColor;
  border-radius: 99px;
}

.brand-mark i:nth-child(2),
.brand-mark i:nth-child(4) {
  height: 20px;
}

.brand-mark i:nth-child(3) {
  height: 26px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0 26px;
  color: var(--slate);
  font-size: 13.5px;
  font-weight: 580;
  white-space: nowrap;
  transition: color 160ms;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 99px 99px 0 0;
  content: "";
  transform: scaleX(0);
  transition: transform 220ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.desktop-nav a[aria-current="true"] {
  color: var(--teal-deep);
}

.desktop-nav a.is-active::after,
.desktop-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

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

.header-phone {
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 2.5px auto;
  background: var(--navy);
  border-radius: 99px;
  transition: transform .2s, opacity .2s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 99;
  inset: var(--header-height) 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  background: rgba(255, 255, 255, .98);
  overflow-y: auto;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav > a:not(.button) {
  padding: 14px 6px;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 78px 0 88px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 184, 184, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 184, 184, .026) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, transparent, black 58%, black);
  content: "";
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-orb-one {
  width: 430px;
  height: 430px;
  top: -180px;
  right: -80px;
  background: rgba(18, 184, 184, .09);
}

.hero-orb-two {
  width: 260px;
  height: 260px;
  right: 38%;
  bottom: -150px;
  background: rgba(18, 184, 184, .06);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 4vw, 60px);
  align-items: center;
}

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

.hero-copy .eyebrow {
  margin-bottom: 23px;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 31px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-buttons .button {
  padding-inline: 22px;
  font-size: 14px;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12.5px;
}

.micro-proof span {
  color: var(--teal-deep);
  font-weight: 750;
}

.micro-proof i {
  width: 3px;
  height: 3px;
  background: #bdcbd2;
  border-radius: 50%;
}

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

.reception-scene {
  position: absolute;
  inset: 18px 0 42px 7%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.15), transparent 42%),
    linear-gradient(145deg, #f7f3eb 0%, #fff 46%, #dff8f4 100%);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 38px;
  box-shadow: var(--shadow-strong);
}

.reception-scene::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1), transparent 48%, rgba(18, 184, 184, .08));
  content: "";
}

.reception-scene::before {
  position: absolute;
  z-index: 1;
  width: 185px;
  height: 58px;
  top: 26px;
  left: 26px;
  background:
    linear-gradient(#fff, #fff) 20px 18px / 104px 8px no-repeat,
    linear-gradient(#e8f3f2, #e8f3f2) 20px 33px / 75px 5px no-repeat,
    rgba(255,255,255,.88);
  border: 1px solid rgba(230,238,242,.9);
  border-radius: 15px;
  box-shadow: var(--shadow-subtle);
  content: "";
}

.reception-light {
  position: absolute;
  width: 180px;
  height: 180px;
  top: -90px;
  left: 24%;
  background: rgba(255, 245, 214, .9);
  border-radius: 50%;
  filter: blur(25px);
}

.reception-window {
  position: absolute;
  top: 42px;
  right: 30px;
  width: 44%;
  height: 275px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 8px;
  background: #fff;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px #e5eeee;
}

.reception-window span {
  position: relative;
  overflow: hidden;
  background: linear-gradient(#d9f4f4, #f7ffff 55%, #d5eee6);
  border-radius: 11px;
}

.reception-window span::after {
  position: absolute;
  width: 70px;
  height: 105px;
  right: -24px;
  bottom: -46px;
  background: rgba(98,167,148,.34);
  border-radius: 60% 0 0;
  content: "";
}

.reception-desk {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 0;
  width: 88%;
  height: 218px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(18,184,184,.06) 18% 19%, transparent 19%),
    linear-gradient(115deg, #fff, #e7f1ef);
  border-radius: 62px 12px 0 0;
  box-shadow: 0 -12px 35px rgba(7, 26, 43, .07);
}

.reception-desk::before {
  position: absolute;
  width: 64%;
  height: 13px;
  top: 0;
  right: 0;
  background: #fff;
  border-radius: 99px;
  content: "";
}

.reception-plant {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 168px;
  width: 100px;
  height: 150px;
}

.reception-plant b {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: 55px;
  height: 56px;
  background: #d1e5df;
  border-radius: 8px 8px 20px 20px;
}

.reception-plant i {
  position: absolute;
  right: 47px;
  bottom: 45px;
  width: 44px;
  height: 80px;
  background: #82b8a7;
  border-radius: 100% 0 100% 0;
  transform-origin: bottom right;
  transform: rotate(-22deg);
}

.reception-plant i:nth-child(2) {
  right: 14px;
  transform: scaleX(-1) rotate(-15deg);
}

.reception-plant i:nth-child(3) {
  right: 34px;
  bottom: 49px;
  height: 95px;
  background: #9bcabb;
  transform: rotate(5deg);
}

.clinic-wall-sign {
  position: absolute;
  z-index: 2;
  top: 36px;
  left: 38px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 8px;
}

.clinic-wall-sign > span {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 9px;
  font-size: 19px;
  font-weight: 500;
}

.clinic-wall-sign b {
  color: var(--navy);
  font-size: 11px;
}

.clinic-wall-sign small {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.clinic-busy-label {
  position: absolute;
  z-index: 4;
  top: 115px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  color: var(--slate);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-subtle);
  font-size: 9px;
}

.clinic-busy-label i {
  width: 7px;
  height: 7px;
  background: var(--warning);
  border-radius: 50%;
}

.clinic-busy-label b {
  color: var(--navy);
}

.reception-admin,
.reception-patient {
  position: absolute;
  z-index: 5;
  width: 92px;
  height: 187px;
}

.reception-admin {
  right: 37%;
  bottom: 138px;
}

.reception-patient {
  left: 13%;
  bottom: 106px;
  transform: scale(.92);
}

.reception-admin span,
.reception-patient span {
  position: absolute;
  top: 0;
  left: 21px;
  width: 52px;
  height: 62px;
  background: #efd3bf;
  border-radius: 45% 45% 48% 48%;
  box-shadow: inset 0 13px 0 #74594c;
}

.reception-admin b,
.reception-patient b {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 131px;
  background: #f4f8f8;
  border-radius: 45px 45px 10px 10px;
  box-shadow: inset -16px 0 0 #d9eeeb;
}

.reception-admin i {
  position: absolute;
  z-index: 1;
  width: 31px;
  height: 15px;
  top: 80px;
  left: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: inset 6px 0 0 var(--teal);
}

.reception-patient span {
  background: #d7ad91;
  box-shadow: inset 0 14px 0 #443a37;
}

.reception-patient b {
  background: #dbe4ea;
  box-shadow: inset 17px 0 0 #c3d2da;
}

.reception-patient i {
  position: absolute;
  z-index: 2;
  width: 45px;
  height: 55px;
  right: -9px;
  top: 83px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  transform: rotate(-7deg);
}

.desk-monitor {
  position: absolute;
  z-index: 6;
  right: 22%;
  bottom: 176px;
  width: 92px;
  height: 67px;
  padding: 7px;
  background: #e3ecee;
  border-radius: 9px;
  box-shadow: 0 9px 22px rgba(7,26,43,.13);
}

.desk-monitor span {
  height: 100%;
  display: block;
  background:
    linear-gradient(var(--teal),var(--teal)) 10px 13px / 35px 4px no-repeat,
    linear-gradient(#dbe7e9,#dbe7e9) 10px 25px / 55px 3px no-repeat,
    linear-gradient(#dbe7e9,#dbe7e9) 10px 34px / 43px 3px no-repeat,
    #fff;
  border-radius: 5px;
}

.desk-monitor b {
  position: absolute;
  width: 34px;
  height: 28px;
  bottom: -25px;
  left: 29px;
  border-top: 22px solid #cbd9dc;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

.desk-documents {
  position: absolute;
  z-index: 6;
  left: 28%;
  bottom: 153px;
  width: 72px;
  height: 48px;
}

.desk-documents i,
.desk-documents b {
  position: absolute;
  width: 49px;
  height: 35px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(7,26,43,.06);
}

.desk-documents i:first-child { transform: rotate(-8deg); }
.desk-documents i:nth-child(2) { left: 12px; top: 3px; transform: rotate(4deg); }
.desk-documents b { left: 22px; top: 7px; }

.scene-incoming-call {
  position: absolute;
  z-index: 8;
  left: 22px;
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  color: var(--navy);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,184,77,.35);
  border-radius: 13px;
  box-shadow: 0 13px 30px rgba(7,26,43,.12);
}

.scene-incoming-call > svg {
  width: 24px;
  height: 24px;
  padding: 5px;
  color: #a56c13;
  background: rgba(255,184,77,.16);
  border-radius: 8px;
  animation: call-shake 2.4s ease-in-out infinite;
}

.scene-incoming-call b,
.scene-incoming-call small {
  display: block;
}

.scene-incoming-call b { font-size: 9.5px; }
.scene-incoming-call small { color: var(--muted); font-size: 7.5px; }

.call-card {
  position: absolute;
  z-index: 5;
  width: min(520px, 84%);
  top: 65px;
  left: 0;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(245, 255, 254, .97));
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(7, 26, 43, .16);
  backdrop-filter: blur(16px);
}

.call-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
}

.call-card-top strong {
  display: block;
  font-size: 14px;
}

.call-card-top time {
  align-self: start;
  padding: 5px 9px;
  color: var(--slate);
  background: var(--canvas);
  border-radius: 8px;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.call-live {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  color: var(--success);
  font-size: 11px;
  font-weight: 600;
}

.call-live i {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.eva-avatar {
  position: relative;
  width: 45px;
  height: 45px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-deep);
  background: linear-gradient(145deg, #dffbf8, #fff);
  border: 1px solid rgba(18, 184, 184, .18);
  border-radius: 15px;
  font-size: 17px;
  font-weight: 800;
  box-shadow: var(--shadow-subtle);
}

.eva-avatar i {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 12px;
  height: 12px;
  background: var(--success);
  border: 3px solid #fff;
  border-radius: 50%;
}

.eva-avatar-large {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 21px;
}

.call-signal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 14px;
  padding: 10px 13px;
  background: rgba(232, 250, 248, .7);
  border: 1px solid rgba(18, 184, 184, .1);
  border-radius: 13px;
}

.call-signal > span {
  color: var(--muted);
  font-size: 10.5px;
}

.voice-wave {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.voice-wave i {
  width: 2.5px;
  height: 13px;
  display: block;
  background: var(--teal);
  border-radius: 99px;
  animation: voice-wave 1.2s ease-in-out infinite;
}

.voice-wave i:nth-child(2n) { height: 21px; animation-delay: .1s; }
.voice-wave i:nth-child(3n) { height: 9px; animation-delay: .2s; }
.voice-wave i:nth-child(4n) { height: 26px; animation-delay: .3s; }

.mini-dialog {
  display: flex;
  min-height: 166px;
  flex-direction: column;
  gap: 8px;
}

.mini-dialog p {
  max-width: 88%;
  margin: 0;
  padding: 9px 11px;
  color: var(--slate);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px 11px 11px 4px;
  font-size: 11.5px;
  line-height: 1.45;
}

.mini-dialog p b {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 10px;
}

.mini-dialog .dialog-eva {
  align-self: flex-end;
  color: var(--teal-dark);
  background: var(--mint);
  border-color: rgba(18, 184, 184, .13);
  border-radius: 11px 11px 4px;
}

[data-dialog-bubble] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 350ms var(--ease-out), transform 350ms var(--ease-out);
}

[data-dialog-bubble].is-visible {
  opacity: 1;
  transform: none;
}

.saved-lead {
  position: relative;
  margin-top: 14px;
  padding: 15px;
  background: linear-gradient(135deg, #fff, #f3fffb);
  border: 1.5px solid rgba(32, 180, 134, .38);
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(7, 26, 43, .1);
}

.saved-lead::before {
  position: absolute;
  width: 4px;
  top: 14px;
  bottom: 14px;
  left: 0;
  background: var(--success);
  border-radius: 0 99px 99px 0;
  content: "";
}

.saved-lead-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.saved-lead-head > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--success);
  background: var(--soft-success);
  border-radius: 9px;
}

.saved-lead-head svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.saved-lead-head strong,
.saved-lead-head small {
  display: block;
}

.saved-lead-head strong {
  font-size: 11.5px;
}

.saved-lead-head small {
  color: var(--muted);
  font-size: 9.5px;
}

.saved-lead-head em,
.new-badge {
  padding: 5px 8px;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 99px;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.saved-lead dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 10px 0 0;
}

.saved-lead dl div {
  min-width: 0;
}

.saved-lead dt {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 8.5px;
}

.saved-lead dd {
  margin: 0;
  overflow: hidden;
  font-size: 9.5px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saved-lead-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px solid rgba(32,180,134,.14);
}

.saved-lead-next span {
  color: var(--muted);
  font-size: 8.5px;
}

.saved-lead-next strong {
  color: #168763;
  font-size: 9.5px;
}

.hero-route {
  position: absolute;
  z-index: 9;
  right: 0;
  bottom: 3px;
  left: 4%;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(12px);
}

.hero-route > i {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(18,184,184,.2), rgba(18,184,184,.7));
}

.hero-route-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  transition: color 240ms, opacity 240ms;
}

.hero-route-step > span {
  width: 31px;
  height: 31px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--muted);
  background: var(--canvas);
  border-radius: 9px;
  transition: color 240ms, background 240ms, transform 240ms;
}

.hero-route-step svg {
  width: 15px;
  height: 15px;
}

.hero-route-step small {
  font-size: 8.5px;
  font-weight: 650;
  white-space: nowrap;
}

.hero-route-step.is-active {
  color: var(--teal-deep);
}

.hero-route-step.is-active > span {
  color: var(--teal-deep);
  background: var(--mint);
  transform: scale(1.05);
}

/* Trust and problem */
.trust-strip {
  position: relative;
  z-index: 5;
  background: #fff;
  border-block: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid article {
  min-height: 126px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

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

.trust-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.trust-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.5;
}

.mini-icon {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 14px;
}

.mini-icon svg {
  width: 21px;
  height: 21px;
}

.clinic-day-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 24px;
}

.clinic-day-timeline::before {
  position: absolute;
  top: 55px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(18,184,184,.15), var(--teal), rgba(18,184,184,.15));
  content: "";
}

.timeline-event {
  position: relative;
  padding: 0 25px 28px;
  border-right: 1px solid var(--line);
}

.timeline-event:first-child {
  padding-left: 0;
}

.timeline-event:last-child {
  padding-right: 0;
  border-right: 0;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid rgba(18,184,184,.22);
  border-radius: 50%;
  box-shadow: 0 9px 24px rgba(7,26,43,.08);
}

.timeline-marker::after {
  position: absolute;
  width: 10px;
  height: 10px;
  right: -5px;
  top: 27px;
  background: var(--teal);
  border: 3px solid #fff;
  border-radius: 50%;
  content: "";
}

.timeline-marker > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 50%;
}

.timeline-marker svg {
  width: 21px;
  height: 21px;
}

.timeline-event time {
  display: block;
  color: var(--navy);
  font-size: 27px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -.035em;
}

.timeline-event > small {
  display: block;
  margin: 5px 0 20px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.timeline-event h3 {
  min-height: 50px;
  margin-bottom: 10px;
  font-size: 17px;
}

.timeline-event p {
  min-height: 91px;
  margin-bottom: 17px;
  color: var(--slate);
  font-size: 12.5px;
  line-height: 1.6;
}

.timeline-event em {
  display: inline-flex;
  padding: 6px 9px;
  color: #8b5c14;
  background: rgba(255,184,77,.13);
  border-radius: 8px;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.timeline-event-peak .timeline-marker > span {
  color: #fff;
  background: var(--teal);
}

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

.feature-card {
  min-height: 282px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  transition: transform 240ms var(--ease-out), box-shadow 240ms, border-color 240ms;
}

.feature-card:hover {
  border-color: rgba(18, 184, 184, .28);
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.feature-card h3 {
  margin: 22px 0 11px;
}

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

.icon-circle {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 50%;
}

.icon-circle svg {
  width: 25px;
  height: 25px;
}

.problem-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 19px;
  margin-top: 22px;
  padding: 24px 28px;
  color: #fff;
  background:
    radial-gradient(circle at 83% 50%, rgba(18,184,184,.28), transparent 24%),
    linear-gradient(110deg, #071a2b, #0b3442);
  border: 1px solid rgba(18, 184, 184, .22);
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.problem-banner strong {
  display: block;
  margin-bottom: 3px;
  font-size: 18px;
}

.problem-banner p {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 13.5px;
}

.problem-banner > a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8ce9e3;
  font-size: 14px;
  font-weight: 700;
}

.problem-banner > a svg {
  width: 17px;
  height: 17px;
}

.lost-call-icon {
  position: relative;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(18,184,184,.22);
  border-radius: 16px;
  box-shadow: var(--shadow-subtle);
}

.lost-call-icon svg {
  width: 24px;
  height: 24px;
}

.lost-call-icon i {
  position: absolute;
  right: -2px;
  top: -2px;
  width: 14px;
  height: 14px;
  background: var(--warning);
  border: 3px solid var(--mint);
  border-radius: 50%;
}

/* Calculator */
.calculation-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.calculation-formula span {
  padding: 8px 10px;
  color: var(--slate);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 600;
}

.calculation-formula i {
  color: var(--muted);
  font-style: normal;
}

.calculator-card {
  padding: clamp(26px, 3.4vw, 43px);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-medium);
}

.range-field + .range-field {
  margin-top: 27px;
}

.range-field > div,
.range-field > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.range-field > div {
  margin-bottom: 14px;
}

.range-field label {
  color: var(--slate);
  font-size: 14px;
  font-weight: 600;
}

.range-field output {
  min-width: 76px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.range-field > span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
}

.range {
  width: 100%;
  height: 6px;
  display: block;
  background: linear-gradient(to right, var(--teal) var(--range-progress, 25%), #dcebed var(--range-progress, 25%));
  border-radius: 99px;
  appearance: none;
  outline: none;
}

.range::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  background: var(--teal);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(18, 184, 184, .36);
  cursor: pointer;
  appearance: none;
}

.range::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: var(--teal);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(18, 184, 184, .36);
  cursor: pointer;
}

.calc-result {
  margin-top: 33px;
  padding: 27px;
  text-align: left;
  background:
    radial-gradient(circle at 92% 15%, rgba(18,184,184,.17), transparent 28%),
    linear-gradient(135deg, #e8faf8, #f9ffff);
  border: 1px solid rgba(18, 184, 184, .18);
  border-radius: 21px;
}

.calc-result span,
.calc-result p {
  color: var(--slate);
  font-size: 12px;
}

.calc-result strong {
  display: block;
  margin: 8px 0 0;
  color: var(--teal-deep);
  font-size: clamp(43px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.055em;
  font-variant-numeric: tabular-nums;
}

.calc-result p {
  margin: 4px 0 0;
  font-weight: 650;
}

.calc-result.is-updated {
  animation: result-flash 500ms var(--ease-out);
}

.calc-return {
  margin: 15px 0 0;
  padding: 12px 14px;
  color: var(--teal-dark);
  background: #f5ffff;
  border: 1px solid rgba(18,184,184,.14);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.calc-paid-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid rgba(18,184,184,.16);
}

.calc-paid-note svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--teal-deep);
}

.calc-paid-note span {
  color: var(--slate);
  font-size: 11px;
  line-height: 1.5;
}

.calc-paid-note b {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 12px;
}

.disclaimer {
  margin: 17px 0 0;
  padding-top: 15px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 10.5px;
  line-height: 1.5;
}

/* Demo */
.demo-section {
  overflow: hidden;
}

.question-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 27px 0 25px;
}

.question-chips button {
  padding: 8px 12px;
  color: var(--slate);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 12px;
  cursor: pointer;
  transition: background 160ms, border-color 160ms, color 160ms;
}

.question-chips button:hover,
.question-chips button.is-selected {
  color: var(--teal-deep);
  background: var(--mint);
  border-color: rgba(18, 184, 184, .28);
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
}

.demo-primary-action {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.demo-call-status {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 5px;
  color: var(--slate);
  font-size: 10px;
  font-weight: 600;
}

.demo-call-status i {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(32,180,134,.1);
}

.honesty-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 24px 0 0;
  padding: 13px 15px;
  color: var(--slate);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 13px;
  font-size: 12px;
  line-height: 1.5;
}

.honesty-note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--teal-deep);
}

.honesty-note strong {
  color: var(--navy);
}

.demo-player {
  padding: clamp(27px, 3.2vw, 41px);
  background: linear-gradient(180deg, #fff, #f8ffff);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-medium);
}

.player-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.player-head strong {
  font-size: 16px;
}

.player-head p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.quality-pill {
  padding: 6px 9px;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 700;
}

.player-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 29px 0 18px;
}

.play-button,
.modal-audio > button {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gradient-primary);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-cta);
  cursor: pointer;
}

.play-button svg,
.modal-audio > button svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

.play-button.is-playing svg,
.modal-audio > button.is-playing svg {
  display: none;
}

.play-button.is-playing::before,
.modal-audio > button.is-playing::before {
  width: 14px;
  height: 18px;
  background: linear-gradient(90deg, #fff 0 35%, transparent 35% 65%, #fff 65%);
  content: "";
}

.player-wave {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  overflow: hidden;
}

.player-wave i {
  width: 4px;
  height: var(--wave-h, 22px);
  min-height: 6px;
  display: block;
  background: var(--teal);
  border-radius: 99px;
  opacity: .75;
  animation: player-wave 900ms ease-in-out infinite alternate;
}

.player-wave i:nth-child(2n) { --wave-h: 34px; animation-delay: -300ms; }
.player-wave i:nth-child(3n) { --wave-h: 16px; animation-delay: -600ms; }
.player-wave i:nth-child(4n) { --wave-h: 43px; animation-delay: -180ms; }
.player-wave i:nth-child(5n) { --wave-h: 27px; animation-delay: -480ms; }

.player-wave.is-paused i,
.player-wave[aria-busy="false"] i {
  animation-play-state: paused;
  opacity: .25;
}

.player-main time {
  color: var(--slate);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.progress-track {
  height: 4px;
  background: #dfecee;
  border-radius: 99px;
  overflow: hidden;
}

.progress-track span {
  width: 0;
  height: 100%;
  display: block;
  background: var(--teal);
  border-radius: inherit;
  transition: width .4s linear;
}

.live-caption {
  min-height: 58px;
  margin: 18px 0 20px;
  padding: 15px 17px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid rgba(18,184,184,.18);
  border-left: 4px solid var(--teal);
  border-radius: 13px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.transcript {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.transcript > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 9px 11px;
  color: var(--muted);
  border-left: 2px solid transparent;
  border-radius: 8px;
  opacity: .6;
  transition: background 220ms, color 220ms, opacity 220ms, border-color 220ms, transform 220ms;
}

.transcript > div.is-active {
  color: var(--navy);
  background: var(--mint);
  border-color: var(--teal);
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(18,184,184,.12);
  transform: translateX(3px);
}

.transcript time {
  padding-top: 2px;
  font-size: 9px;
}

.transcript p {
  margin: 0;
  font-size: 10.5px;
  line-height: 1.45;
}

.transcript b {
  margin-right: 5px;
  color: var(--navy);
}

/* Workflow and lead */
.workflow-section {
  background:
    linear-gradient(rgba(255, 255, 255, .88), rgba(255, 255, 255, .88)),
    radial-gradient(circle at center, rgba(18, 184, 184, .13), transparent 55%);
}

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

.steps-grid::before {
  position: absolute;
  z-index: 0;
  top: 56px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(18, 184, 184, .35) 0 6px, transparent 6px 13px);
  content: "";
}

.steps-grid article {
  position: relative;
  z-index: 1;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.step-number {
  position: absolute;
  top: 17px;
  right: 20px;
  color: rgba(18, 184, 184, .18);
  font-size: 30px;
  font-weight: 800;
}

.step-icon {
  width: 61px;
  height: 61px;
  display: grid;
  place-items: center;
  color: var(--teal-deep);
  background: var(--mint);
  border: 8px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(18, 184, 184, .16);
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.steps-grid h3 {
  margin: 22px 0 9px;
}

.steps-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 13.5px;
  line-height: 1.6;
}

.flow-grid {
  gap: 28px;
  align-items: stretch;
}

.flow-grid::before {
  top: 54px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, rgba(18,184,184,.16), var(--teal), rgba(18,184,184,.16));
}

.flow-grid article {
  padding: 27px 23px 24px;
  background: linear-gradient(180deg, #fff, #fbffff);
  box-shadow: 0 12px 34px rgba(7,26,43,.06);
}

.flow-grid article:not(:last-child)::after {
  position: absolute;
  z-index: 4;
  width: 30px;
  height: 30px;
  top: 39px;
  right: -30px;
  display: grid;
  place-items: center;
  color: var(--teal-deep);
  background: #fff;
  border: 1px solid rgba(18,184,184,.24);
  border-radius: 50%;
  box-shadow: var(--shadow-subtle);
  content: "→";
  font-size: 15px;
  font-weight: 700;
}

.flow-grid .step-icon {
  position: relative;
  z-index: 3;
  width: 66px;
  height: 66px;
  border-width: 7px;
}

.flow-label {
  display: inline-flex;
  margin: 20px 0 9px;
  padding: 5px 8px;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.flow-grid h3 {
  margin-top: 0;
}

.assistant-banner {
  max-width: 770px;
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 27px auto 0;
  padding: 18px 22px;
  background: var(--mint);
  border: 1px solid rgba(18, 184, 184, .16);
  border-radius: 18px;
}

.assistant-banner strong {
  display: block;
  margin-bottom: 3px;
}

.assistant-banner p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
}

.compact-list {
  margin-top: 27px !important;
}

.full-lead-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-medium);
  transition: background 250ms, border-color 250ms;
}

.full-lead-card.is-processed {
  background: linear-gradient(180deg, #fff, #f4fffb);
  border-color: rgba(32, 180, 134, .3);
}

.lead-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.lead-card-header h3 {
  margin: 11px 0 2px;
  font-size: 24px;
}

.lead-card-header a {
  color: var(--slate);
  font-size: 14px;
}

.lead-time {
  color: var(--muted);
  font-size: 11px;
}

.lead-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 22px 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.lead-details > div {
  padding: 15px 17px;
  background: #fff;
}

.lead-details .eva-comment {
  grid-column: 1 / -1;
  background: var(--mint-pale);
}

.lead-details dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
}

.lead-details dd {
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
}

.lead-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.lead-media button {
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--slate);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.lead-media button:hover {
  color: var(--teal-deep);
  background: var(--mint);
}

.lead-media svg {
  width: 18px;
  height: 18px;
}

.lead-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Dashboard */
.dashboard-section {
  background: var(--mint-pale);
  overflow: hidden;
}

.dashboard-proof-line {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: -22px auto 25px;
  padding: 13px 17px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(18,184,184,.14);
  border-radius: 15px;
}

.dashboard-proof-line > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--slate);
  font-size: 10px;
  font-weight: 650;
}

.dashboard-proof-line i {
  width: 24px;
  height: 24px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 8px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.dashboard-proof-line svg {
  width: 17px;
  height: 17px;
  color: var(--teal);
}

.dashboard-shell {
  min-height: 735px;
  display: grid;
  grid-template-columns: 94px 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 12px 17px;
  background: #0b2636;
}

.dashboard-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 10px;
}

.dashboard-logo .brand-mark {
  color: #fff;
  background: rgba(18, 184, 184, .85);
  border: 0;
}

.dashboard-sidebar nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 52px;
}

.dashboard-sidebar nav button {
  min-height: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px;
  color: rgba(255, 255, 255, .5);
  background: transparent;
  border: 0;
  border-radius: 12px;
  font-size: 8px;
}

.dashboard-sidebar nav button.is-active {
  color: #fff;
  background: rgba(18, 184, 184, .22);
}

.dashboard-sidebar nav svg {
  width: 19px;
  height: 19px;
}

.clinic-switcher {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: #fff;
}

.clinic-switcher > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #fff;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
}

.clinic-switcher p,
.clinic-switcher b,
.clinic-switcher small {
  display: block;
  margin: 0;
  font-size: 8px;
  text-align: center;
}

.clinic-switcher small {
  color: rgba(255, 255, 255, .5);
  font-weight: 400;
}

.dashboard-content {
  min-width: 0;
  padding: 34px;
  background: #f8fbfc;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dashboard-topbar span {
  color: var(--muted);
  font-size: 9px;
}

.dashboard-topbar h3 {
  margin: 3px 0 0;
  font-size: 25px;
}

.dashboard-date {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  color: var(--slate);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 10px;
}

.dashboard-date svg {
  width: 15px;
  height: 15px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 22px 0 17px;
}

.kpi-grid article {
  position: relative;
  min-width: 0;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.kpi-grid article::before {
  position: absolute;
  top: 16px;
  right: 15px;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  content: "";
}

.kpi-grid span,
.kpi-grid strong,
.kpi-grid em {
  display: block;
}

.kpi-grid span {
  min-height: 27px;
  color: var(--muted);
  font-size: 8.5px;
}

.kpi-grid strong {
  margin: 4px 0 6px;
  font-size: 27px;
  letter-spacing: -.03em;
}

.kpi-grid em {
  width: fit-content;
  padding: 3px 6px;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 99px;
  font-size: 7.5px;
  font-style: normal;
  font-weight: 700;
}

.kpi-grid em.success {
  color: #168763;
  background: var(--soft-success);
}

.dashboard-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(315px, .82fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.calls-panel {
  min-width: 0;
  border-right: 1px solid var(--line);
}

.tabs {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.tab {
  min-height: 53px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  font-size: 10px;
  font-weight: 650;
  white-space: nowrap;
  cursor: pointer;
}

.tab b {
  margin-left: 3px;
  padding: 2px 4px;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 99px;
  font-size: 7px;
}

.tab.is-active,
.tab[aria-selected="true"] {
  color: var(--teal-deep);
  border-color: var(--teal);
}

.calls-list {
  padding: 10px;
}

.call-row {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  transition: background 180ms, border-color 180ms, transform 180ms;
}

.call-row + .call-row {
  margin-top: 3px;
}

.call-row:hover {
  background: var(--canvas);
  transform: translateX(2px);
}

.call-row.is-active {
  background: var(--mint);
  border-color: rgba(18, 184, 184, .22);
}

.call-row[hidden] {
  display: none;
}

.call-avatar {
  width: 39px;
  height: 39px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-deep);
  background: #e8f8f7;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 800;
}

.call-avatar.large {
  width: 43px;
  height: 43px;
  border-radius: 12px;
  font-size: 10px;
}

.call-row b,
.call-row small {
  display: block;
}

.call-row b {
  font-size: 10.5px;
}

.call-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 400;
}

.call-row time {
  color: var(--slate);
  font-size: 9px;
  text-align: right;
}

.call-row em {
  padding: 4px 6px;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 99px;
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
}

.call-row em.done {
  color: #168763;
  background: var(--soft-success);
}

.call-row em.favorite {
  color: #a86d00;
  background: rgba(255, 184, 77, .15);
}

.call-detail {
  padding: 24px;
}

.detail-person {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.detail-person h4 {
  margin: 0 0 2px;
  font-size: 14px;
}

.detail-person a {
  color: var(--muted);
  font-size: 9.5px;
}

.detail-request {
  margin: 18px 0 12px;
  padding: 14px;
  background: var(--canvas);
  border-radius: 10px;
}

.detail-request span {
  display: block;
  color: var(--muted);
  font-size: 7.5px;
}

.detail-request strong {
  display: block;
  margin: 3px 0;
  font-size: 11.5px;
}

.detail-request p {
  margin: 0;
  color: var(--slate);
  font-size: 9px;
}

.callback-status {
  position: relative;
  padding: 13px 14px 13px 35px;
  background: linear-gradient(135deg, #e8faf8, #f7ffff);
  border: 1px solid rgba(18,184,184,.2);
  border-radius: 11px;
}

.callback-status::before {
  position: absolute;
  width: 10px;
  height: 10px;
  top: 17px;
  left: 14px;
  background: var(--teal);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(18,184,184,.12);
  content: "";
}

.callback-status span,
.callback-status strong,
.callback-status small {
  display: block;
}

.callback-status span {
  color: var(--muted);
  font-size: 7.5px;
}

.callback-status strong {
  margin: 3px 0 2px;
  color: var(--teal-dark);
  font-size: 11px;
}

.callback-status small {
  color: var(--slate);
  font-size: 8px;
}

.dashboard-audio-label {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 7.5px;
}

.dashboard-audio {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
}

.dashboard-audio button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border: 0;
  border-radius: 50%;
}

.dashboard-audio svg {
  width: 12px;
  height: 12px;
}

.dashboard-audio > div {
  height: 3px;
  background: var(--line);
  border-radius: 99px;
}

.dashboard-audio > div span {
  width: 62%;
  height: 100%;
  display: block;
  background: var(--teal);
  border-radius: inherit;
}

.dashboard-audio time {
  color: var(--muted);
  font-size: 7.5px;
}

.detail-transcript {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.detail-transcript > span {
  color: var(--muted);
  font-size: 7.5px;
}

.detail-transcript p {
  margin: 7px 0 0;
  color: var(--slate);
  font-size: 9px;
  line-height: 1.45;
}

.detail-transcript b {
  color: var(--navy);
}

.dashboard-call-button {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  color: #fff;
  background: var(--teal);
  border: 0;
  border-radius: 9px;
  font-size: 9.5px;
  font-weight: 700;
}

.dashboard-call-button svg {
  width: 13px;
  height: 13px;
}

.dashboard-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 23px;
}

.dashboard-benefits article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(18, 184, 184, .12);
  border-radius: 15px;
}

.dashboard-benefits > article > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--teal-deep);
}

.dashboard-benefits strong {
  display: block;
  font-size: 12px;
}

.dashboard-benefits p {
  margin: 2px 0 0;
  color: var(--slate);
  font-size: 9.5px;
}

/* Safety, versions, test */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.safety-grid article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 23px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 220ms var(--ease-out), border-color 220ms;
}

.safety-grid article:hover {
  border-color: rgba(18, 184, 184, .25);
  transform: translateY(-3px);
}

.safety-grid article > span {
  width: 43px;
  height: 43px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 13px;
}

.safety-grid svg {
  width: 20px;
  height: 20px;
}

.safety-grid h3 {
  margin: 1px 0 7px;
  font-size: 16px;
}

.safety-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 12.5px;
  line-height: 1.55;
}

.version-section {
  background: var(--canvas);
}

.version-grid {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-inline: auto;
}

.version-card {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.version-card.current {
  background: linear-gradient(180deg, #fff, #f3ffff);
  border-color: rgba(18, 184, 184, .32);
}

.version-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  color: var(--slate);
  background: var(--canvas);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
}

.version-card.current .version-label {
  color: var(--teal-deep);
  background: var(--mint);
}

.version-label i {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
}

.version-card h3 {
  margin: 18px 0 3px;
  font-size: 30px;
}

.version-subtitle {
  margin-bottom: 25px;
  color: var(--slate);
  font-size: 13px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--slate);
  font-size: 13px;
}

.check-list svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--teal-deep);
  stroke-width: 2.5;
}

.version-card .button {
  width: 100%;
}

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

.test-grid article {
  position: relative;
  min-height: 196px;
  padding: 27px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-subtle);
}

.test-grid article > span {
  position: absolute;
  top: 14px;
  right: 19px;
  color: rgba(18, 184, 184, .12);
  font-size: 44px;
  font-weight: 800;
}

.test-grid article::before {
  width: 31px;
  height: 4px;
  display: block;
  margin-bottom: 34px;
  background: var(--teal);
  border-radius: 99px;
  content: "";
}

.test-grid h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

.test-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 12.5px;
}

/* Report and roles */
.report-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(18, 184, 184, .08), transparent 24%),
    var(--mint-pale);
}

.report-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 26px !important;
  padding: 14px 16px;
  color: var(--navy) !important;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(18, 184, 184, .14);
  border-radius: 13px;
  font-size: 12.5px !important;
  font-weight: 600;
}

.report-guarantee svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--teal-deep);
}

.report-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-medium);
}

.report-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.report-head span {
  color: var(--muted);
  font-size: 9px;
}

.report-head h3 {
  margin: 4px 0 0;
  font-size: 20px;
}

.report-head > span {
  padding: 6px 8px;
  background: var(--canvas);
  border-radius: 8px;
}

.report-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.report-kpis article {
  padding: 14px;
  background: var(--canvas);
  border-radius: 12px;
}

.report-kpis span,
.report-kpis strong,
.report-kpis small {
  display: block;
}

.report-kpis span {
  min-height: 26px;
  color: var(--muted);
  font-size: 8px;
}

.report-kpis strong {
  margin: 4px 0;
  font-size: 25px;
}

.report-kpis small {
  color: var(--teal-deep);
  font-size: 7px;
}

.report-chart {
  height: 170px;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 7px;
  padding: 17px 12px 7px;
  background:
    repeating-linear-gradient(to bottom, #eef3f5 0 1px, transparent 1px 42px),
    #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.chart-y {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 7px;
}

.report-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-area {
  fill: url(#chart-fill);
  stroke: none;
}

.chart-line {
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.is-visible .chart-line {
  animation: draw-line 1.2s var(--ease-soft) forwards;
}

.popular-requests {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.popular-requests > span {
  color: var(--muted);
  font-size: 9px;
}

.popular-requests div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.popular-requests i {
  padding: 4px 7px;
  color: var(--slate);
  background: var(--canvas);
  border-radius: 99px;
  font-size: 7px;
  font-style: normal;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.roles-grid article {
  padding: 23px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
  transition: transform 220ms var(--ease-out), box-shadow 220ms;
}

.roles-grid article:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.roles-grid article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 17px;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 15px;
  font-size: 20px;
  font-weight: 700;
}

.roles-grid svg {
  width: 22px;
  height: 22px;
}

.roles-grid h3 {
  margin-bottom: 8px;
  font-size: 15px;
}

.roles-grid p {
  margin: 0;
  color: var(--slate);
  font-size: 11px;
  line-height: 1.55;
}

/* Pricing */
.pricing-section {
  background: var(--canvas);
}

.pricing-business-frame {
  max-width: 1030px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin: -22px auto 38px;
  padding: 20px 23px;
  background: #fff;
  border: 1px solid rgba(18,184,184,.18);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.pricing-frame-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 15px;
  font-size: 22px;
  font-weight: 800;
}

.pricing-business-frame strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.pricing-business-frame p {
  margin: 0;
  color: var(--slate);
  font-size: 11.5px;
  line-height: 1.5;
}

.pricing-business-frame a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-deep);
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.pricing-business-frame svg {
  width: 16px;
  height: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 23px;
  box-shadow: var(--shadow-soft);
  transition: transform 240ms var(--ease-out), box-shadow 240ms, border-color 240ms;
}

.price-card:hover {
  border-color: rgba(18, 184, 184, .28);
  box-shadow: var(--shadow-medium);
  transform: translateY(-6px);
}

.price-card.recommended {
  background: linear-gradient(180deg, #fff, #f5ffff);
  border: 1.5px solid var(--teal);
}

.recommended-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 6px 13px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 1px solid rgba(18,184,184,.25);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 750;
  transform: translateX(-50%);
}

.price-top {
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.price-top > span {
  color: var(--muted);
  font-size: 10px;
}

.price-top h3 {
  margin: 11px 0 16px;
  font-size: 25px;
}

.price-top p {
  margin: 0;
  color: var(--slate);
  font-size: 11px;
}

.price-top p strong {
  color: var(--navy);
  font-size: 31px;
  letter-spacing: -.04em;
}

.price-top small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
}

.price-card .check-list {
  flex: 1;
  margin: 23px 0 28px;
}

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

.roi-strip {
  max-width: 920px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 27px;
  margin: 26px auto 0;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.pricing-honesty-strip {
  background: rgba(255,255,255,.76);
  box-shadow: none;
}

.roi-strip span,
.roi-strip strong {
  display: block;
}

.roi-strip span {
  color: var(--muted);
  font-size: 9px;
}

.roi-strip strong {
  margin-top: 3px;
  font-size: 15px;
}

.roi-strip i {
  width: 1px;
  height: 31px;
  background: var(--line);
}

.roi-strip a {
  color: var(--teal-deep);
  font-size: 11px;
  font-weight: 700;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 80px;
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 120px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--teal-deep);
  font-size: 18px;
  font-weight: 750;
}

.text-link svg {
  width: 21px;
  height: 21px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-subtle);
}

.faq-trigger {
  width: 100%;
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 21px;
  text-align: left;
  background: transparent;
  border: 0;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
}

.faq-trigger::after {
  width: 29px;
  height: 29px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 9px;
  content: "+";
  font-size: 20px;
  font-weight: 400;
  transition: transform 240ms;
}

.faq-item.is-open .faq-trigger::after {
  transform: rotate(45deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 320ms var(--ease-soft);
}

.faq-content > p {
  min-height: 0;
  margin: 0;
  padding: 0 21px;
  color: var(--slate);
  overflow: hidden;
  font-size: 13px;
  line-height: 1.65;
  transition: padding 320ms var(--ease-soft);
}

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

.faq-item.is-open .faq-content > p {
  padding-bottom: 21px;
}

/* CTA and form */
.cta-section {
  color: #fff;
  background:
    radial-gradient(circle at 88% 14%, rgba(18, 184, 184, .28), transparent 24%),
    linear-gradient(135deg, #071a2b, #0b3140);
  overflow: hidden;
}

.cta-section::after {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -210px;
  bottom: -270px;
  background: rgba(18, 184, 184, .12);
  border-radius: 50%;
  content: "";
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(55px, 7vw, 100px);
  align-items: center;
}

.eyebrow-white {
  color: #a8f3ef;
  background: rgba(18, 184, 184, .12);
  border-color: rgba(18, 184, 184, .3);
}

.cta-copy h2 {
  margin-top: 23px;
  color: #fff;
}

.cta-copy > p {
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
  line-height: 1.65;
}

.guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin: 26px 0 34px;
}

.guarantees span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
}

.guarantees svg {
  width: 15px;
  height: 15px;
  color: #5ce2c2;
  stroke-width: 2.5;
}

.next-steps {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.next-steps h3 {
  margin-bottom: 17px;
  color: #fff;
  font-size: 15px;
}

.next-steps ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
}

.next-steps li span {
  width: 23px;
  height: 23px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: rgba(18, 184, 184, .22);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 700;
}

.lead-form {
  padding: clamp(28px, 3.8vw, 43px);
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-strong);
}

.form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.form-head span {
  color: var(--muted);
  font-size: 10px;
}

.form-head h3 {
  margin: 4px 0 0;
  font-size: 26px;
}

.form-head .form-price {
  padding: 8px 10px;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
}

.selected-tariff {
  margin: -10px 0 18px;
  padding: 9px 11px;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 650;
}

.selected-tariff[hidden] {
  display: none;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.field > span {
  display: block;
  margin-bottom: 7px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 650;
}

.field input {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  transition: border-color 160ms, box-shadow 160ms;
}

.field input::placeholder {
  color: #b1bdc6;
}

.field input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(18, 184, 184, .1);
}

.field input.is-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(255, 93, 100, .1);
}

.field-error {
  min-height: 0;
  display: block;
  margin-top: 5px;
  color: var(--danger);
  font-size: 10px;
}

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 9px;
  margin: 20px 0 0;
  cursor: pointer;
}

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

.checkbox > span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #cbd8dd;
  border-radius: 6px;
  transition: background 160ms, border-color 160ms;
}

.checkbox input:focus-visible + span {
  outline: 3px solid rgba(18, 184, 184, .25);
  outline-offset: 2px;
}

.checkbox input:checked + span {
  background: var(--teal);
  border-color: var(--teal);
}

.checkbox input:checked + span::after {
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  transform: translateY(-1px) rotate(-45deg);
}

.checkbox.is-error > span {
  border-color: var(--danger);
}

.checkbox small {
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.5;
}

.checkbox small a {
  color: var(--teal-dark);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(0, 111, 115, .28);
  text-underline-offset: 2px;
}

.checkbox small a:hover {
  text-decoration-color: currentColor;
}

.checkbox small a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(18, 184, 184, .2);
  outline-offset: 2px;
}

.consent-error {
  margin-top: 3px;
}

.button-submit {
  width: 100%;
  margin-top: 18px;
}

.form-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 9px;
}

.form-security svg {
  width: 13px;
  height: 13px;
  color: var(--teal-deep);
}

.form-success {
  display: none;
  padding: 40px 15px;
  text-align: center;
}

.lead-form.is-submitted .form-fields {
  display: none;
}

.lead-form.is-submitted .form-success {
  display: block;
}

.form-success > span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--success);
  background: var(--soft-success);
  border-radius: 50%;
}

.form-success > span svg {
  width: 34px;
  height: 34px;
  stroke-width: 2.4;
}

.form-success h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.form-success p {
  max-width: 420px;
  margin: 0 auto 18px;
  color: var(--slate);
}

.form-success div {
  padding: 12px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 12px;
  font-size: 11px;
}

/* Footer */
.footer {
  padding: 64px 0 24px;
  color: rgba(255, 255, 255, .66);
  background: #061520;
}

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

.footer-brand {
  color: #fff;
}

.footer-grid > div:first-child p {
  max-width: 270px;
  margin: 20px 0 12px;
  font-size: 12px;
}

.footer-grid > div:first-child > small {
  color: rgba(255, 255, 255, .4);
  font-size: 10px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-grid strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 12px;
}

.footer-grid a,
.footer-grid > div:not(:first-child) span {
  font-size: 10.5px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: 9px;
}

/* Modal */
.modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 26, 43, .48);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(6px);
  transition: opacity 220ms;
}

.modal[hidden] {
  display: none;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  padding: 38px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-strong);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(15px) scale(.98);
  transition: opacity 220ms var(--ease-soft), transform 220ms var(--ease-soft);
}

.modal.is-open .modal-panel {
  opacity: 1;
  transform: none;
}

.modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: var(--slate);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.modal-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 21px;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 18px;
}

.modal-icon svg {
  width: 28px;
  height: 28px;
}

.modal-panel h2 {
  padding-right: 30px;
  font-size: 30px;
}

.modal-panel > p {
  color: var(--slate);
}

.demo-number {
  display: block;
  margin: 24px 0;
  color: var(--teal-deep);
  font-size: clamp(27px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: -.035em;
}

.modal-prompts {
  margin-bottom: 24px;
  padding: 17px;
  background: var(--canvas);
  border-radius: 14px;
}

.modal-prompts span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 10px;
}

.modal-prompts p {
  margin: 5px 0;
  color: var(--slate);
  font-size: 12px;
}

.transcript-modal-panel {
  width: min(680px, 100%);
}

.transcript-modal-panel .eyebrow {
  margin-bottom: 17px;
}

.modal-transcript {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.modal-transcript p {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 11px;
  margin: 0;
  padding: 12px;
  background: var(--canvas);
  border-radius: 10px;
}

.modal-transcript time {
  padding-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

.modal-transcript span {
  color: var(--slate);
  font-size: 12px;
}

.modal-transcript b {
  color: var(--navy);
}

.audio-modal-panel {
  text-align: center;
}

.audio-modal-panel .modal-icon {
  margin-inline: auto;
}

.audio-modal-panel h2 {
  padding: 0;
}

.modal-audio {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  padding: 17px;
  background: var(--canvas);
  border-radius: 16px;
}

.modal-audio > button {
  width: 45px;
  height: 45px;
}

.modal-audio time {
  color: var(--slate);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

/* Reveal and motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes pulse-ring {
  0% { opacity: .65; transform: scale(1); }
  75%, 100% { opacity: 0; transform: scale(1.11); }
}

@keyframes voice-wave {
  0%, 100% { opacity: .42; transform: scaleY(.45); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes call-shake {
  0%, 86%, 100% { transform: rotate(0); }
  89% { transform: rotate(-8deg); }
  92% { transform: rotate(8deg); }
  95% { transform: rotate(-5deg); }
}

@keyframes player-wave {
  from { transform: scaleY(.45); }
  to { transform: scaleY(1); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.float-card {
  animation: float-card 6s ease-in-out infinite;
}

@keyframes result-flash {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.018); }
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

/* Responsive */
@media (max-width: 1180px) {
  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a:nth-last-child(2),
  .desktop-nav a:nth-last-child(3) {
    display: none;
  }

  .header-phone {
    display: none;
  }

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

  .call-card {
    width: 91%;
  }

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

  .clinic-day-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .clinic-day-timeline::before {
    display: none;
  }

  .timeline-event:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .timeline-event:nth-child(3) {
    padding-left: 0;
  }

  .steps-grid::before {
    display: none;
  }

  .flow-grid article::after {
    display: none !important;
  }

  .roles-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-shell {
    min-height: 610px;
  }

  .dashboard-content {
    padding: 22px;
  }

  .dashboard-workspace {
    grid-template-columns: 1fr .7fr;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 76px 0;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .split-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

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

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

  .reception-scene {
    left: 17%;
  }

  .call-card {
    width: min(520px, 76%);
    left: 7%;
  }

  .hero-route {
    left: 10%;
  }

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

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

  .calculator-card,
  .demo-player,
  .full-lead-card,
  .report-card {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }

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

  .pricing-business-frame {
    grid-template-columns: auto 1fr;
  }

  .pricing-business-frame a {
    grid-column: 2;
    justify-self: start;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 660px;
    margin-inline: auto;
  }

  .price-card.recommended {
    order: -1;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-layout .section-heading {
    position: static;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 62px 0;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(35px, 9.8vw, 43px);
  }

  h2 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .section-heading.centered {
    margin-bottom: 38px;
    text-align: left;
  }

  .section-heading.centered > p {
    margin-inline: 0;
  }

  .hero {
    min-height: auto;
    padding: 36px 0 44px;
  }

  .hero-lead,
  .section-heading > p {
    font-size: 16px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 16px;
  }

  .hero-lead {
    margin-bottom: 21px;
    line-height: 1.52;
  }

  .hero-buttons,
  .demo-actions {
    flex-direction: column;
  }

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

  .micro-proof {
    display: none;
  }

  .hero-visual {
    min-height: 0;
    display: flex;
    flex-direction: column;
    margin-top: 16px;
  }

  .reception-scene {
    display: none;
  }

  .call-card {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    order: 1;
    padding: 15px;
    animation: none;
  }

  .mini-dialog {
    min-height: 0;
    gap: 6px;
  }

  .mini-dialog p {
    padding: 7px 9px;
    font-size: 10px;
  }

  .call-signal {
    margin: 12px 0 10px;
    padding: 7px 10px;
  }

  .call-signal > span {
    display: none;
  }

  .voice-wave {
    width: 100%;
    justify-content: center;
  }

  .saved-lead {
    margin-top: 10px;
    padding: 12px;
  }

  .saved-lead-head {
    padding-bottom: 8px;
  }

  .saved-lead dl {
    margin-top: 8px;
  }

  .mini-dialog p:nth-child(2),
  .mini-dialog p:nth-child(3) {
    display: none;
  }

  .saved-lead-next {
    display: block;
    margin-top: 8px;
    padding-top: 8px;
  }

  .saved-lead-next span {
    display: none;
  }

  .saved-lead-next strong {
    display: block;
    text-align: center;
  }

  .hero-route {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    order: 2;
    margin-top: 12px;
    padding: 10px;
  }

  .hero-route-step {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .hero-route-step small {
    font-size: 7.5px;
  }

  .reception-window {
    right: 23px;
    width: 54%;
  }

  .problem-grid,
  .steps-grid,
  .safety-grid,
  .version-grid,
  .test-grid,
  .roles-grid,
  .dashboard-benefits {
    grid-template-columns: 1fr;
  }

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

  .trust-grid article,
  .trust-grid article:first-child,
  .trust-grid article:nth-child(3) {
    min-height: 74px;
    gap: 10px;
    padding: 12px 8px;
    border-right: 1px solid var(--line);
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:nth-child(2n) {
    border-right: 0;
  }

  .trust-grid article:nth-child(3),
  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .trust-grid p {
    display: none;
  }

  .trust-grid strong {
    margin: 0;
    font-size: 11px;
    line-height: 1.35;
  }

  .mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .mini-icon svg {
    width: 18px;
    height: 18px;
  }

  .clinic-day-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .timeline-event,
  .timeline-event:first-child,
  .timeline-event:nth-child(3),
  .timeline-event:last-child {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    padding: 19px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-event:last-child {
    border-bottom: 0;
  }

  .timeline-marker {
    grid-row: 1 / 6;
    width: 54px;
    height: 54px;
    margin: 0;
  }

  .timeline-marker > span {
    width: 38px;
    height: 38px;
  }

  .timeline-marker::after {
    display: none;
  }

  .timeline-event time {
    font-size: 23px;
  }

  .timeline-event > small {
    margin: 3px 0 12px;
  }

  .timeline-event h3,
  .timeline-event p {
    min-height: 0;
  }

  .timeline-event p {
    margin-bottom: 12px;
  }

  .feature-card {
    min-height: auto;
  }

  .problem-banner {
    grid-template-columns: auto 1fr;
    padding: 20px;
  }

  .problem-banner > a {
    grid-column: 2;
  }

  .calculator-card,
  .demo-player,
  .full-lead-card,
  .report-card,
  .version-card,
  .price-card {
    padding: 23px;
  }

  .calc-result {
    padding: 21px;
  }

  .calc-result strong {
    font-size: clamp(42px, 14vw, 59px);
  }

  .calculation-formula {
    display: none;
  }

  .question-chips {
    gap: 6px;
  }

  .demo-primary-action {
    width: 100%;
  }

  .player-head {
    grid-template-columns: auto 1fr;
  }

  .quality-pill {
    display: none;
  }

  .player-main {
    grid-template-columns: auto 1fr;
  }

  .player-main time {
    grid-column: 2;
    justify-self: end;
    margin-top: -12px;
  }

  .lead-details,
  .lead-media,
  .lead-actions {
    grid-template-columns: 1fr;
  }

  .lead-details .eva-comment {
    grid-column: 1;
  }

  .dashboard-shell {
    min-height: 0;
    border-radius: 22px;
  }

  .dashboard-content {
    padding: 15px;
  }

  .dashboard-proof-line {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: -12px;
  }

  .dashboard-proof-line > svg {
    display: none;
  }

  .dashboard-date {
    display: none;
  }

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

  .dashboard-workspace {
    grid-template-columns: 1fr;
  }

  .calls-panel {
    border-right: 0;
  }

  .call-detail {
    border-top: 1px solid var(--line);
  }

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

  .call-row > em {
    display: none;
  }

  .report-kpis {
    grid-template-columns: 1fr;
  }

  .report-kpis article {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .report-kpis span {
    min-height: 0;
  }

  .report-kpis strong {
    grid-row: 1 / 3;
    grid-column: 2;
  }

  .popular-requests {
    align-items: flex-start;
    flex-direction: column;
  }

  .popular-requests div {
    justify-content: flex-start;
  }

  .roi-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-business-frame {
    grid-template-columns: auto 1fr;
    margin-top: -12px;
    padding: 17px;
  }

  .pricing-business-frame a {
    grid-column: 1 / -1;
  }

  .roi-strip i {
    width: 100%;
    height: 1px;
  }

  .field-grid,
  .next-steps ol {
    grid-template-columns: 1fr;
  }

  .cta-copy {
    text-align: left;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .modal {
    padding: 12px;
  }

  .modal-panel {
    padding: 30px 21px 24px;
    border-radius: 22px;
  }

  .modal-panel h2 {
    font-size: 26px;
  }

  .modal-audio {
    grid-template-columns: auto 1fr;
  }

  .modal-audio time {
    grid-column: 2;
  }
}

/* =========================================================
   Final delivery — reviews, split close, contacts and lightbox
   ========================================================= */

.cabinet-proof {
  grid-template-columns: minmax(285px, .62fr) minmax(0, 1.78fr);
  gap: 22px;
}

.cabinet-screenshot {
  position: relative;
  width: 100%;
  min-width: 0;
  display: block;
  padding: 8px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  cursor: zoom-in;
  appearance: none;
}

.cabinet-screenshot img {
  min-height: 430px;
  max-height: 710px;
  object-fit: contain;
}

.screenshot-zoom {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: var(--teal-deep);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(18,184,184,.2);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  font-size: 9.5px;
  font-weight: 750;
  pointer-events: none;
}

.screenshot-zoom svg {
  width: 16px;
  height: 16px;
}

.reviews-section {
  background:
    radial-gradient(circle at 12% 5%, rgba(18,184,184,.08), transparent 28%),
    #fff;
}

.reviews-carousel {
  overflow: hidden;
}

.reviews-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

.reviews-toolbar > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.reviews-toolbar > div {
  display: flex;
  gap: 7px;
}

.reviews-toolbar button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--teal-deep);
  background: var(--mint);
  border: 1px solid rgba(18,184,184,.18);
  border-radius: 10px;
  cursor: pointer;
}

.reviews-toolbar button:first-child svg {
  transform: rotate(180deg);
}

.reviews-toolbar svg {
  width: 16px;
  height: 16px;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, calc((100% - 32px) / 3));
  gap: 16px;
  padding: 3px 2px 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  scrollbar-width: none;
}

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

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-proof-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid rgba(18,184,184,.4);
  border-radius: 19px;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}

.review-proof-card blockquote {
  flex: 1;
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.62;
}

.review-proof-card footer {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.review-proof-card footer strong,
.review-proof-card footer span {
  display: block;
}

.review-proof-card footer strong {
  font-size: 12px;
}

.review-proof-card footer span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9.5px;
}

.review-proof-card footer em {
  padding: 5px 8px;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 7px;
  font-size: 8.5px;
  font-style: normal;
  font-weight: 750;
}

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

.faq-list-light {
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-inline: auto;
}

.faq-list-light .faq-item {
  background: #fff;
  box-shadow: none;
}

.faq-list-light .faq-trigger {
  min-height: 58px;
  padding: 15px 17px;
  color: var(--navy);
  font-size: 12.5px;
}

.faq-list-light .faq-content > p {
  padding-inline: 17px;
  color: var(--slate);
  font-size: 11px;
}

.faq-list-light .faq-item.is-open .faq-content > p {
  padding-bottom: 16px;
}

.final-cta-section {
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(18,184,184,.24), transparent 27%),
    linear-gradient(135deg, #071a2b, #0b303e);
}

.final-cta-layout {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 54px;
  align-items: center;
}

.final-cta-copy h2 {
  max-width: 690px;
  margin: 17px 0 15px;
  color: #fff;
  font-size: clamp(36px, 3.5vw, 51px);
}

.final-cta-copy > p {
  max-width: 660px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.65;
}

.after-application-title {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 12px;
}

.after-application-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.after-application-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  font-size: 10.5px;
}

.after-application-list li:last-child {
  grid-column: 1 / -1;
}

.after-application-list span {
  width: 23px;
  height: 23px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #9beae5;
  background: rgba(18,184,184,.18);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
}

.final-lead-form {
  padding: 29px;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.final-lead-form h3 {
  margin-bottom: 5px;
  font-size: 23px;
}

.form-intro {
  margin: 0 0 20px;
  color: var(--slate);
  font-size: 11.5px;
  line-height: 1.5;
}

.final-lead-form .field-grid {
  gap: 11px;
}

.final-lead-form .field input {
  height: 48px;
  background: #fbfdfd;
  border-color: #cddcdf;
}

.form-submit-error {
  margin: 10px 0;
  padding: 10px 12px;
  color: #9c2836;
  background: #fff0f2;
  border: 1px solid #f4c7ce;
  border-radius: 9px;
  font-size: 10.5px;
  line-height: 1.45;
}

.form-submit-error a {
  color: inherit;
  font-weight: 750;
  text-decoration: underline;
}

.footer-contacts {
  padding: 48px 0 0;
  color: #fff;
  background: #061522;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr 1fr;
  gap: 60px;
  padding-bottom: 38px;
}

.footer-wordmark {
  display: inline-flex;
  align-items: baseline;
  color: #fff;
  font-size: 20px;
  font-weight: 820;
  letter-spacing: -.03em;
}

.footer-wordmark small {
  margin-left: 3px;
  color: #77dfd7;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0;
}

.footer-identity strong,
.footer-identity > span {
  display: block;
}

.footer-identity strong {
  max-width: 320px;
  margin: 14px 0 7px;
  font-size: 14px;
  line-height: 1.45;
}

.footer-identity > span {
  color: rgba(255,255,255,.5);
  font-size: 10.5px;
}

.footer-contact-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-label {
  margin-bottom: 3px;
  color: rgba(255,255,255,.42);
  font-size: 8.5px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-contact-column a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.82);
  font-size: 11.5px;
}

.footer-contact-column a:hover {
  color: #9beae5;
}

.footer-contact-column b {
  width: 25px;
  text-align: center;
  font-size: 15px;
}

.footer-contacts .footer-bottom {
  min-height: 58px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.number-copy-note {
  display: block;
  margin: -3px 0 20px;
  color: var(--teal-deep);
  font-size: 10.5px;
}

.number-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.number-modal-actions .button {
  width: 100%;
}

.mobile-call-link {
  display: none;
}

.lightbox-panel {
  width: min(1280px, 96vw);
  max-width: none;
  padding: 24px;
  border-radius: 23px;
}

.lightbox-heading {
  padding: 0 48px 16px 0;
}

.lightbox-heading > span {
  color: var(--teal-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lightbox-heading h2 {
  margin: 6px 0 0;
  font-size: 24px;
}

.lightbox-image-frame {
  max-height: 73vh;
  padding: 8px;
  overflow: auto;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.lightbox-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 9px;
}

.lightbox-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 13px;
}

.lightbox-controls button {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--teal-deep);
  background: transparent;
  border: 0;
  font-size: 10.5px;
  font-weight: 750;
  cursor: pointer;
}

.lightbox-controls button:last-child {
  justify-self: end;
}

.lightbox-controls button:first-child svg {
  transform: rotate(180deg);
}

.lightbox-controls svg {
  width: 16px;
  height: 16px;
}

.lightbox-controls > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.copy-toast {
  position: fixed;
  z-index: 200;
  right: 22px;
  bottom: 22px;
  padding: 12px 17px;
  color: #fff;
  background: #0b6d5b;
  border-radius: 11px;
  box-shadow: var(--shadow-medium);
  font-size: 11px;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms, transform 180ms;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .cabinet-proof {
    grid-template-columns: 1fr;
  }

  .cabinet-copy {
    min-height: 0;
  }

  .cabinet-screenshot img {
    min-height: 0;
  }

  .reviews-track {
    grid-auto-columns: minmax(300px, calc((100% - 16px) / 2));
  }

  .faq-list-light {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .final-cta-layout {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

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

  .footer-identity {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .reviews-toolbar > span {
    display: none;
  }

  .reviews-toolbar {
    justify-content: flex-end;
  }

  .reviews-track {
    grid-auto-columns: minmax(285px, 88%);
    margin-right: -16px;
    padding-right: 16px;
  }

  .review-proof-card {
    min-height: 265px;
    padding: 21px;
  }

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

  .after-application-list li:last-child {
    grid-column: auto;
  }

  .final-cta-layout {
    gap: 30px;
  }

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

  .final-lead-form {
    padding: 23px;
  }

  .final-lead-form .field-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-identity {
    grid-column: auto;
  }

  .footer-contacts .footer-bottom {
    min-height: 80px;
  }

  .number-modal-actions {
    grid-template-columns: 1fr;
  }

  .mobile-call-link {
    display: flex;
  }

  .lightbox-panel {
    width: 100%;
    padding: 17px;
    border-radius: 18px;
  }

  .lightbox-image-frame {
    max-height: 70vh;
    padding: 4px;
  }

  .copy-toast {
    right: 16px;
    bottom: 82px;
    left: 16px;
    text-align: center;
  }
}

/* =========================================================
   Objection-handling iteration — real audio and test clarity
   ========================================================= */

.demo-player > audio {
  display: none;
}

.audio-progress {
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
}

.audio-progress:focus-visible {
  outline: 3px solid rgba(18,184,184,.22);
  outline-offset: 5px;
}

.audio-proof-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 16px;
}

.audio-proof-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  color: var(--slate);
  background: #f7fbfc;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 9.5px;
  font-weight: 620;
  line-height: 1.35;
}

.audio-proof-list svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--teal-deep);
}

.workflow-trust-row {
  max-width: 1050px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 10px;
  margin: 17px auto 0;
}

.workflow-trust-row .workflow-note {
  max-width: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 11px 14px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  text-align: left;
}

.workflow-safety-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding: 11px 14px;
  color: var(--slate);
  background: linear-gradient(110deg, #effcf9, #fff);
  border: 1px solid rgba(18,184,184,.22);
  border-radius: 13px;
  font-size: 10.5px;
  line-height: 1.45;
}

.workflow-safety-note svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--teal-deep);
}

.workflow-safety-note strong {
  color: var(--navy);
}

.test-report-section {
  padding: 0;
  background: linear-gradient(180deg, var(--mint-pale), #fff);
}

.test-report-card {
  position: relative;
  top: 24px;
  z-index: 3;
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 28px;
  align-items: center;
  padding: 25px 28px;
  background: #fff;
  border: 1px solid rgba(18,184,184,.2);
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(7,26,43,.09);
}

.test-report-intro .eyebrow {
  margin-bottom: 9px;
}

.test-report-intro h2 {
  margin-bottom: 7px;
  font-size: clamp(25px, 2.3vw, 34px);
}

.test-report-intro p {
  margin: 0;
  color: var(--slate);
  font-size: 11px;
  line-height: 1.5;
}

.test-report-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.test-report-list li {
  min-height: 69px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  color: var(--slate);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
}

.test-report-list li:first-child,
.test-report-list li:nth-child(2) {
  background: var(--mint);
  border-color: rgba(18,184,184,.16);
}

.test-report-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--teal-deep);
}

.test-report-section + .version-section {
  padding-top: 94px;
}

.landing-final .pricing-business-frame {
  max-width: 1030px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto 32px;
}

.landing-final .pricing-business-frame a {
  grid-column: auto;
  margin-top: 0;
}

.faq-column .faq-list {
  gap: 6px;
}

.faq-column .faq-trigger {
  min-height: 49px;
  padding: 13px 16px;
  font-size: 11.5px;
  line-height: 1.35;
}

.faq-column .faq-trigger::after {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.faq-column .faq-content > p {
  padding-inline: 16px;
  font-size: 10.5px;
  line-height: 1.55;
}

.faq-column .faq-item.is-open .faq-content > p {
  padding-bottom: 14px;
}

@media (max-width: 980px) {
  .workflow-trust-row {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .test-report-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .test-report-list {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
    scrollbar-width: none;
  }

  .test-report-list::-webkit-scrollbar {
    display: none;
  }

  .landing-final .pricing-business-frame {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 720px) {
  .audio-proof-list {
    grid-template-columns: 1fr;
  }

  .audio-proof-list span {
    min-height: 43px;
  }

  .workflow-trust-row {
    gap: 7px;
    margin-top: 11px;
  }

  .workflow-trust-row .workflow-note,
  .workflow-safety-note {
    padding: 10px 12px;
    font-size: 9.5px;
  }

  .test-report-card {
    top: 18px;
    width: min(100% - 32px, var(--container));
    padding: 20px;
    border-radius: 17px;
  }

  .test-report-list {
    margin-right: -20px;
    padding-right: 20px;
  }

  .test-report-list li {
    min-height: 64px;
  }

  .test-report-section + .version-section {
    padding-top: 75px;
  }

  .landing-final .pricing-business-frame {
    grid-template-columns: auto 1fr;
  }

  .landing-final .pricing-business-frame a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 19px;
  }

  .hero-visual {
    min-height: 0;
  }

  .call-card {
    width: 100%;
    padding: 15px;
  }

  .mini-dialog p {
    font-size: 10.5px;
  }

  .saved-lead dl div:last-child {
    display: none;
  }

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

  .kpi-grid {
    gap: 7px;
  }

  .kpi-grid article {
    padding: 12px;
  }

  .tabs {
    gap: 14px;
    padding-inline: 12px;
  }

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

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

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

  [data-reveal],
  [data-dialog-bubble] {
    opacity: 1;
    transform: none;
  }

  .chart-line {
    stroke-dashoffset: 0;
  }
}

/* =========================================================
   Final conversion landing — compact eight-section edition
   ========================================================= */

.landing-final .section {
  padding: 82px 0;
}

.landing-final .section-heading.centered {
  margin-bottom: 42px;
}

.landing-final .header-account {
  color: var(--slate);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.landing-final .hero-final {
  min-height: 760px;
  padding: 64px 0 70px;
}

.landing-final .hero-final .hero-visual {
  min-height: 620px;
}

.landing-final .hero-final .reception-scene {
  bottom: 0;
}

.landing-final .hero-final .call-card {
  top: 38px;
  width: min(500px, 84%);
  padding: 20px;
}

.landing-final .hero-final .mini-dialog {
  min-height: 148px;
}

.landing-final .hero-final .saved-lead {
  margin-top: 11px;
}

.landing-final .hero-final .saved-lead-next {
  align-items: center;
}

.trust-strip-final {
  padding: 0;
}

.trust-inline {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.trust-inline > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.trust-inline svg {
  width: 18px;
  height: 18px;
  color: var(--teal-deep);
}

.problem-economy {
  background:
    radial-gradient(circle at 85% 15%, rgba(18,184,184,.07), transparent 24%),
    var(--canvas);
}

.problem-calc-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 44px;
  align-items: stretch;
}

.day-timeline-compact {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 9px 0;
}

.day-timeline-compact::before {
  position: absolute;
  width: 2px;
  top: 31px;
  bottom: 91px;
  left: 45px;
  background: linear-gradient(var(--teal), rgba(18,184,184,.12));
  content: "";
}

.day-timeline-compact article {
  position: relative;
  display: grid;
  grid-template-columns: 91px 1fr;
  gap: 15px;
  padding: 15px 0;
}

.day-timeline-compact article::before {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  top: 28px;
  left: 41px;
  background: #fff;
  border: 3px solid var(--teal);
  border-radius: 50%;
  content: "";
}

.day-timeline-compact time {
  padding-top: 3px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 780;
  letter-spacing: -.025em;
}

.day-timeline-compact article > span {
  padding: 14px 16px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.day-timeline-compact b,
.day-timeline-compact small {
  display: block;
}

.day-timeline-compact b {
  margin-bottom: 4px;
  font-size: 14px;
}

.day-timeline-compact small {
  color: var(--slate);
  font-size: 11px;
  line-height: 1.5;
}

.loss-conclusion {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 0 91px;
  padding: 15px 17px;
  color: #fff;
  background: linear-gradient(110deg, #071a2b, #0b3542);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.loss-conclusion svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #76dfd8;
}

.loss-conclusion strong {
  font-size: 12px;
  line-height: 1.45;
}

.calculator-compact {
  padding: 31px;
}

.calculator-compact > .eyebrow {
  margin-bottom: 13px;
}

.calculator-compact > h3 {
  margin-bottom: 24px;
  font-size: 25px;
}

.calculator-compact .range-field + .range-field {
  margin-top: 20px;
}

.calculator-compact .range-field > span {
  display: none;
}

.calculator-compact .calc-result {
  margin-top: 24px;
  padding: 21px 23px;
}

.calculator-compact .calc-result strong {
  font-size: clamp(41px, 4vw, 58px);
}

.calculator-compact .calc-paid-note {
  margin-top: 14px;
  padding-top: 13px;
}

.calculator-compact .calc-paid-note span {
  font-size: 10.5px;
}

.calculator-compact .calc-return {
  margin-top: 11px;
  padding: 9px 12px;
}

.calculator-compact .disclaimer {
  margin-top: 11px;
  padding-top: 11px;
}

.landing-final .demo-section {
  background: #fff;
}

.landing-final .demo-grid {
  gap: 60px;
}

.landing-final .demo-player {
  padding: 30px;
}

.landing-final .player-wave {
  height: 62px;
}

.player-end-cta {
  width: 100%;
  margin-top: 14px;
  padding: 12px 14px;
  color: var(--teal-deep);
  background: var(--mint);
  border: 1px solid rgba(18,184,184,.2);
  border-radius: 11px;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.player-end-cta[hidden] {
  display: none;
}

.workflow-final {
  background:
    radial-gradient(circle at 50% 50%, rgba(18,184,184,.07), transparent 38%),
    var(--canvas);
}

.workflow-final .flow-grid {
  gap: 22px;
}

.workflow-final .flow-grid article {
  min-height: 240px;
}

.workflow-final .flow-grid p {
  font-size: 12px;
}

.workflow-note {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 13px 17px;
  color: var(--slate);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  font-size: 12px;
  text-align: center;
}

.workflow-note strong {
  color: var(--navy);
}

.cabinet-section {
  background: var(--mint-pale);
  overflow: hidden;
}

.product-tabs {
  max-width: 1120px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 auto 18px;
  padding: 6px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(18,184,184,.12);
  border-radius: 15px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-tabs::-webkit-scrollbar {
  display: none;
}

.product-tabs button {
  min-height: 39px;
  flex: 1 0 auto;
  padding: 0 15px;
  color: var(--slate);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 10.5px;
  font-weight: 650;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms, background 180ms, border-color 180ms;
}

.product-tabs button:hover {
  color: var(--teal-deep);
  background: var(--mint);
}

.product-tabs button.is-active {
  color: #fff;
  background: var(--teal-deep);
  border-color: var(--teal-deep);
}

.cabinet-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(315px, .75fr);
  gap: 27px;
  align-items: stretch;
  transition: opacity 220ms var(--ease-soft), transform 220ms var(--ease-soft);
}

.cabinet-proof.is-switching {
  opacity: .32;
  transform: translateY(5px);
}

.cabinet-screenshot {
  min-width: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.cabinet-screenshot img {
  width: 100%;
  height: 100%;
  max-height: 610px;
  object-fit: contain;
  object-position: top center;
  background: #f8fbfc;
  border-radius: 13px;
}

.cabinet-copy {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 21px;
  box-shadow: var(--shadow-soft);
}

.product-step {
  margin-bottom: 21px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.product-step b {
  color: var(--teal-deep);
  font-size: 19px;
}

.cabinet-copy h3 {
  margin-bottom: 13px;
  font-size: 25px;
  line-height: 1.2;
}

.cabinet-copy > p:not(.cabinet-microcopy) {
  color: var(--slate);
  font-size: 13px;
  line-height: 1.6;
}

.cabinet-bullets {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 8px 0 22px;
  padding: 0;
  list-style: none;
}

.cabinet-bullets li {
  position: relative;
  padding-left: 22px;
  color: var(--slate);
  font-size: 12px;
}

.cabinet-bullets li::before {
  position: absolute;
  width: 14px;
  height: 14px;
  top: 2px;
  left: 0;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 50%;
  content: "✓";
  font-size: 9px;
  line-height: 14px;
  text-align: center;
}

.cabinet-microcopy {
  margin-top: auto;
  padding: 13px 14px;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.5;
}

.product-dots {
  display: flex;
  gap: 5px;
  margin-top: 17px;
}

.product-dots i {
  width: 20px;
  height: 3px;
  background: var(--line);
  border-radius: 99px;
  transition: width 180ms, background 180ms;
}

.product-dots i.is-active {
  width: 35px;
  background: var(--teal);
}

.landing-final .version-section {
  background: #fff;
}

.landing-final .version-grid {
  max-width: 950px;
}

.landing-final .version-card {
  padding: 31px;
}

.landing-final .pricing-section {
  background: var(--canvas);
}

.landing-final .pricing-grid {
  gap: 18px;
}

.landing-final .price-card {
  padding: 27px;
}

.landing-final .price-card .check-list {
  gap: 8px;
  margin: 20px 0 23px;
}

.pricing-proofline {
  margin: 22px 0 0;
  color: var(--slate);
  font-size: 11px;
  font-weight: 650;
  text-align: center;
}

.faq-cta-section {
  color: #fff;
  background:
    radial-gradient(circle at 90% 12%, rgba(18,184,184,.24), transparent 25%),
    linear-gradient(135deg, #071a2b, #0b303e);
}

.faq-layout-final {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 48px;
  align-items: start;
}

.faq-column .section-heading {
  margin-bottom: 24px;
}

.faq-column .section-heading h2 {
  color: #fff;
}

.faq-column .faq-list {
  gap: 8px;
}

.faq-column .faq-item {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.11);
  box-shadow: none;
}

.faq-column .faq-trigger {
  min-height: 58px;
  color: #fff;
  font-size: 13px;
}

.faq-column .faq-trigger::after {
  color: #9beae5;
  background: rgba(18,184,184,.18);
}

.faq-column .faq-content > p {
  color: rgba(255,255,255,.65);
  font-size: 11.5px;
}

.final-cta-card {
  padding: 36px;
  color: var(--navy);
  background: #fff;
  border-radius: 27px;
  box-shadow: var(--shadow-strong);
}

.final-cta-card > h2 {
  margin: 18px 0 13px;
  font-size: clamp(31px, 3vw, 43px);
}

.final-cta-card > p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}

.cta-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 21px 0 25px;
  padding: 0;
  list-style: none;
}

.cta-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  color: var(--slate);
  background: var(--canvas);
  border-radius: 10px;
  font-size: 10.5px;
}

.cta-steps li span {
  width: 22px;
  height: 22px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
}

.compact-lead-form {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.compact-lead-form .field input {
  height: 50px;
}

.compact-lead-form .form-success {
  padding: 26px 10px;
}

.footer-final {
  padding: 0;
}

.footer-final .footer-bottom {
  min-height: 68px;
  align-items: center;
  margin-top: 0;
  padding-top: 0;
  border: 0;
}

.footer-final a {
  color: #fff;
}

.sticky-mobile-cta {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: 14px;
  left: 16px;
  min-height: 52px;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--gradient-primary);
  border-radius: 14px;
  box-shadow: var(--shadow-cta);
  font-size: 14px;
  font-weight: 750;
  transition: opacity 180ms, transform 180ms;
}

.sticky-mobile-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

@media (max-width: 1180px) {
  .landing-final .header-account {
    display: none;
  }

  .problem-calc-grid {
    gap: 30px;
  }

  .cabinet-proof {
    grid-template-columns: 1.35fr .75fr;
  }

  .cabinet-copy {
    padding: 24px;
  }
}

@media (max-width: 980px) {
  .landing-final .section {
    padding: 68px 0;
  }

  .problem-calc-grid,
  .faq-layout-final {
    grid-template-columns: 1fr;
  }

  .problem-calc-grid {
    max-width: 760px;
    margin-inline: auto;
  }

  .cabinet-proof {
    grid-template-columns: 1fr;
  }

  .cabinet-screenshot img {
    max-height: none;
  }

  .cabinet-copy {
    min-height: 370px;
  }

  .faq-layout-final {
    gap: 36px;
  }
}

@media (max-width: 720px) {
  .landing-final {
    padding-bottom: 74px;
  }

  .landing-final .section {
    padding: 55px 0;
  }

  .landing-final .hero-final {
    padding: 34px 0 42px;
  }

  .landing-final .hero-final .hero-visual {
    min-height: 0;
  }

  .landing-final .hero-final .call-card {
    top: auto;
    width: 100%;
  }

  .trust-inline {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .trust-inline > span {
    min-height: 54px;
    padding: 9px 5px;
    border-bottom: 1px solid var(--line);
    font-size: 9.5px;
    white-space: normal;
  }

  .trust-inline > span:nth-child(2n) {
    padding-left: 12px;
    border-left: 1px solid var(--line);
  }

  .trust-inline > span:last-child {
    grid-column: 1 / -1;
    justify-content: center;
    border-bottom: 0;
  }

  .day-timeline-compact::before {
    left: 34px;
  }

  .day-timeline-compact article {
    grid-template-columns: 70px 1fr;
  }

  .day-timeline-compact article::before {
    left: 30px;
  }

  .day-timeline-compact time {
    font-size: 14px;
  }

  .loss-conclusion {
    margin-left: 70px;
  }

  .calculator-compact {
    padding: 22px;
  }

  .calculator-compact > h3 {
    font-size: 22px;
  }

  .landing-final .demo-grid {
    gap: 30px;
  }

  .landing-final .demo-player {
    padding: 22px;
  }

  .workflow-final .flow-grid article {
    min-height: auto;
  }

  .product-tabs {
    justify-content: flex-start;
    margin-inline: -16px;
    padding-inline: 16px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .product-tabs button {
    flex: 0 0 auto;
    background: #fff;
    border-color: var(--line);
  }

  .cabinet-screenshot {
    padding: 6px;
    border-radius: 16px;
  }

  .cabinet-screenshot img {
    border-radius: 10px;
  }

  .cabinet-copy {
    min-height: 0;
    padding: 22px;
  }

  .cabinet-copy h3 {
    font-size: 22px;
  }

  .landing-final .pricing-business-frame {
    grid-template-columns: auto 1fr;
  }

  .landing-final .pricing-business-frame a {
    grid-column: 1 / -1;
  }

  .faq-cta-section {
    padding-bottom: 42px !important;
  }

  .final-cta-card {
    padding: 24px;
  }

  .final-cta-card > h2 {
    font-size: 31px;
  }

  .cta-steps,
  .compact-lead-form .field-grid {
    grid-template-columns: 1fr;
  }

  .footer-final .footer-bottom {
    min-height: 96px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    text-align: center;
  }

  .sticky-mobile-cta {
    display: flex;
  }
}

@media (max-width: 430px) {
  .day-timeline-compact article {
    grid-template-columns: 62px 1fr;
    gap: 9px;
  }

  .day-timeline-compact::before {
    left: 28px;
  }

  .day-timeline-compact article::before {
    left: 24px;
  }

  .loss-conclusion {
    margin-left: 0;
  }

  .cabinet-copy {
    padding: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cabinet-proof,
  .sticky-mobile-cta {
    transition: none;
  }
}

/* =========================================================
   Final polish pass — stronger hierarchy and product proof
   ========================================================= */

.landing-final .hero-final {
  min-height: 730px;
  padding: 54px 0 62px;
}

.landing-final .hero-copy h1 {
  max-width: 720px;
  margin-bottom: 21px;
  font-size: clamp(49px, 4.65vw, 70px);
  font-weight: 820;
  line-height: .99;
  letter-spacing: -.057em;
}

.landing-final .hero-final .hero-lead {
  max-width: 610px;
  margin-bottom: 20px;
}

.hero-proof-route {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 0 22px;
  padding: 8px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(18,184,184,.16);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(7,26,43,.045);
  list-style: none;
}

.hero-proof-route li {
  position: relative;
  min-width: 0;
  padding: 7px 12px;
  color: var(--slate);
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-proof-route li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -4px;
  color: var(--teal);
  content: "→";
  font-size: 12px;
  transform: translateY(-50%);
}

.hero-proof-route li:nth-child(3) {
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 9px;
}

.hero-proof-route li span {
  display: block;
  margin-bottom: 2px;
  color: var(--teal-deep);
  font-size: 8px;
  letter-spacing: .08em;
}

.landing-final .hero-final .hero-visual {
  min-height: 600px;
}

.landing-final .hero-final .call-card {
  width: min(550px, 94%);
  top: 20px;
  left: -10px;
  padding: 22px;
  border: 1px solid rgba(18,184,184,.14);
  box-shadow: 0 34px 90px rgba(7,26,43,.19);
}

.landing-final .hero-final .mini-dialog {
  min-height: 142px;
}

.landing-final .hero-final .mini-dialog p {
  font-size: 11px;
}

.landing-final .hero-final .saved-lead {
  margin-top: 13px;
  padding: 18px;
  background:
    radial-gradient(circle at 92% 12%, rgba(32,180,134,.15), transparent 28%),
    linear-gradient(135deg, #fff, #edfff8);
  border: 2px solid rgba(32,180,134,.48);
  box-shadow: 0 20px 45px rgba(18,115,92,.15);
}

.landing-final .hero-final .saved-lead::before {
  width: 5px;
}

.landing-final .hero-final .saved-lead-head > span {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.landing-final .hero-final .saved-lead-head strong {
  color: #0f765d;
  font-size: 16px;
  letter-spacing: -.02em;
}

.landing-final .hero-final .saved-lead-head small {
  margin-top: 2px;
  font-size: 9.5px;
}

.landing-final .hero-final .saved-lead dd {
  font-size: 10.5px;
}

.landing-final .hero-final .saved-lead-next strong {
  padding: 5px 8px;
  background: var(--soft-success);
  border-radius: 7px;
  font-size: 10px;
}

.trust-inline {
  min-height: 54px;
  gap: 16px;
}

.trust-inline > span {
  font-size: 10px;
}

.trust-inline svg {
  width: 16px;
  height: 16px;
}

.calculator-compact .calc-paid-note {
  align-items: flex-start;
  color: var(--navy);
  background: rgba(255,255,255,.48);
}

.calculator-compact .calc-paid-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 11px;
}

.calculator-compact .disclaimer {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 650;
}

.landing-final .demo-actions {
  align-items: stretch;
}

.landing-final .demo-primary-action {
  flex: 1 1 290px;
}

.landing-final .demo-primary-action .button {
  width: 100%;
  min-height: 56px;
  box-shadow: var(--shadow-cta);
}

.landing-final .demo-actions > .button-secondary {
  align-self: flex-start;
}

.landing-final .demo-player {
  background:
    radial-gradient(circle at 90% 3%, rgba(18,184,184,.11), transparent 28%),
    #fff;
  border-color: rgba(18,184,184,.19);
  box-shadow: 0 24px 65px rgba(7,26,43,.1);
}

.landing-final .player-main {
  padding: 5px 0;
}

.landing-final .player-wave {
  height: 78px;
  gap: 4px;
}

.landing-final .player-wave i {
  width: 5px;
  background: linear-gradient(180deg, #14c7c0, #078d8c);
  opacity: .88;
}

.landing-final .player-wave.is-paused i {
  opacity: .3;
}

.landing-final .transcript {
  gap: 5px;
}

.landing-final .transcript > div {
  min-height: 41px;
  align-items: center;
  padding: 9px 12px;
  background: #f8fbfc;
  border: 1px solid transparent;
  border-left-width: 3px;
  opacity: .68;
}

.landing-final .transcript > div.is-active {
  background: linear-gradient(90deg, var(--mint), #f8fffe);
  border-color: rgba(18,184,184,.18);
  box-shadow: 0 8px 20px rgba(18,115,92,.08);
  transform: translateX(5px);
}

.landing-final .transcript > div.is-active b {
  color: var(--teal-deep);
}

.player-end-cta {
  min-height: 48px;
  color: #fff;
  background: var(--gradient-primary);
  border: 0;
  box-shadow: var(--shadow-cta);
  font-size: 13px;
}

.demo-player.is-complete .player-end-cta {
  animation: proof-pop 340ms var(--ease-out);
}

@keyframes proof-pop {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to { opacity: 1; transform: none; }
}

.workflow-final .flow-grid {
  gap: 25px;
}

.workflow-final .flow-grid::before {
  right: 8%;
  left: 8%;
  height: 3px;
  background: linear-gradient(90deg, rgba(18,184,184,.12), var(--teal) 28%, var(--teal) 72%, rgba(18,184,184,.12));
}

.workflow-final .flow-grid article {
  min-height: 220px;
  padding: 23px 21px 21px;
  border-top: 3px solid rgba(18,184,184,.32);
}

.workflow-final .flow-grid article:last-child {
  border-top-color: var(--success);
  background: linear-gradient(180deg, #fff, #f2fff9);
}

.workflow-final .flow-grid article:not(:last-child)::after {
  right: -29px;
  color: #fff;
  background: var(--teal-deep);
  border-color: var(--teal-deep);
}

.workflow-note {
  margin-top: 18px;
  padding: 9px 14px;
  background: transparent;
  border: 0;
  font-size: 11px;
}

.product-tabs {
  max-width: 1180px;
  margin-bottom: 20px;
  padding: 5px;
}

.product-tabs button {
  min-height: 42px;
  font-size: 11px;
}

.product-tabs button.is-active {
  box-shadow: 0 9px 20px rgba(8,132,132,.2);
}

.cabinet-proof {
  grid-template-columns: minmax(0, 1.82fr) minmax(290px, .62fr);
  gap: 20px;
}

.cabinet-proof.is-switching {
  opacity: .18;
  transform: translateY(8px);
}

.cabinet-screenshot {
  padding: 8px;
}

.cabinet-screenshot img {
  max-height: 660px;
}

.cabinet-copy {
  padding: 25px;
}

.product-step {
  margin-bottom: 15px;
}

.cabinet-copy h3 {
  margin-bottom: 18px;
  font-size: 23px;
}

.product-explanation {
  margin-bottom: 13px;
}

.product-explanation > span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-deep);
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.product-explanation > p {
  margin: 0;
  color: var(--slate);
  font-size: 11.5px;
  line-height: 1.5;
}

.cabinet-bullets {
  gap: 7px;
  margin: 4px 0 17px;
}

.cabinet-bullets li {
  font-size: 11.5px;
}

.cabinet-microcopy {
  padding: 12px 13px;
  border-left: 3px solid var(--teal);
}

.landing-final .version-section {
  padding-top: 68px;
  padding-bottom: 68px;
}

.landing-final .version-section .section-heading.centered {
  margin-bottom: 30px;
}

.landing-final .version-grid {
  position: relative;
  max-width: 980px;
  gap: 18px;
}

.landing-final .version-grid::after {
  position: absolute;
  z-index: 4;
  width: 34px;
  height: 34px;
  top: 48%;
  left: 50%;
  display: grid;
  place-items: center;
  color: var(--teal-deep);
  background: #fff;
  border: 1px solid rgba(18,184,184,.25);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  content: "→";
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.landing-final .version-card {
  padding: 25px;
}

.landing-final .version-card.current {
  border-width: 2px;
  box-shadow: 0 18px 45px rgba(18,115,92,.1);
}

.landing-final .version-card h3 {
  margin-top: 13px;
  font-size: 27px;
}

.landing-final .version-subtitle {
  margin-bottom: 17px;
}

.landing-final .version-card .check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin-bottom: 19px;
}

.landing-final .version-card .check-list li {
  font-size: 11px;
}

.landing-final .pricing-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.landing-final .pricing-section .section-heading.centered {
  margin-bottom: 31px;
}

.pricing-proof-grid {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 32px;
}

.landing-final .pricing-business-frame {
  max-width: none;
  grid-template-columns: auto 1fr;
  align-content: center;
  margin: 0;
  padding: 23px;
}

.landing-final .pricing-business-frame a {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.reviews-panel {
  min-width: 0;
  padding: 22px 24px 15px;
  background: #fff;
  border: 1px solid rgba(18,184,184,.18);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.reviews-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.reviews-heading .eyebrow {
  margin-bottom: 7px;
}

.reviews-heading h3 {
  margin-bottom: 3px;
  font-size: 20px;
}

.reviews-heading p {
  margin: 0;
  color: var(--slate);
  font-size: 10.5px;
}

.review-controls {
  display: flex;
  gap: 7px;
}

.review-controls button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--teal-deep);
  background: var(--mint);
  border: 1px solid rgba(18,184,184,.18);
  border-radius: 10px;
  cursor: pointer;
}

.review-controls button:first-child svg {
  transform: rotate(180deg);
}

.review-controls svg {
  width: 15px;
  height: 15px;
}

.reviews-stage {
  min-height: 146px;
  display: grid;
  align-items: center;
}

.review-card {
  padding: 15px 0 12px;
}

.review-card.is-active {
  animation: review-in 260ms var(--ease-out);
}

.review-stars {
  margin-bottom: 7px;
  color: #e6a425;
  font-size: 12px;
  letter-spacing: .08em;
}

.review-card blockquote {
  margin: 0;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 570;
  line-height: 1.55;
}

.review-card footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin-top: 12px;
}

.review-card footer strong,
.review-card footer span {
  display: block;
}

.review-card footer strong {
  font-size: 11px;
}

.review-card footer span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9.5px;
}

.review-card footer em {
  padding: 5px 8px;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 7px;
  font-size: 8.5px;
  font-style: normal;
  font-weight: 750;
  white-space: nowrap;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.review-footer small {
  color: var(--muted);
  font-size: 8px;
  text-align: right;
}

.review-dots {
  display: flex;
  gap: 5px;
}

.review-dots button {
  width: 16px;
  height: 4px;
  padding: 0;
  background: var(--line);
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  transition: width 180ms, background 180ms;
}

.review-dots button.is-active {
  width: 28px;
  background: var(--teal);
}

@keyframes review-in {
  from { opacity: 0; transform: translateX(9px); }
  to { opacity: 1; transform: none; }
}

.landing-final .price-card {
  padding: 24px;
}

.landing-final .price-top {
  padding-bottom: 18px;
}

.landing-final .price-card .check-list {
  margin: 17px 0 20px;
}

.faq-column .faq-trigger {
  color: rgba(255,255,255,.96);
}

.faq-column .faq-content > p {
  color: rgba(255,255,255,.78);
}

.final-cta-card {
  border: 1px solid rgba(255,255,255,.85);
}

.compact-lead-form .field-wide {
  grid-column: 1 / -1;
}

.compact-lead-form .field input {
  background: #fbfdfd;
  border-color: #cddcdf;
}

.compact-lead-form .button-submit {
  min-height: 54px;
  box-shadow: var(--shadow-cta);
}

@media (max-width: 1180px) {
  .landing-final .hero-copy h1 {
    font-size: clamp(47px, 5.2vw, 62px);
  }

  .cabinet-proof {
    grid-template-columns: minmax(0, 1.55fr) minmax(285px, .65fr);
  }
}

@media (max-width: 980px) {
  .hero-proof-route {
    max-width: 680px;
  }

  .pricing-proof-grid {
    grid-template-columns: 1fr;
  }

  .landing-final .pricing-business-frame {
    grid-template-columns: auto 1fr auto;
  }

  .landing-final .pricing-business-frame a {
    grid-column: auto;
    margin-top: 0;
  }

  .landing-final .version-grid::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .landing-final .hero-copy h1 {
    font-size: clamp(39px, 11vw, 48px);
    line-height: 1.01;
  }

  .hero-proof-route {
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-bottom: 18px;
  }

  .hero-proof-route li {
    padding: 7px 9px;
  }

  .hero-proof-route li:not(:last-child)::after {
    display: none;
  }

  .landing-final .hero-final .call-card {
    left: auto;
    padding: 16px;
  }

  .landing-final .hero-final .saved-lead {
    padding: 14px;
  }

  .landing-final .hero-final .saved-lead-head strong {
    font-size: 14px;
  }

  .trust-strip-final {
    overflow: hidden;
  }

  .trust-inline {
    min-height: 46px;
    display: flex;
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .trust-inline::-webkit-scrollbar {
    display: none;
  }

  .trust-inline > span,
  .trust-inline > span:nth-child(2n),
  .trust-inline > span:last-child {
    min-height: 46px;
    flex: 0 0 auto;
    padding: 0 12px;
    border: 0;
    border-right: 1px solid var(--line);
    font-size: 9px;
    white-space: nowrap;
  }

  .landing-final .player-wave {
    height: 68px;
  }

  .workflow-final .flow-grid {
    gap: 13px;
  }

  .workflow-final .flow-grid::before,
  .workflow-final .flow-grid article:not(:last-child)::after {
    display: none;
  }

  .product-tabs button {
    min-height: 40px;
  }

  .cabinet-copy {
    padding: 20px;
  }

  .landing-final .version-card .check-list {
    grid-template-columns: 1fr;
  }

  .landing-final .pricing-business-frame {
    grid-template-columns: auto 1fr;
  }

  .landing-final .pricing-business-frame a {
    grid-column: 1 / -1;
  }

  .reviews-panel {
    padding: 19px 18px 14px;
  }

  .reviews-heading h3 {
    font-size: 18px;
  }

  .reviews-stage {
    min-height: 205px;
  }

  .review-card blockquote {
    font-size: 12px;
  }

  .review-card footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .review-footer small {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-card.is-active,
  .demo-player.is-complete .player-end-cta {
    animation: none;
  }
}

@media (min-width: 860px) and (max-width: 980px) {
  .landing-final .hero-final {
    min-height: 710px;
    padding-top: 48px;
  }

  .landing-final .hero-final .hero-grid {
    grid-template-columns: .93fr 1.07fr;
    gap: 26px;
  }

  .landing-final .hero-copy h1 {
    font-size: 44px;
  }

  .landing-final .hero-buttons {
    gap: 8px;
  }

  .landing-final .hero-buttons .button {
    min-height: 50px;
    padding-inline: 13px;
    font-size: 10.5px;
    white-space: nowrap;
  }

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

  .landing-final .hero-final .reception-scene {
    left: 6%;
  }

  .landing-final .hero-final .call-card {
    width: 100%;
    left: 0;
    padding: 18px;
  }

  .hero-proof-route li {
    padding-inline: 7px;
    font-size: 8.5px;
  }

  .problem-calc-grid,
  .landing-final .demo-grid,
  .faq-layout-final {
    max-width: none;
    grid-template-columns: .9fr 1.1fr;
  }

  .landing-final .demo-grid {
    gap: 32px;
  }

  .pricing-proof-grid {
    grid-template-columns: .68fr 1.32fr;
  }

  .landing-final .pricing-business-frame {
    grid-template-columns: auto 1fr;
  }

  .landing-final .pricing-business-frame a {
    grid-column: 1 / -1;
  }

  .landing-final .pricing-grid {
    max-width: none;
    grid-template-columns: repeat(3, 1fr);
  }

  .landing-final .price-card.recommended {
    order: 0;
  }

  .landing-final .price-card {
    padding: 20px 18px;
  }

  .landing-final .price-card .check-list li {
    font-size: 11px;
  }

  .faq-layout-final {
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .landing-final .hero-final {
    padding: 27px 0 32px;
  }

  .landing-final .hero-copy .eyebrow {
    margin-bottom: 12px;
    padding: 7px 9px;
    font-size: 9px;
  }

  .landing-final .hero-copy h1 {
    margin-bottom: 15px;
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1;
  }

  .landing-final .hero-final .hero-lead {
    margin-bottom: 15px;
    font-size: 14.5px;
    line-height: 1.45;
  }

  .hero-proof-route {
    grid-template-columns: repeat(4, minmax(76px, 1fr));
    gap: 0;
    margin: 0 -3px 15px;
    padding: 5px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hero-proof-route::-webkit-scrollbar {
    display: none;
  }

  .hero-proof-route li {
    padding: 6px 7px;
    font-size: 7.8px;
  }

  .hero-proof-route li span {
    font-size: 7px;
  }

  .landing-final .hero-buttons {
    gap: 7px;
  }

  .landing-final .hero-buttons .button {
    min-height: 48px;
  }

  .landing-final .hero-buttons .button-secondary {
    min-height: 42px;
    font-size: 11px;
  }

  .landing-final .hero-visual {
    margin-top: 11px;
  }

  .landing-final .hero-final .hero-grid {
    gap: 14px;
  }

  .landing-final .hero-final .hero-visual {
    min-height: 0;
  }

  .landing-final .hero-final .call-card {
    padding: 13px;
  }

  .landing-final .hero-final .call-card-top {
    gap: 9px;
  }

  .landing-final .hero-final .call-signal {
    margin: 9px 0 8px;
  }

  .landing-final .hero-final .mini-dialog {
    min-height: 0;
    gap: 5px;
  }

  .landing-final .hero-final .mini-dialog p {
    padding: 6px 8px;
    font-size: 9px;
  }

  .landing-final .hero-final .saved-lead {
    margin-top: 8px;
    padding: 12px;
  }

  .landing-final .hero-final .saved-lead-head {
    padding-bottom: 7px;
  }

  .landing-final .hero-final .saved-lead-head > span {
    width: 32px;
    height: 32px;
  }

  .landing-final .hero-final .saved-lead-head small {
    display: none;
  }

  .landing-final .hero-final .saved-lead dl {
    gap: 5px;
    margin-top: 7px;
  }

  .landing-final .hero-final .saved-lead-next {
    margin-top: 7px;
    padding-top: 7px;
  }

  .landing-final .section {
    padding: 48px 0;
  }

  .landing-final .section-heading.centered {
    margin-bottom: 30px;
  }

  .workflow-final .flow-grid article {
    min-height: 0;
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 13px;
    padding: 15px 16px;
  }

  .workflow-final .flow-grid .step-icon {
    width: 50px;
    height: 50px;
    grid-row: 1 / 4;
    border-width: 5px;
  }

  .workflow-final .flow-grid .step-number {
    display: none;
  }

  .workflow-final .flow-grid .flow-label {
    margin: 0 0 5px;
    justify-self: start;
  }

  .workflow-final .flow-grid h3 {
    margin: 0 0 4px;
    font-size: 17px;
  }

  .workflow-final .flow-grid p {
    font-size: 10.5px;
    line-height: 1.45;
  }

  .workflow-note {
    margin-top: 10px;
    line-height: 1.45;
  }
}

/* Final cascade lock */
.cabinet-proof {
  grid-template-columns: minmax(285px, .62fr) minmax(0, 1.78fr);
  gap: 22px;
}

.cabinet-screenshot img {
  min-height: 430px;
  max-height: 710px;
}

.footer-contacts {
  padding: 48px 0 0;
}

@media (max-width: 859px) {
  .cabinet-proof {
    grid-template-columns: 1fr;
  }

  .cabinet-screenshot img {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .footer-contacts {
    padding-top: 40px;
  }
}

/* Demo recordings selector */
.demo-recordings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 22px;
  padding: 6px;
  background: #f3f8f9;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.demo-recording {
  min-width: 0;
  min-height: 70px;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 10px;
  color: var(--navy);
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition:
    color 180ms var(--ease-out),
    background 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.demo-recording:hover {
  background: rgba(255,255,255,.72);
  border-color: rgba(18,184,184,.13);
}

.demo-recording.is-active {
  color: var(--teal-dark);
  background: #fff;
  border-color: rgba(18,184,184,.28);
  box-shadow: 0 8px 20px rgba(7,26,43,.07);
  transform: translateY(-1px);
}

.demo-recording:focus-visible {
  outline: 3px solid rgba(18,184,184,.22);
  outline-offset: 2px;
}

.demo-recording-index {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--teal-deep);
  background: var(--mint);
  border-radius: 9px;
  font-size: 9px;
  font-weight: 800;
}

.demo-recording.is-active .demo-recording-index {
  color: #fff;
  background: var(--teal-deep);
}

.demo-recording > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.demo-recording strong,
.demo-recording small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-recording strong {
  font-size: 10px;
  line-height: 1.25;
}

.demo-recording small {
  color: var(--muted);
  font-size: 8.5px;
}

.demo-recording time {
  color: var(--muted);
  font-size: 8.5px;
  font-variant-numeric: tabular-nums;
}

.demo-recording.is-active time {
  color: var(--teal-deep);
}

@media (max-width: 720px) {
  .demo-recordings {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .demo-recordings::-webkit-scrollbar {
    display: none;
  }

  .demo-recording {
    min-width: 214px;
    flex: 0 0 214px;
    scroll-snap-align: start;
  }

  .landing-final .demo-player {
    padding: 20px;
  }
}

/* Keep the reviews and pricing sections visually separate. */
.landing-final .reviews-section {
  padding-bottom: 98px;
}

.landing-final .pricing-section {
  padding-top: 90px;
}

@media (max-width: 720px) {
  .landing-final .reviews-section {
    padding-bottom: 64px;
  }

  .landing-final .pricing-section {
    padding-top: 64px;
  }
}
