:root {
  --bg: #050806;
  --bg-soft: #080d0a;
  --panel: #0b110d;
  --panel-2: #0e1611;
  --panel-3: #121c16;
  --line: rgba(188, 225, 204, 0.13);
  --line-strong: rgba(188, 225, 204, 0.24);
  --text: #f2f7f3;
  --muted: #9aaba0;
  --muted-2: #718078;
  --green: #52f5a2;
  --green-2: #2dcc7c;
  --green-dark: #102f20;
  --danger: #ff6f75;
  --warning: #f6bf68;
  --blue: #69aefc;
  --purple: #ad8cff;
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-mono: "Space Mono", monospace;
  --max: 1220px;
  --radius: 18px;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html {
    overflow-x: clip;
  }
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% -10%, rgba(50, 195, 119, 0.1), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.drawer-open,
body.demo-expanded {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

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

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

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

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(5, 8, 6, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 48px), 1360px);
  height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font: 700 15px/1 var(--font-mono);
  letter-spacing: 0.06em;
}

.brand-fallback {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 180px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
}

.brand-logo[hidden],
.brand-fallback[hidden] {
  display: none;
}

.brand-mark {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1px solid var(--green);
  transform: rotate(45deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--green);
}

.brand-dot {
  color: var(--green);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 1px;
  background: var(--green);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.desktop-nav a.is-active {
  color: var(--text);
}

.desktop-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.desktop-nav .nav-primary,
.mobile-menu .nav-primary {
  padding: 8px 10px;
  border: 1px solid rgba(82, 245, 162, 0.24);
  border-radius: 999px;
  background: rgba(82, 245, 162, 0.065);
  color: #caffdf;
}

.nav-primary i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(82, 245, 162, 0.85);
  animation: navPrimaryPulse 2.4s ease-in-out infinite;
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 8px 0 10px;
  border: 1px solid rgba(188, 225, 204, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.language-switcher:hover,
.language-switcher:focus-within {
  border-color: rgba(82, 245, 162, 0.5);
  background: rgba(82, 245, 162, 0.07);
  color: var(--text);
}

.language-switcher svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.language-switcher select {
  min-width: 46px;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: 700 11px/1 var(--font-mono);
  letter-spacing: 0.06em;
  cursor: pointer;
}

.language-switcher option {
  background: #0a100c;
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
  background: var(--text);
  color: #07100a;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  background: var(--green);
  transform: translateY(-1px);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  padding-top: 150px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  background:
    linear-gradient(rgba(188, 225, 204, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188, 225, 204, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0, rgba(0, 0, 0, 0.9) 58%, transparent 92%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 4%;
  left: 38%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 245, 162, 0.09), transparent 68%);
  filter: blur(10px);
  animation: heroSpotlight 14s ease-in-out infinite alternate;
}

.hero-ambient {
  position: absolute;
  z-index: -1;
  inset: 75px calc(50% - 50vw) 55px;
  overflow: hidden;
  pointer-events: none;
}

.hero-ambient-ring {
  position: absolute;
  border: 1px solid rgba(82, 245, 162, 0.09);
  border-radius: 50%;
  animation: heroRingDrift 18s linear infinite;
}

.hero-ambient-ring::before,
.hero-ambient-ring::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(82, 245, 162, 0.75);
}

.hero-ambient-ring::before {
  top: 10%;
  left: 15%;
}

.hero-ambient-ring::after {
  right: 8%;
  bottom: 22%;
  opacity: 0.45;
}

.hero-ambient-ring.ring-a {
  top: 3%;
  right: -8%;
  width: 660px;
  height: 660px;
}

.hero-ambient-ring.ring-b {
  bottom: -34%;
  left: -13%;
  width: 520px;
  height: 520px;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 27s;
}

.ambient-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0;
  box-shadow: 0 0 14px rgba(82, 245, 162, 0.9);
  animation: heroDataParticle 8s ease-in-out infinite;
}

.ambient-particle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82, 245, 162, 0.28));
}

.ambient-particle.p1 { top: 19%; left: 8%; animation-delay: -1s; }
.ambient-particle.p2 { top: 34%; left: 48%; animation-delay: -3.4s; }
.ambient-particle.p3 { top: 14%; right: 17%; animation-delay: -5.8s; }
.ambient-particle.p4 { bottom: 25%; left: 27%; animation-delay: -2.1s; }
.ambient-particle.p5 { right: 5%; bottom: 18%; animation-delay: -6.7s; }
.ambient-particle.p6 { top: 58%; right: 39%; animation-delay: -4.6s; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
  min-height: 680px;
}

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

.availability,
.section-index,
.micro-label,
.solution-kicker,
.process-time {
  font: 400 10px/1.4 var(--font-mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--green);
  animation: heroReveal 0.65s 0.06s cubic-bezier(.2, .8, .2, 1) both;
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(82, 245, 162, 0.1), 0 0 22px rgba(82, 245, 162, 0.7);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(46px, 5.6vw, 78px);
  font-weight: 650;
  animation: heroReveal 0.75s 0.13s cubic-bezier(.2, .8, .2, 1) both;
}

.hero h1 em,
.section-heading h2 em {
  color: var(--green);
  font-style: normal;
}

.hero h1 em {
  background: linear-gradient(105deg, #42e995 15%, #a0ffd0 42%, #42e995 70%);
  background-size: 220% 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: heroTextShimmer 8s 1.2s ease-in-out infinite;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
  animation: heroReveal 0.75s 0.22s cubic-bezier(.2, .8, .2, 1) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: heroReveal 0.75s 0.31s cubic-bezier(.2, .8, .2, 1) both;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: var(--green);
  color: #03160b;
  box-shadow: 0 12px 40px rgba(42, 204, 119, 0.18);
}

.button-primary:hover {
  background: #75ffb7;
}

.hero-actions .button-primary {
  position: relative;
  overflow: hidden;
}

.hero-actions .button-primary::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -45%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: skewX(-18deg);
  animation: heroButtonSweep 7s 2s ease-in-out infinite;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(82, 245, 162, 0.5);
  background: rgba(82, 245, 162, 0.05);
}

.button-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(82, 245, 162, 0.1);
}

.hero-proof {
  margin-top: 46px;
  display: flex;
  gap: 0;
  animation: heroReveal 0.75s 0.4s cubic-bezier(.2, .8, .2, 1) both;
}

.hero-proof div {
  padding: 0 28px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.hero-proof div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 16px;
}

.hero-proof span {
  color: var(--muted-2);
  font-size: 11px;
}

.hero-console {
  position: relative;
  overflow: visible;
  margin-bottom: 50px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(8, 13, 10, 0.92);
  box-shadow: var(--shadow);
  animation: heroConsoleReveal 0.95s 0.28s cubic-bezier(.16, .8, .25, 1) both;
}

.console-glow {
  position: absolute;
  z-index: -1;
  inset: 12% -15% -15%;
  background: radial-gradient(circle, rgba(48, 211, 127, 0.22), transparent 63%);
  filter: blur(30px);
  animation: consoleGlowBreath 6s ease-in-out infinite;
}

.console-scan {
  position: absolute;
  z-index: 3;
  top: 48px;
  right: 1px;
  left: 1px;
  height: 90px;
  border-top: 1px solid rgba(82, 245, 162, 0.34);
  background: linear-gradient(to bottom, rgba(82, 245, 162, 0.07), transparent);
  opacity: 0;
  pointer-events: none;
  animation: consoleScan 7.5s 1.2s ease-in-out infinite;
}

.console-topbar {
  height: 48px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted-2);
  font: 400 9px/1 var(--font-mono);
  letter-spacing: 0.11em;
}

.console-dots {
  display: flex;
  gap: 5px;
}

.console-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #344139;
}

.console-secure {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.console-secure i {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
}

.console-body {
  padding: 28px;
}

.console-title-row,
.stage-topbar,
.voice-card-head,
.admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.micro-label {
  color: var(--green);
}

.console-title-row h2 {
  margin: 7px 0 0;
  font-size: 25px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(82, 245, 162, 0.18);
  border-radius: 100px;
  background: rgba(82, 245, 162, 0.06);
  color: #9afbc6;
  font: 400 9px/1 var(--font-mono);
}

.status-pill i,
.stage-live i,
.footer-status i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: breathe 2s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.45; box-shadow: 0 0 0 0 rgba(82, 245, 162, 0.25); }
  50% { opacity: 1; box-shadow: 0 0 0 5px rgba(82, 245, 162, 0); }
}

.automation-feed {
  margin-top: 23px;
  display: grid;
  gap: 8px;
}

.feed-item {
  min-height: 72px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.012);
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

.feed-item.active {
  border-color: rgba(82, 245, 162, 0.26);
  background: linear-gradient(90deg, rgba(82, 245, 162, 0.06), transparent);
  transform: translateX(3px);
}

.feed-item.feed-ping .feed-icon {
  animation: feedIconPing 0.75s cubic-bezier(.2, .8, .25, 1);
}

.feed-icon,
.mode-icon,
.wa-direct-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  color: var(--green);
  font: 700 9px/1 var(--font-mono);
}

.feed-icon svg,
.wa-direct-icon svg,
.floating-whatsapp-icon svg,
.flow-step-icon svg,
.voice-after-icon > svg {
  width: 22px;
  height: 22px;
  overflow: visible;
}

.feed-icon svg path,
.wa-direct-icon svg path,
.floating-whatsapp-icon svg path,
.flow-step-icon svg path,
.flow-step-icon svg rect,
.flow-step-icon svg circle,
.voice-after-icon > svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feed-icon.whatsapp,
.wa-direct-icon,
.floating-whatsapp-icon {
  color: #70f5aa;
}

.feed-icon.call {
  color: #7bb7ff;
}

.feed-icon.invoice {
  color: #ffcc72;
}

.feed-item strong,
.feed-item span {
  display: block;
}

.feed-item strong {
  font-size: 13px;
  font-weight: 600;
}

.feed-item span {
  color: var(--muted-2);
  font-size: 11px;
}

.feed-item time {
  color: var(--muted-2);
  font: 400 9px/1 var(--font-mono);
}

.system-map-mini {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--muted-2);
  font: 400 8px/1 var(--font-mono);
  letter-spacing: 0.05em;
}

.system-map-mini i {
  position: relative;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.system-map-mini i::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(82, 245, 162, 0.85);
  animation: systemMapPulse 3.6s ease-in-out infinite;
}

.system-map-mini i:nth-of-type(2)::after { animation-delay: 1.2s; }
.system-map-mini i:nth-of-type(3)::after { animation-delay: 2.4s; }

.voice-invite {
  position: absolute;
  right: -24px;
  bottom: -42px;
  width: min(440px, 90%);
  min-height: 84px;
  padding: 14px 16px;
  border: 1px solid rgba(82, 245, 162, 0.32);
  border-radius: 14px;
  background: rgba(11, 19, 14, 0.98);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
}

.voice-orb,
.floating-orb,
.drawer-orb,
.large-orb {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.86), transparent 8%),
    radial-gradient(circle at 50% 50%, #9affc8 0, #28d97e 36%, #0f6b3e 72%, #07130b 100%);
  box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.28), 0 0 28px rgba(82, 245, 162, 0.35);
}

.voice-orb {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
}

.voice-orb i,
.floating-orb i,
.drawer-orb i,
.large-orb i {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 45% 55% 55% 45%;
  animation: orbitShape 5s linear infinite;
}

.voice-orb i:nth-child(2),
.floating-orb i:nth-child(2),
.drawer-orb i:nth-child(2),
.large-orb i:nth-child(2) {
  inset: 22% 5%;
  animation-direction: reverse;
  animation-duration: 4s;
}

.voice-orb i:nth-child(3),
.floating-orb i:nth-child(3),
.drawer-orb i:nth-child(3),
.large-orb i:nth-child(3) {
  inset: 6% 26%;
  animation-duration: 7s;
}

@keyframes orbitShape {
  to { transform: rotate(360deg); }
}

.voice-invite strong,
.voice-invite small {
  display: block;
}

.voice-invite strong {
  margin-bottom: 2px;
  font-size: 12px;
}

.voice-invite small {
  color: var(--green);
  font: 400 9px/1.4 var(--font-mono);
}

.invite-arrow {
  margin-left: auto;
  color: var(--green);
  font-size: 20px;
}

.hero-marquee {
  overflow: hidden;
  position: absolute;
  inset: auto calc(50% - 50vw) 0;
  height: 52px;
  border-block: 1px solid var(--line);
  display: flex;
  align-items: center;
  background: rgba(3, 6, 4, 0.65);
}

.hero-marquee > div {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted-2);
  font: 400 9px/1 var(--font-mono);
  letter-spacing: 0.13em;
  animation: marquee 26s linear infinite alternate;
}

.hero-marquee i {
  width: 4px;
  height: 4px;
  background: var(--green);
  transform: rotate(45deg);
}

@keyframes marquee {
  to { transform: translateX(-12%); }
}

@keyframes navPrimaryPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(22px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes heroConsoleReveal {
  from { opacity: 0; transform: translate(34px, 14px) scale(0.96); filter: blur(9px); }
  to { opacity: 1; transform: translate(0, 0) scale(1); filter: blur(0); }
}

@keyframes heroSpotlight {
  0% { transform: translate(-20%, -8%) scale(0.85); opacity: 0.55; }
  100% { transform: translate(34%, 18%) scale(1.18); opacity: 1; }
}

@keyframes heroRingDrift {
  to { transform: rotate(360deg); }
}

@keyframes heroDataParticle {
  0%, 8% { opacity: 0; transform: translate(-70px, 38px) scale(0.7); }
  25%, 68% { opacity: 0.65; }
  88%, 100% { opacity: 0; transform: translate(135px, -54px) scale(1.15); }
}

@keyframes heroTextShimmer {
  0%, 18%, 100% { background-position: 100% 50%; }
  45%, 70% { background-position: 0 50%; }
}

@keyframes heroButtonSweep {
  0%, 12% { left: -45%; opacity: 0; }
  18% { opacity: 1; }
  35%, 100% { left: 125%; opacity: 0; }
}

@keyframes consoleGlowBreath {
  0%, 100% { opacity: 0.6; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes consoleScan {
  0%, 8% { top: 48px; opacity: 0; }
  15% { opacity: 0.72; }
  58% { top: calc(100% - 92px); opacity: 0.22; }
  65%, 100% { top: calc(100% - 92px); opacity: 0; }
}

@keyframes feedIconPing {
  0% { transform: scale(0.82); box-shadow: 0 0 0 0 rgba(82, 245, 162, 0.35); }
  55% { transform: scale(1.08); box-shadow: 0 0 0 9px rgba(82, 245, 162, 0); }
  100% { transform: scale(1); }
}

@keyframes systemMapPulse {
  0%, 15% { left: 0; opacity: 0; }
  25%, 65% { opacity: 1; }
  85%, 100% { left: calc(100% - 4px); opacity: 0; }
}

.priority-flow-section {
  padding-top: 105px;
  padding-bottom: 35px;
}

.priority-flow-heading {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
}

.priority-flow-heading h2 {
  margin-top: 16px;
  max-width: 900px;
  font-size: clamp(42px, 5.7vw, 76px);
  letter-spacing: -0.065em;
}

.priority-flow-heading h2 em {
  color: var(--green);
  font-style: normal;
}

.priority-flow-title-wrap {
  position: relative;
  isolation: isolate;
}

.flow-title-word {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
}

.flow-title-word.is-hit {
  color: #fff;
  text-shadow:
    0 0 12px rgba(82, 245, 162, 0.95),
    0 0 32px rgba(82, 245, 162, 0.58);
  transform: scale(1.025);
}

.flow-title-journey {
  position: absolute;
  z-index: 4;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.flow-title-trails {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow-title-trail {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 0.015 0.035;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(82, 245, 162, 0.72));
}

.flow-title-trail-glow {
  stroke-width: 7;
  opacity: 0;
  filter: blur(5px);
}

.flow-title-journey.is-running .flow-title-trail[data-flow-path="message-appointment"] {
  animation: titleTrailFirst 4.6s ease-out both;
}

.flow-title-journey.is-running .flow-title-trail[data-flow-path="appointment-crm"] {
  animation: titleTrailSecond 4.6s ease-out both;
}

.flow-title-particle {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(82, 245, 162, 0.72);
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 42%),
    #0b1b12;
  color: var(--green);
  opacity: 0;
  box-shadow:
    0 0 0 5px rgba(82, 245, 162, 0.06),
    0 0 28px rgba(82, 245, 162, 0.4);
  will-change: transform, opacity;
}

.flow-title-particle::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(82, 245, 162, 0.22);
  border-radius: 18px;
  animation: flowParticleSignal 1.1s ease-out infinite;
}

.flow-particle-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.55) rotate(-18deg);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(.2, .9, .25, 1.3);
}

.flow-particle-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-title-particle[data-stage="message"] .message,
.flow-title-particle[data-stage="appointment"] .appointment,
.flow-title-particle[data-stage="crm"] .crm {
  opacity: 1;
  transform: scale(1) rotate(0);
}

@keyframes titleTrailFirst {
  0%, 3% { stroke-dashoffset: 1; opacity: 0; }
  8% { opacity: 0.85; }
  35% { stroke-dashoffset: 0; opacity: 0.72; }
  58%, 100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes titleTrailSecond {
  0%, 42% { stroke-dashoffset: 1; opacity: 0; }
  47% { opacity: 0.85; }
  78% { stroke-dashoffset: 0; opacity: 0.72; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes flowParticleSignal {
  from { opacity: 0.7; transform: scale(0.82); }
  to { opacity: 0; transform: scale(1.18); }
}

.priority-flow-heading > p {
  margin: 0 0 8px;
  color: #a9bbb0;
  font-size: 14px;
  line-height: 1.75;
}

.priority-flow-track {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
}

.priority-flow-step {
  min-height: 360px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 85% 0%, rgba(82, 245, 162, 0.07), transparent 16rem),
    #08100b;
  display: flex;
  flex-direction: column;
}

.priority-flow-step:hover {
  border-color: rgba(82, 245, 162, 0.32);
}

.flow-step-top {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flow-step-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(82, 245, 162, 0.24);
  border-radius: 14px;
  background: rgba(82, 245, 162, 0.07);
  color: var(--green);
  box-shadow: inset 0 0 24px rgba(82, 245, 162, 0.04);
}

.flow-step-icon .accent-fill {
  fill: currentColor;
  stroke: none;
  opacity: 0.3;
}

.flow-step-number {
  color: var(--muted-2);
  font: 500 9px/1 var(--font-mono);
}

.flow-step-kicker {
  color: var(--green);
}

.priority-flow-step h3 {
  margin: 10px 0 18px;
  font-size: 25px;
}

.priority-flow-step h3 small {
  display: block;
  margin-top: 7px;
  color: #91a298;
  font: 500 9px/1.45 var(--font-mono);
  letter-spacing: 0;
}

.priority-flow-step > p {
  margin: auto 0 0;
  padding-top: 20px;
  color: var(--muted);
  font-size: 11px;
}

.priority-flow-arrow {
  align-self: center;
  color: var(--green);
  font-size: 25px;
  text-align: center;
}

.flow-chat-preview,
.flow-calendar-preview,
.flow-crm-preview {
  min-height: 105px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.018);
}

.flow-chat-preview {
  display: grid;
  align-content: center;
  gap: 7px;
}

.flow-chat-preview span {
  width: 83%;
  padding: 8px 10px;
  border-radius: 9px 9px 9px 2px;
  background: #121d16;
  color: #b9c8be;
  font-size: 8px;
}

.flow-chat-preview span:last-child {
  justify-self: end;
  border-radius: 9px 9px 2px;
  background: rgba(82, 245, 162, 0.13);
  color: #d5f7e3;
}

.flow-calendar-preview,
.flow-crm-preview {
  display: grid;
  gap: 7px;
}

.flow-calendar-preview > span {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 5px 42px 1fr;
  align-items: center;
  gap: 8px;
  color: #d4dfd7;
  font-size: 9px;
}

.flow-calendar-preview i {
  width: 4px;
  height: 28px;
  border-radius: 5px;
}

.flow-calendar-preview i.assessment,
.flow-calendar-preview i.first-visit { background: #34a853; }
.flow-calendar-preview i.treatment { background: #4285f4; }
.flow-calendar-preview i.review { background: #f29900; }
.flow-calendar-preview small { color: var(--muted-2); font-size: 7px; }

.flow-crm-preview {
  align-content: center;
}

.flow-crm-preview span {
  color: #b9c9be;
  font-size: 9px;
}

.flow-crm-preview i {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  margin-right: 7px;
  border-radius: 50%;
  background: rgba(82, 245, 162, 0.12);
  color: var(--green);
  font-style: normal;
}

.flow-crm-preview .crm-reactivation-tag {
  margin-top: 2px;
  padding: 7px 8px;
  border: 1px solid rgba(82, 245, 162, 0.2);
  border-radius: 8px;
  background: rgba(82, 245, 162, 0.06);
  color: #dcf8e8;
}

.flow-capabilities-grid {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

.calendar-custom-panel,
.crm-reactivation-panel {
  min-width: 0;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  align-items: center;
  gap: clamp(30px, 6vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(82, 245, 162, 0.08), transparent 25rem),
    #070c09;
}

.crm-reactivation-panel {
  background:
    radial-gradient(circle at 88% 12%, rgba(66, 133, 244, 0.09), transparent 25rem),
    #070c09;
}

.capability-index {
  color: var(--green);
  font: 600 8px/1.2 var(--font-mono);
  letter-spacing: 0.12em;
}

.capability-copy h3 {
  max-width: 560px;
  margin: 16px 0;
  font-size: clamp(29px, 3.2vw, 43px);
  line-height: 1.06;
}

.capability-copy > p {
  color: #9fb1a5;
  font-size: 12px;
  line-height: 1.7;
}

.calendar-app-chips {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.calendar-app-chips span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #94a69a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 7px;
}

.calendar-app-chips span.active {
  border-color: rgba(82, 245, 162, 0.3);
  background: rgba(82, 245, 162, 0.07);
  color: #d9f8e6;
}

.calendar-app-chips i {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: #fff;
  color: #26744a;
  font: 800 8px/1 var(--font-display);
}

.calendar-color-board {
  border: 1px solid #dae4dd;
  border-radius: 16px;
  overflow: hidden;
  background: #f7faf8;
  color: #25312a;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.calendar-color-board > header {
  min-height: 66px;
  padding: 13px 16px;
  border-bottom: 1px solid #e1e8e3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.calendar-color-board header small,
.calendar-color-board header strong {
  display: block;
}

.calendar-color-board header small {
  margin-bottom: 5px;
  color: #6e7d74;
  font: 700 6px/1 var(--font-mono);
  letter-spacing: 0.08em;
}

.calendar-color-board header strong {
  font-size: 14px;
}

.calendar-live {
  padding: 7px 9px;
  border: 1px solid #dfe8e2;
  border-radius: 999px;
  color: #5d6f63;
  font-size: 6px;
  white-space: nowrap;
}

.calendar-live i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 50%;
  background: #34a853;
  box-shadow: 0 0 8px rgba(52, 168, 83, 0.52);
  animation: calendarLivePulse 1.7s ease-in-out infinite;
}

.calendar-board-hours {
  padding: 13px 15px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 8px 10px;
  background:
    linear-gradient(#edf2ee 1px, transparent 1px);
  background-size: 100% 58px;
}

.calendar-board-hours time {
  color: #7b897f;
  font: 600 7px/1 var(--font-mono);
}

.custom-appointment {
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid;
  border-radius: 9px;
  display: grid;
  grid-template-columns: 5px 1fr auto;
  align-items: center;
  gap: 9px;
  animation: calendarAppointmentGlow 7.2s ease-in-out infinite;
}

.custom-appointment > i {
  width: 4px;
  height: 30px;
  border-radius: 8px;
}

.custom-appointment strong,
.custom-appointment small {
  display: block;
}

.custom-appointment strong {
  margin-bottom: 3px;
  font-size: 9px;
}

.custom-appointment small {
  color: #738078;
  font-size: 6px;
}

.custom-appointment b {
  font: 700 6px/1 var(--font-mono);
}

.custom-appointment.first {
  border-color: rgba(52, 168, 83, 0.3);
  background: rgba(52, 168, 83, 0.08);
  color: #287a3e;
}

.custom-appointment.first > i { background: #34a853; }
.custom-appointment.treatment {
  border-color: rgba(66, 133, 244, 0.3);
  background: rgba(66, 133, 244, 0.08);
  color: #2d66bd;
  animation-delay: 1.7s;
}
.custom-appointment.treatment > i { background: #4285f4; }
.custom-appointment.review {
  border-color: rgba(242, 153, 0, 0.35);
  background: rgba(242, 153, 0, 0.1);
  color: #aa6c00;
  animation-delay: 3.4s;
}
.custom-appointment.review > i { background: #f29900; }

.calendar-color-board > footer {
  min-height: 43px;
  padding: 10px 15px;
  border-top: 1px solid #e1e8e3;
  background: #eef4f0;
  color: #65766b;
  font-size: 7px;
  line-height: 1.45;
}

.crm-memory-points {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.crm-memory-points span {
  min-height: 43px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #aabbb0;
  display: flex;
  align-items: center;
  font-size: 8px;
}

.crm-memory-points i {
  margin-right: 8px;
  color: var(--green);
  font: 600 7px/1 var(--font-mono);
}

.crm-memory-points span.featured {
  border-color: rgba(82, 245, 162, 0.34);
  background: rgba(82, 245, 162, 0.07);
  color: #def9e9;
  box-shadow: inset 0 0 28px rgba(82, 245, 162, 0.035);
}

.reactivation-engine {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(82, 245, 162, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(rgba(82, 245, 162, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 245, 162, 0.025) 1px, transparent 1px),
    #09120c;
  background-size: 22px 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.reactivation-head > span,
.reactivation-head > strong {
  display: block;
}

.reactivation-head > span {
  color: var(--green);
  font: 600 7px/1 var(--font-mono);
  letter-spacing: 0.1em;
}

.reactivation-head > span i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.reactivation-head > strong {
  margin-top: 9px;
  font-size: 17px;
}

.reactivation-timeline {
  margin: 23px 0 17px;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
}

.timeline-start,
.timeline-end {
  position: relative;
  z-index: 2;
  text-align: center;
}

.timeline-start > i,
.timeline-end > i {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  margin: 0 auto 6px;
  border: 1px solid rgba(82, 245, 162, 0.35);
  border-radius: 50%;
  background: #102019;
  color: var(--green);
  font-style: normal;
}

.timeline-start small,
.timeline-start b,
.timeline-end small,
.timeline-end b {
  display: block;
}

.timeline-start small,
.timeline-end small {
  color: #b6c6bb;
  font-size: 7px;
}

.timeline-start b,
.timeline-end b {
  margin-top: 3px;
  color: var(--muted-2);
  font: 600 6px/1 var(--font-mono);
}

.timeline-path {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, var(--green), rgba(82, 245, 162, 0.16));
}

.timeline-path::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(82, 245, 162, 0.85);
  transform: translate(-50%, -50%);
  animation: reactivationTravel 5.8s ease-in-out infinite;
}

.timeline-path i {
  position: absolute;
  inset: -4px 0;
  border-block: 1px dashed rgba(82, 245, 162, 0.08);
}

.reactivation-rule {
  padding: 12px 13px;
  border: 1px solid rgba(242, 153, 0, 0.24);
  border-radius: 10px;
  background: rgba(242, 153, 0, 0.055);
}

.rule-label {
  color: #efb54f;
  font: 700 6px/1 var(--font-mono);
  letter-spacing: 0.08em;
}

.reactivation-rule p {
  margin-top: 6px;
  color: #b8c7bd;
  font-size: 8px;
}

.reactivation-message {
  margin-top: 10px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0d1811;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
}

.reactivation-avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #092014;
  font: 800 7px/1 var(--font-mono);
}

.reactivation-message strong {
  font-size: 8px;
}

.reactivation-message p {
  margin-top: 4px;
  color: #9fb0a5;
  font-size: 7px;
}

.before-after-preview {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 16px 1fr;
  align-items: center;
  gap: 5px;
}

.before-after-preview span {
  min-height: 29px;
  border: 1px solid rgba(82, 245, 162, 0.16);
  border-radius: 6px;
  background:
    radial-gradient(circle at 30% 25%, rgba(82, 245, 162, 0.14), transparent 45%),
    #101d15;
  color: #718279;
  display: grid;
  place-items: center;
  font: 600 5px/1 var(--font-mono);
}

.before-after-preview i {
  color: var(--green);
  font-style: normal;
  text-align: center;
}

.reactivation-privacy {
  display: block;
  margin-top: 10px;
  color: #73857a;
  font-size: 6px;
  line-height: 1.45;
}

@keyframes calendarLivePulse {
  50% { opacity: 0.4; transform: scale(0.72); }
}

@keyframes calendarAppointmentGlow {
  0%, 76%, 100% { transform: none; box-shadow: none; }
  84% { transform: translateX(3px); box-shadow: 0 7px 20px rgba(35, 65, 45, 0.08); }
}

@keyframes reactivationTravel {
  0%, 10% { left: 0; opacity: 0; }
  20% { opacity: 1; }
  72% { left: 100%; opacity: 1; }
  82%, 100% { left: 100%; opacity: 0; }
}

.real-crm-proof {
  margin: 18px 0 0;
  padding: clamp(28px, 4.5vw, 58px);
  border: 1px solid rgba(82, 245, 162, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 5% 0%, rgba(82, 245, 162, 0.09), transparent 30rem),
    #070d09;
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(560px, 1.45fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.real-crm-proof-copy h3 {
  margin-top: 17px;
  font-size: clamp(30px, 3.4vw, 46px);
}

.real-crm-proof-copy > p {
  margin-top: 19px;
  color: var(--muted);
  font-size: 12px;
}

.crm-proof-points {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.crm-proof-points span {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: #c8d6cd;
  font-size: 10px;
}

.crm-proof-points i {
  margin-right: 12px;
  color: var(--green);
  font: 500 8px/1 var(--font-mono);
}

.real-crm-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(173, 205, 184, 0.2);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  cursor: zoom-in;
}

.real-crm-image-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
}

.real-work-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(4, 10, 6, 0.82);
  color: #d9f7e5;
  font: 600 7px/1 var(--font-mono);
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.real-work-badge i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
}

.real-crm-proof figcaption {
  grid-column: 2;
  color: var(--muted-2);
  font-size: 8px;
}

.voice-after-flow {
  margin-top: 18px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(100deg, rgba(74, 139, 255, 0.08), rgba(82, 245, 162, 0.04));
  display: grid;
  grid-template-columns: 76px 1fr auto;
  align-items: center;
  gap: 24px;
}

.voice-after-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(123, 183, 255, 0.32);
  border-radius: 50%;
  color: #7bb7ff;
  background: rgba(123, 183, 255, 0.07);
}

.voice-after-icon > span {
  position: absolute;
  inset: auto -12px -3px auto;
  height: 30px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.voice-after-icon > span i {
  width: 3px;
  border-radius: 4px;
  background: var(--green);
}

.voice-after-icon > span i:nth-child(1) { height: 10px; }
.voice-after-icon > span i:nth-child(2) { height: 24px; }
.voice-after-icon > span i:nth-child(3) { height: 16px; }

.voice-after-flow h3 {
  margin: 6px 0;
  font-size: 24px;
}

.voice-after-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.voice-after-flow .button {
  min-width: 210px;
}

.demo-section {
  padding: 135px 0 120px;
  background:
    radial-gradient(circle at 30% 20%, rgba(37, 157, 95, 0.07), transparent 35rem),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 55px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 50px;
}

.section-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
}

.section-heading h2,
.video-copy h2,
.admin-story-copy h2,
.roi-copy h2,
.trust-copy h2,
.faq-grid > div h2,
.contact-copy h2 {
  max-width: 830px;
  margin-bottom: 0;
  font-size: clamp(36px, 4.4vw, 62px);
  font-weight: 600;
}

.section-heading > p,
.section-heading > div + p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 16px;
}

.demo-lab {
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: #080c09;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  overflow: hidden;
}

.demo-config {
  padding: 28px;
  border-right: 1px solid var(--line);
  background: #0a100c;
}

.config-step {
  margin-bottom: 27px;
}

.step-label {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #dce6df;
  font-size: 12px;
  font-weight: 600;
}

.step-label > span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(82, 245, 162, 0.3);
  border-radius: 50%;
  color: var(--green);
  font: 400 9px/1 var(--font-mono);
}

.mode-grid {
  display: grid;
  gap: 7px;
}

.mode-card {
  position: relative;
  min-height: 60px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.012);
  display: grid;
  grid-template-columns: 36px 1fr 14px;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
}

.mode-card:hover,
.mode-card.active {
  border-color: rgba(82, 245, 162, 0.35);
  background: rgba(82, 245, 162, 0.055);
}

.mode-card .mode-icon {
  width: 36px;
  height: 36px;
}

.mode-card strong,
.mode-card small {
  display: block;
}

.mode-card strong {
  font-size: 11px;
  font-weight: 600;
}

.mode-card small {
  color: var(--muted-2);
  font-size: 9px;
}

.mode-card > i {
  width: 10px;
  height: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.mode-card.active > i {
  border: 3px solid #0b160f;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}

.select-wrap {
  position: relative;
}

.select-wrap select,
.input-stack input,
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.018);
  color: var(--text);
  outline: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.select-wrap select {
  height: 46px;
  padding: 0 36px 0 13px;
  appearance: none;
  font-size: 11px;
}

.select-wrap > span {
  position: absolute;
  top: 50%;
  right: 13px;
  color: var(--green);
  transform: translateY(-55%);
  pointer-events: none;
}

.select-wrap select:focus,
.input-stack input:focus,
.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: rgba(82, 245, 162, 0.55);
  background: rgba(82, 245, 162, 0.025);
}

select option {
  background: #0a100c;
}

.field-help {
  display: block;
  margin-top: 7px;
  color: var(--muted-2);
  font-size: 9px;
}

.input-stack {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 8px;
}

.input-stack label > span,
.contact-form-card label > span,
#callbackForm > label:first-child {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-2);
  font: 400 8px/1.4 var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.input-stack label > span em,
.contact-form-card label > span em {
  font-style: normal;
  text-transform: lowercase;
}

.input-stack input {
  height: 42px;
  padding: 0 11px;
  font-size: 11px;
}

.launch-demo {
  width: 100%;
}

.privacy-note {
  margin: 11px 0 0;
  color: var(--muted-2);
  font-size: 9px;
  text-align: center;
}

.privacy-note span {
  color: var(--green);
}

.demo-stage {
  position: relative;
  min-width: 0;
  min-height: 720px;
  background: #050806;
}

.demo-stage.expanded {
  position: fixed;
  z-index: 300;
  inset: 16px;
  min-height: 0;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 120px #000;
}

.stage-topbar {
  height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.stage-topbar > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stage-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font: 400 8px/1 var(--font-mono);
}

#stageModeLabel {
  color: var(--muted-2);
  font: 400 8px/1 var(--font-mono);
  letter-spacing: 0.12em;
}

.stage-actions button {
  padding: 6px 9px;
  background: transparent;
  color: var(--muted);
  font-size: 9px;
  cursor: pointer;
}

.stage-actions button:hover {
  color: var(--text);
}

.stage-content {
  position: relative;
  height: calc(100% - 48px);
  min-height: 672px;
}

.demo-panel {
  display: none;
  min-height: 672px;
}

.demo-panel.active {
  display: block;
  animation: panelIn 0.35s ease both;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.web-simulator {
  padding: 26px;
}

.browser-frame {
  position: relative;
  height: 620px;
  border: 1px solid #26352c;
  border-radius: 14px;
  overflow: hidden;
  background: #f2f0e9;
  color: #1a201c;
}

.browser-bar {
  height: 38px;
  padding: 0 12px;
  border-bottom: 1px solid #d4d9d5;
  background: #e9ece9;
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
}

.browser-dots {
  display: flex;
  gap: 4px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  background: #b6c0ba;
  border-radius: 50%;
}

.browser-address {
  justify-self: center;
  width: min(360px, 100%);
  height: 23px;
  padding: 0 10px;
  border: 1px solid #d1d7d3;
  border-radius: 6px;
  background: #f6f7f6;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #727c75;
  font-size: 8px;
}

.browser-lock {
  justify-self: end;
  color: #8a948e;
}

.business-site {
  --mock-accent: #315c43;
  min-height: calc(100% - 38px);
  background: #f6f2e8;
}

.mock-nav {
  height: 62px;
  padding: 0 25px;
  border-bottom: 1px solid rgba(32, 47, 38, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #202822;
}

.mock-brand > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--mock-accent);
  color: #fff;
  font: 700 8px/1 var(--font-mono);
}

.mock-brand strong {
  font: 700 12px/1 var(--font-display);
}

.mock-nav nav {
  display: flex;
  gap: 18px;
  color: #6c756e;
  font-size: 8px;
}

.mock-cta,
.mock-hero-copy button {
  padding: 8px 13px;
  border-radius: 4px;
  background: var(--mock-accent);
  color: #fff;
  font-size: 8px;
}

.mock-hero {
  min-height: 330px;
  padding: 40px 42px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 20px;
}

.mock-hero-copy > span {
  color: var(--mock-accent);
  font: 700 7px/1 var(--font-mono);
  letter-spacing: 0.12em;
}

.mock-hero-copy h3 {
  max-width: 390px;
  margin: 12px 0 12px;
  color: #182119;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
}

.mock-hero-copy p {
  max-width: 370px;
  margin-bottom: 22px;
  color: #68726b;
  font-size: 10px;
  line-height: 1.6;
}

.mock-hero-copy > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mock-hero-copy > div span {
  color: #59635c;
  font-size: 8px;
}

.mock-visual {
  position: relative;
  justify-self: end;
  width: min(270px, 100%);
  aspect-ratio: 1;
  border-radius: 48% 52% 42% 58%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.75), transparent 10%),
    linear-gradient(135deg, color-mix(in srgb, var(--mock-accent), white 74%), color-mix(in srgb, var(--mock-accent), white 28%));
  overflow: hidden;
}

.visual-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.visual-ring.one {
  inset: 12%;
}

.visual-ring.two {
  inset: 28% -10%;
  transform: rotate(35deg);
}

.visual-monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.9);
  font: 700 50px/1 var(--font-display);
  transform: translate(-50%, -50%);
}

.visual-city {
  position: absolute;
  right: 18px;
  bottom: 17px;
  color: rgba(255, 255, 255, 0.8);
  font: 400 7px/1 var(--font-mono);
  letter-spacing: 0.14em;
}

.mock-cards {
  padding: 0 42px 25px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-card {
  min-height: 74px;
  padding: 13px;
  border: 1px solid rgba(32, 47, 38, 0.09);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.46);
}

.mock-card strong,
.mock-card span {
  display: block;
}

.mock-card strong {
  margin-bottom: 5px;
  color: #263028;
  font-size: 9px;
}

.mock-card span {
  color: #7b847e;
  font-size: 7px;
}

.web-chat {
  position: absolute;
  z-index: 3;
  right: 17px;
  bottom: 17px;
}

.web-chat-toggle {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #102019;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.24);
}

.mini-orb {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0 6%, #75ffb7 9%, #20bd6c 50%, #0c5030);
  box-shadow: 0 0 18px rgba(57, 236, 141, 0.4);
}

.chat-window {
  position: relative;
  z-index: 2;
  width: 315px;
  height: 430px;
  border: 1px solid rgba(35, 54, 43, 0.18);
  border-radius: 14px;
  background: #fbfcfb;
  box-shadow: 0 18px 60px rgba(18, 30, 23, 0.25);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  overflow: hidden;
  transform-origin: bottom right;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.chat-window.closed {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92) translateY(10px);
}

.chat-window > header {
  min-height: 62px;
  padding: 11px 12px;
  background: #102019;
  color: #fff;
  display: grid;
  grid-template-columns: 35px 1fr 24px;
  align-items: center;
  gap: 9px;
}

.chat-avatar {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--green);
  color: #082114;
  font: 700 8px/1 var(--font-mono);
}

.chat-window header strong,
.chat-window header small {
  display: block;
}

.chat-window header strong {
  max-width: 190px;
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-window header small {
  margin-top: 2px;
  color: #a3b8aa;
  font-size: 7px;
}

.chat-window header small i {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 3px;
  background: var(--green);
  border-radius: 50%;
}

.chat-close {
  background: transparent;
  color: #9caf9f;
  cursor: pointer;
  font-size: 18px;
}

.chat-messages,
.wa-messages,
.drawer-messages {
  overflow-y: auto;
  scrollbar-width: thin;
}

.chat-messages {
  padding: 13px;
  background: #f5f7f5;
}

.chat-message {
  max-width: 84%;
  margin-bottom: 8px;
  padding: 9px 11px;
  border-radius: 10px;
  font-size: 9px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.chat-message.assistant {
  margin-right: auto;
  border: 1px solid #e3e9e4;
  border-bottom-left-radius: 3px;
  background: #fff;
  color: #2f3932;
}

.chat-message.user {
  margin-left: auto;
  border-bottom-right-radius: 3px;
  background: #1b4c32;
  color: #f5fff8;
}

.chat-message.typing {
  width: 44px;
  display: flex;
  gap: 3px;
}

.chat-message.typing i {
  width: 4px;
  height: 4px;
  background: #93a298;
  border-radius: 50%;
  animation: typing 1s ease-in-out infinite;
}

.chat-message.typing i:nth-child(2) { animation-delay: 0.15s; }
.chat-message.typing i:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing {
  50% { transform: translateY(-3px); opacity: 0.5; }
}

.quick-replies {
  padding: 7px 10px;
  border-top: 1px solid #edf0ed;
  display: flex;
  gap: 5px;
  overflow-x: auto;
  background: #fff;
}

.quick-replies button,
.wa-quick button {
  flex: 0 0 auto;
  padding: 6px 8px;
  border: 1px solid #dfe8e2;
  border-radius: 100px;
  background: #fff;
  color: #31523e;
  font-size: 7px;
  cursor: pointer;
}

.chat-form {
  min-height: 48px;
  padding: 7px 8px;
  border-top: 1px solid #edf0ed;
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 6px;
  background: #fff;
}

.chat-form input {
  min-width: 0;
  padding: 0 10px;
  border: 1px solid #e2e7e3;
  border-radius: 8px;
  background: #f8faf8;
  color: #263029;
  outline: 0;
  font-size: 9px;
}

.chat-form button,
.wa-compose button,
.drawer-chat form button {
  border-radius: 8px;
  background: #163f2a;
  color: #fff;
  cursor: pointer;
}

.simulation-badge {
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(21, 31, 25, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
  color: #68736b;
  font: 400 6px/1 var(--font-mono);
  letter-spacing: 0.08em;
}

.live-calendar {
  position: absolute;
  z-index: 3;
  left: 17px;
  bottom: 17px;
  width: 252px;
  height: 430px;
  border: 1px solid rgba(35, 54, 43, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  color: #263029;
  box-shadow: 0 18px 60px rgba(18, 30, 23, 0.2);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  overflow: hidden;
}

.live-calendar-head {
  min-height: 62px;
  padding: 11px 12px;
  border-bottom: 1px solid #e8ece9;
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  gap: 9px;
}

.google-calendar-mark {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 9px;
  background: conic-gradient(from 35deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: #fff;
  font: 800 16px/1 var(--font-display);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.live-calendar-head strong,
.live-calendar-head small {
  display: block;
}

.live-calendar-head strong {
  font-size: 10px;
}

.live-calendar-head small {
  margin-top: 3px;
  color: #718078;
  font-size: 7px;
}

.live-calendar-head small i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 4px;
  border-radius: 50%;
  background: #34a853;
}

.live-calendar-title {
  padding: 13px 13px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.live-calendar-title small,
.live-calendar-title strong {
  display: block;
}

.live-calendar-title small {
  margin-bottom: 4px;
  color: #77847c;
  font: 600 6px/1 var(--font-mono);
  letter-spacing: 0.08em;
}

.live-calendar-title strong {
  max-width: 130px;
  font-size: 11px;
  line-height: 1.2;
}

.calendar-resource {
  max-width: 92px;
  padding: 5px 7px;
  border: 1px solid #e2e8e4;
  border-radius: 100px;
  color: #647269;
  font-size: 6px;
  line-height: 1.25;
  text-align: center;
}

.calendar-legend {
  padding: 0 13px 9px;
  border-bottom: 1px solid #edf0ee;
  display: flex;
  gap: 12px;
  color: #718078;
  font-size: 7px;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.calendar-legend i {
  width: 6px;
  height: 6px;
  border-radius: 2px;
}

.calendar-legend i.free { background: #34a853; }
.calendar-legend i.busy { background: #d7ddd9; }
.calendar-legend i.booked { background: #4285f4; }

.calendar-service-legend {
  padding: 0 13px 8px;
  border-bottom: 1px solid #edf0ee;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: #53625a;
  font-size: 6px;
}

.calendar-service-legend[hidden] {
  display: none;
}

.calendar-service-legend span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.calendar-service-legend i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--legend-color);
}

.calendar-slots {
  min-height: 0;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 7px;
  overflow-y: auto;
}

.calendar-slot {
  min-height: 56px;
  padding: 8px;
  border: 1px solid #e3e9e5;
  border-left-width: 3px;
  border-radius: 8px;
  background: #fbfcfb;
  color: #344039;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.calendar-slot.free { border-left-color: #34a853; }
.calendar-slot.service-coded { border-left-color: var(--slot-color); }
.calendar-slot.busy {
  border-left-color: #c9d0cc;
  background: #f3f5f4;
  color: #849088;
}

.calendar-slot.busy.service-coded {
  border-left-color: var(--slot-color);
  background:
    repeating-linear-gradient(135deg, transparent 0 7px, rgba(67, 82, 73, 0.045) 7px 10px),
    #f3f5f4;
}

.calendar-slot.booked {
  border-color: rgba(66, 133, 244, 0.32);
  border-left-color: #4285f4;
  background: rgba(66, 133, 244, 0.09);
  color: #24579e;
}

.calendar-slot.pending {
  border-color: rgba(251, 188, 5, 0.58);
  border-left-color: #f2a900;
  border-style: dashed;
  background: rgba(251, 188, 5, 0.12);
  color: #865d00;
}

.calendar-slot:hover,
.calendar-slot.selected {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--sector-accent), #dce3de 52%);
  box-shadow: 0 7px 18px rgba(24, 48, 33, 0.1);
}

.calendar-slot.selected {
  outline: 2px solid color-mix(in srgb, var(--sector-accent), transparent 55%);
}

.calendar-slot.booked.selected {
  outline-color: rgba(66, 133, 244, 0.45);
}

.calendar-slot.pending.selected {
  outline-color: rgba(242, 169, 0, 0.48);
}

.calendar-slot.just-booked {
  animation: calendarBooked 0.9s ease both;
}

@keyframes calendarBooked {
  0% { transform: scale(0.94); box-shadow: 0 0 0 0 rgba(66, 133, 244, 0.48); }
  55% { transform: scale(1.025); box-shadow: 0 0 0 9px rgba(66, 133, 244, 0.04); }
  100% { transform: none; box-shadow: 0 7px 18px rgba(24, 48, 33, 0.1); }
}

.calendar-slot span,
.calendar-slot small {
  display: block;
}

.calendar-slot span {
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
}

.calendar-slot small {
  font-size: 6px;
  line-height: 1.3;
}

.calendar-activity {
  min-height: 57px;
  padding: 9px 11px;
  border-top: 1px solid #e8ece9;
  background: #f7f9f7;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 8px;
}

.calendar-activity > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e9eeeb;
  color: #728078;
  font-size: 10px;
}

.calendar-activity.free > span {
  background: rgba(52, 168, 83, 0.12);
  color: #23823d;
}

.calendar-activity.busy > span {
  background: rgba(234, 67, 53, 0.1);
  color: #c33d32;
}

.calendar-activity.booked > span {
  background: rgba(66, 133, 244, 0.13);
  color: #2f6ac8;
}

.calendar-activity.pending > span {
  background: rgba(251, 188, 5, 0.16);
  color: #9a6900;
}

.calendar-activity strong,
.calendar-activity small {
  display: block;
}

.calendar-activity strong {
  margin-bottom: 3px;
  font-size: 8px;
}

.calendar-activity small {
  color: #738078;
  font-size: 6px;
  line-height: 1.35;
}

.whatsapp-simulator.active,
.voice-simulator.active {
  display: grid;
}

.whatsapp-simulator {
  grid-template-columns: minmax(320px, 0.82fr) minmax(290px, 0.75fr);
  align-items: center;
  gap: 24px;
  padding: 24px 38px;
  background:
    radial-gradient(circle at 28% 40%, rgba(41, 192, 112, 0.1), transparent 24rem),
    #060907;
}

.phone-shell {
  position: relative;
  justify-self: center;
  width: 330px;
  height: 610px;
  padding: 9px;
  border: 1px solid #33443a;
  border-radius: 41px;
  background: #111713;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.58), inset 0 0 0 2px #050706;
}

.phone-island {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 50%;
  width: 78px;
  height: 21px;
  border-radius: 20px;
  background: #050605;
  transform: translateX(-50%);
}

.wa-app {
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(rgba(227, 221, 207, 0.86), rgba(227, 221, 207, 0.86)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(80, 90, 83, 0.05) 21px);
  color: #1f2b24;
  display: grid;
  grid-template-rows: 68px auto 1fr auto 54px;
}

.wa-header {
  padding: 13px 12px 8px;
  background: #f8faf8;
  display: grid;
  grid-template-columns: 16px 36px 1fr auto;
  align-items: center;
  gap: 8px;
}

.wa-header > span:first-child {
  color: #1f9a59;
  font-size: 24px;
}

.wa-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e6a43;
  color: #fff;
  font: 700 8px/1 var(--font-mono);
}

.wa-header strong,
.wa-header small {
  display: block;
}

.wa-header strong {
  max-width: 145px;
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wa-header small {
  color: #7b877f;
  font-size: 7px;
}

.wa-header-actions {
  color: #4a6454;
  font-size: 14px;
}

.wa-encryption {
  justify-self: center;
  margin: 7px 0 2px;
  padding: 5px 8px;
  border-radius: 6px;
  background: #fff5cf;
  color: #7f7451;
  font-size: 6px;
}

.wa-inline-calendar {
  display: none;
}

.wa-messages {
  padding: 8px 10px;
}

.wa-message {
  position: relative;
  max-width: 82%;
  margin-bottom: 7px;
  padding: 7px 9px 12px;
  border-radius: 8px;
  font-size: 8px;
  line-height: 1.45;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.07);
  white-space: pre-wrap;
}

.wa-message.assistant {
  margin-right: auto;
  border-top-left-radius: 2px;
  background: #fff;
}

.wa-message.user {
  margin-left: auto;
  border-top-right-radius: 2px;
  background: #d9fdd3;
}

.wa-message time {
  position: absolute;
  right: 6px;
  bottom: 3px;
  color: #8a958e;
  font-size: 5px;
}

.wa-message.typing {
  display: flex;
  gap: 3px;
  padding-bottom: 8px;
}

.wa-message.typing i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8b968f;
  animation: typing 1s ease-in-out infinite;
}

.wa-quick {
  padding: 5px 9px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
}

.wa-compose {
  padding: 6px 7px;
  background: #f2f4f2;
  display: grid;
  grid-template-columns: 22px 1fr 34px;
  align-items: center;
  gap: 4px;
}

.wa-compose > span {
  color: #51645a;
  font-size: 18px;
}

.wa-compose input {
  min-width: 0;
  height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: #263029;
  outline: 0;
  font-size: 9px;
}

.wa-compose button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #198b50;
}

.wa-explainer {
  max-width: 330px;
}

.wa-demo-side {
  min-width: 0;
  height: 610px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
}

.wa-calendar-card {
  min-height: 0;
}

.wa-demo-side .wa-explainer {
  max-width: none;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10, 16, 12, 0.88);
}

.wa-demo-side .wa-explainer h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.wa-demo-side .wa-explainer > p {
  margin-bottom: 7px;
  font-size: 10px;
}

.wa-explainer h3,
.callback-card h3,
.system-summary h3 {
  margin: 4px 0 16px;
  font-size: 32px;
  font-weight: 600;
}

.wa-explainer > p,
.callback-card > p,
.system-summary > p {
  color: var(--muted);
  font-size: 13px;
}

.wa-explainer ul {
  margin: 25px 0;
  padding: 0;
  list-style: none;
}

.wa-explainer li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
}

.wa-explainer li span {
  color: var(--green);
  font: 400 8px/1 var(--font-mono);
}

.wa-explainer > small {
  display: block;
  color: var(--muted-2);
  font-size: 9px;
  line-height: 1.5;
}

.voice-simulator {
  grid-template-columns: minmax(340px, 1fr) minmax(260px, 0.65fr);
  gap: 16px;
  padding: 24px;
}

.voice-demo-card,
.callback-card,
.voice-calendar-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0a100c;
}

.voice-side-stack {
  min-width: 0;
  min-height: 620px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
}

.voice-calendar-card {
  min-height: 0;
  overflow: hidden;
  background: #f8faf8;
  color: #263029;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.voice-calendar-head {
  min-height: 56px;
  padding: 10px 13px;
  border-bottom: 1px solid #e4eae6;
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  gap: 9px;
}

.voice-calendar-head strong,
.voice-calendar-head small {
  display: block;
}

.voice-calendar-head strong {
  font-size: 10px;
}

.voice-calendar-head small {
  margin-top: 3px;
  color: #718078;
  font-size: 7px;
}

.voice-calendar-head small i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 4px;
  border-radius: 50%;
  background: #34a853;
  box-shadow: 0 0 0 4px rgba(52, 168, 83, 0.08);
}

.voice-calendar-title {
  padding: 11px 13px 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.voice-calendar-title small,
.voice-calendar-title strong {
  display: block;
}

.voice-calendar-title small {
  margin-bottom: 4px;
  color: #77847c;
  font: 600 6px/1 var(--font-mono);
  letter-spacing: 0.08em;
}

.voice-calendar-title strong {
  max-width: 135px;
  font-size: 12px;
  line-height: 1.2;
}

.voice-calendar-card .calendar-legend {
  padding-bottom: 8px;
  gap: 9px;
  font-size: 6px;
}

.voice-calendar-slots {
  padding: 8px 11px;
  gap: 6px;
}

.voice-calendar-slots .calendar-slot {
  min-height: 48px;
  padding: 7px;
}

.voice-calendar-activity {
  min-height: 51px;
  padding-block: 7px;
}

.voice-calendar-note {
  min-height: 31px;
  padding: 0 12px;
  border-top: 1px solid #e6ebe8;
  background: #f1f5f2;
  color: #68766d;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 6px;
}

.voice-calendar-note span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34a853;
  box-shadow: 0 0 8px rgba(52, 168, 83, 0.45);
}

.voice-demo-card {
  min-height: 620px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}

.voice-card-head {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}

.voice-card-head .section-index {
  margin: 0;
}

.voice-timer {
  color: var(--muted);
  font: 400 10px/1 var(--font-mono);
}

.voice-main {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.large-orb {
  width: 145px;
  height: 145px;
  margin-bottom: 24px;
}

.large-orb.listening,
.drawer-orb.listening {
  animation: voiceListening 1.4s ease-in-out infinite;
}

.large-orb.speaking,
.drawer-orb.speaking {
  animation: voiceSpeaking 0.8s ease-in-out infinite alternate;
}

@keyframes voiceListening {
  50% { box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.28), 0 0 0 15px rgba(82, 245, 162, 0.07), 0 0 60px rgba(82, 245, 162, 0.45); }
}

@keyframes voiceSpeaking {
  to { transform: scale(1.055); filter: saturate(1.25); }
}

.voice-state {
  margin-bottom: 7px;
  color: var(--green);
  font: 400 9px/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.voice-main h3 {
  margin: 0 0 10px;
  font-size: 25px;
}

.voice-main > p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.voice-transcript {
  width: min(420px, 100%);
  max-height: 80px;
  margin-top: 15px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-y: auto;
  color: var(--muted);
  font-size: 10px;
  text-align: left;
}

.voice-controls {
  padding: 12px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.voice-control {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.voice-control > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--panel-3);
  font: 700 9px/1 var(--font-mono);
}

.voice-control.primary > span {
  width: 62px;
  height: 62px;
  border-color: var(--green);
  background: var(--green);
  color: #07130b;
  box-shadow: 0 0 30px rgba(82, 245, 162, 0.25);
}

.voice-control.danger > span {
  color: var(--danger);
}

.voice-control:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.voice-control small {
  color: var(--muted-2);
  font-size: 8px;
}

.voice-foot {
  min-height: 42px;
  padding: 0 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 8px;
}

.voice-foot span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.voice-foot i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.callback-card {
  padding: 0;
  overflow: hidden;
}

.callback-card summary {
  min-height: 64px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}

.callback-card summary::-webkit-details-marker {
  display: none;
}

.callback-card summary small,
.callback-card summary strong {
  display: block;
}

.callback-card summary small {
  margin-bottom: 4px;
  color: var(--green);
  font: 500 6px/1 var(--font-mono);
  letter-spacing: 0.1em;
}

.callback-card summary strong {
  font-size: 10px;
}

.callback-card summary > i {
  color: var(--muted);
  font-style: normal;
  font-size: 17px;
  transition: transform 0.2s ease;
}

.callback-card[open] summary > i {
  transform: rotate(45deg);
}

.callback-content {
  padding: 0 15px 13px;
  border-top: 1px solid var(--line);
}

.callback-content > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.4;
}

#callbackForm {
  margin-top: 10px;
}

#callbackForm > label:first-child {
  font-size: 7px;
}

.phone-input {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  overflow: hidden;
}

.phone-input > span {
  height: 100%;
  padding: 0 13px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  color: var(--muted);
  font: 400 10px/1 var(--font-mono);
}

.phone-input input {
  min-width: 0;
  height: 100%;
  padding: 0 12px;
  border: 0;
  background: transparent;
  outline: 0;
  font-size: 12px;
}

.consent-check {
  margin: 8px 0;
  display: grid !important;
  grid-template-columns: 16px 1fr;
  align-items: start;
  gap: 9px;
  color: var(--muted) !important;
  font-size: 7px !important;
  line-height: 1.45;
  text-transform: none !important;
}

.consent-check input {
  width: 15px;
  height: 15px;
  accent-color: var(--green);
}

#callbackForm .button {
  width: 100%;
}

.callback-status {
  min-height: 18px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
}

.callback-status.error {
  color: #ff9a9e;
}

.callback-status.success {
  color: var(--green);
}

.admin-simulator {
  position: relative;
  padding: 24px;
}

.admin-shell {
  height: 620px;
  border: 1px solid #26332b;
  border-radius: 14px;
  overflow: hidden;
  background: #f2f4f2;
  color: #1c261f;
  display: grid;
  grid-template-columns: 175px 1fr;
}

.admin-side {
  padding: 19px 12px;
  background: #101a14;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.admin-logo {
  padding: 0 7px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 9px;
}

.admin-logo span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 7px;
  background: var(--green);
  color: #102118;
  font: 700 8px/1 var(--font-mono);
}

.admin-logo strong {
  max-width: 100px;
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-side nav {
  margin-top: 17px;
  display: grid;
  gap: 4px;
}

.admin-side nav button {
  min-height: 38px;
  padding: 0 9px;
  border-radius: 7px;
  background: transparent;
  color: #829388;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 7px;
  text-align: left;
  font-size: 9px;
  cursor: pointer;
}

.admin-side nav button.active {
  background: rgba(82, 245, 162, 0.1);
  color: #f3fff7;
}

.admin-side nav button > span {
  color: var(--green);
}

.admin-side nav button i {
  display: grid;
  place-items: center;
  min-width: 16px;
  height: 16px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
  color: #b8c7bd;
  font: normal 6px/1 var(--font-mono);
}

.admin-ai-state {
  margin-top: auto;
  padding: 10px;
  border: 1px solid rgba(82, 245, 162, 0.13);
  border-radius: 8px;
  background: rgba(82, 245, 162, 0.055);
  display: flex;
  align-items: center;
  gap: 9px;
}

.admin-ai-state > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(82, 245, 162, 0.65);
}

.admin-ai-state strong,
.admin-ai-state small {
  display: block;
}

.admin-ai-state strong {
  font-size: 7px;
}

.admin-ai-state small {
  color: #73857a;
  font-size: 6px;
}

.admin-main {
  min-width: 0;
  padding: 25px;
  overflow-y: auto;
}

.admin-header {
  align-items: center;
  margin-bottom: 22px;
}

.admin-header .section-index {
  margin: 0;
  color: #29975e;
}

.admin-header h3 {
  margin: 5px 0 0;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.admin-date {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7e8b83;
  font-size: 7px;
}

.admin-date i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #213b2c;
  color: #fff;
  font: normal 7px/1 var(--font-mono);
}

.admin-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 13px;
}

.admin-stat {
  padding: 12px;
  border: 1px solid #dbe1dd;
  border-radius: 8px;
  background: #fff;
}

.admin-stat span,
.admin-stat small {
  display: block;
}

.admin-stat span {
  color: #839087;
  font-size: 7px;
}

.admin-stat strong {
  display: inline-block;
  margin: 5px 0 2px;
  font: 700 21px/1 var(--font-display);
}

.admin-stat small {
  color: #35a069;
  font-size: 6px;
}

.admin-table {
  border: 1px solid #dbe1dd;
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
}

.admin-table-head,
.admin-row {
  display: grid;
  grid-template-columns: 72px minmax(130px, 1fr) 100px 80px;
  align-items: center;
  gap: 8px;
}

.admin-table-head {
  min-height: 32px;
  padding: 0 12px;
  border-bottom: 1px solid #e1e6e2;
  color: #8a958e;
  font: 400 6px/1 var(--font-mono);
  letter-spacing: 0.08em;
}

.admin-row {
  min-height: 56px;
  padding: 8px 12px;
  border-bottom: 1px solid #edf0ee;
  font-size: 8px;
}

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

.admin-row strong,
.admin-row small {
  display: block;
}

.admin-row strong {
  color: #27322b;
  font-size: 8px;
}

.admin-row small {
  color: #8a958e;
  font-size: 6px;
}

.admin-pill {
  display: inline-flex;
  width: fit-content;
  padding: 4px 6px;
  border-radius: 4px;
  background: #eef4f0;
  color: #587061;
  font: 400 6px/1 var(--font-mono);
}

.admin-pill.urgent {
  background: #fff0f0;
  color: #c15c61;
}

.admin-pill.invoice {
  background: #fff7e8;
  color: #aa7430;
}

.admin-row button {
  padding: 5px 7px;
  border: 1px solid #dce4df;
  border-radius: 5px;
  background: #fff;
  color: #355440;
  font-size: 6px;
  cursor: pointer;
}

.system-simulator {
  padding: 30px;
}

.system-demo {
  min-height: 612px;
  display: grid;
  grid-template-columns: minmax(480px, 1.2fr) minmax(220px, 0.55fr);
  align-items: center;
  gap: 20px;
}

.system-center {
  position: relative;
  min-height: 570px;
}

.system-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(82, 245, 162, 0.35);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 245, 162, 0.17), #0a120d 68%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 70px rgba(46, 214, 125, 0.14);
}

.system-core > span {
  color: var(--muted);
  font: 400 7px/1 var(--font-mono);
  letter-spacing: 0.13em;
}

.system-core strong {
  color: var(--green);
  font: 700 42px/1 var(--font-display);
}

.system-core small {
  max-width: 110px;
  margin-top: 6px;
  overflow: hidden;
  color: var(--muted);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(82, 245, 162, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 350px;
  height: 350px;
}

.orbit-two {
  width: 500px;
  height: 500px;
}

.system-node {
  position: absolute;
  z-index: 2;
  width: 155px;
  min-height: 62px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0c140f;
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  gap: 9px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.system-node > span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1px solid rgba(82, 245, 162, 0.25);
  border-radius: 8px;
  color: var(--green);
  font: 700 8px/1 var(--font-mono);
}

.system-node strong,
.system-node small {
  display: block;
}

.system-node strong {
  font-size: 9px;
}

.system-node small {
  color: var(--muted-2);
  font-size: 7px;
}

.system-node > i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(82, 245, 162, 0.7);
}

.node-voice { top: 16px; left: calc(50% - 78px); }
.node-voice > i { bottom: -4px; left: 50%; }
.node-chat { top: 112px; right: 5px; }
.node-chat > i { bottom: 7px; left: -4px; }
.node-calendar { right: 5px; bottom: 112px; }
.node-calendar > i { top: 7px; left: -4px; }
.node-mail { bottom: 16px; left: calc(50% - 78px); }
.node-mail > i { top: -4px; left: 50%; }
.node-crm { bottom: 112px; left: 5px; }
.node-crm > i { top: 7px; right: -4px; }
.node-follow { top: 112px; left: 5px; }
.node-follow > i { bottom: 7px; right: -4px; }

.system-summary {
  padding: 25px;
}

.system-kpis {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.system-kpis div {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.system-kpis strong {
  color: var(--green);
  font: 600 22px/1 var(--font-display);
}

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

.scope-section,
.video-section,
.solutions-section,
.admin-story,
.roi-section,
.process-section,
.faq-section {
  padding-block: 120px;
}

.scope-section {
  padding-top: 95px;
}

.scope-intro {
  padding: clamp(32px, 5vw, 62px);
  border: 1px solid rgba(82, 245, 162, 0.22);
  border-radius: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(45px, 8vw, 110px);
  background:
    radial-gradient(circle at 10% 0%, rgba(82, 245, 162, 0.1), transparent 32rem),
    linear-gradient(120deg, rgba(82, 245, 162, 0.025), transparent 55%),
    #08100b;
}

.scope-intro h2 {
  max-width: 760px;
  font-size: clamp(38px, 4.7vw, 64px);
}

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

.scope-copy {
  align-self: end;
}

.scope-copy > p {
  color: #b9c9be;
  font-size: 14px;
}

.scope-badges,
.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.scope-badges {
  margin-top: 25px;
}

.scope-badges span,
.solution-tags span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font: 500 8px/1 var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.clinic-case {
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 20px 20px;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1.22fr);
  overflow: hidden;
  background: #080d0a;
}

.clinic-case-copy {
  padding: clamp(32px, 5vw, 62px);
  border-right: 1px solid var(--line);
}

.case-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--green);
  font: 600 9px/1.2 var(--font-mono);
  letter-spacing: 0.12em;
}

.case-label i,
.mock-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.clinic-case-copy h3 {
  max-width: 560px;
  font-size: clamp(28px, 3vw, 40px);
}

.clinic-case-copy > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}

.clinic-flow {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.clinic-flow li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
}

.clinic-flow li > span {
  padding-top: 2px;
  color: var(--green);
  font: 500 8px/1 var(--font-mono);
}

.clinic-flow strong,
.clinic-flow small {
  display: block;
}

.clinic-flow strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.clinic-flow small {
  color: var(--muted-2);
  font-size: 10px;
}

.case-result {
  margin-top: 25px;
  padding: 17px;
  border: 1px solid rgba(82, 245, 162, 0.2);
  border-radius: 10px;
  background: rgba(82, 245, 162, 0.045);
}

.case-result span,
.case-result strong {
  display: block;
}

.case-result span {
  margin-bottom: 7px;
  color: var(--green);
  font: 600 8px/1 var(--font-mono);
  letter-spacing: 0.1em;
}

.case-result strong {
  color: #d8e5dc;
  font-size: 11px;
}

.crm-example {
  min-width: 0;
  margin: 0;
  padding: clamp(25px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(188, 225, 204, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188, 225, 204, 0.025) 1px, transparent 1px),
    #060a08;
  background-size: 30px 30px;
}

.crm-example-image,
.crm-example-mock {
  width: 100%;
  min-height: 440px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: #0b110d;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.crm-example-image {
  max-height: 560px;
  object-fit: cover;
  object-position: top center;
}

.crm-example-mock {
  padding: clamp(18px, 2.6vw, 30px);
  overflow: hidden;
}

.crm-example-mock > header {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mock-client-brand,
.mock-client-brand > div {
  display: flex;
  align-items: center;
}

.mock-client-brand {
  gap: 11px;
}

.mock-client-brand > span {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(82, 245, 162, 0.32);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--green);
  font: 700 10px/1 var(--font-mono);
}

.mock-client-brand > div {
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}

.mock-client-brand strong {
  font: 700 10px/1 var(--font-mono);
  letter-spacing: 0.06em;
}

.mock-client-brand small,
.mock-live {
  color: var(--muted-2);
  font: 500 7px/1 var(--font-mono);
  letter-spacing: 0.08em;
}

.mock-live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
}

.crm-kpis {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.crm-kpis > div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
}

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

.crm-kpis small {
  color: var(--muted-2);
  font: 500 7px/1 var(--font-mono);
}

.crm-kpis strong {
  margin: 8px 0 5px;
  color: var(--text);
  font: 600 26px/1 var(--font-display);
}

.crm-kpis span {
  overflow: hidden;
  color: var(--green);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm-table {
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
}

.crm-table > div {
  min-width: 540px;
  min-height: 52px;
  padding: 0 14px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 0.45fr 0.75fr;
  align-items: center;
  gap: 10px;
  color: #afbeb4;
  font-size: 9px;
}

.crm-table > div:first-child {
  border-top: 0;
}

.crm-table .crm-table-head {
  min-height: 36px;
  background: rgba(255, 255, 255, 0.018);
  color: var(--muted-2);
  font: 500 7px/1 var(--font-mono);
  text-transform: uppercase;
}

.crm-table > div > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #07110b;
  font: 700 7px/1 var(--font-mono);
  font-style: normal;
}

.avatar.mint { background: #52f5a2; }
.avatar.blue { background: #75a7ff; }
.avatar.amber { background: #e5be70; }

.calendar-color {
  width: 4px;
  height: 18px;
  border-radius: 5px;
}

.calendar-color.first { background: #52f5a2; }
.calendar-color.review { background: #75a7ff; }
.calendar-color.test { background: #e5be70; }

.status {
  width: fit-content;
  padding: 6px 8px;
  border-radius: 999px;
  font: 600 7px/1 var(--font-mono);
}

.status.confirmed {
  background: rgba(82, 245, 162, 0.1);
  color: var(--green);
}

.status.pending {
  background: rgba(229, 190, 112, 0.1);
  color: #e5be70;
}

.crm-automation {
  margin-top: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-2);
  font: 500 7px/1 var(--font-mono);
}

.crm-automation i {
  color: var(--green);
  font-style: normal;
}

.crm-automation strong {
  margin-left: auto;
  color: var(--green);
  font-size: 7px;
}

.crm-example figcaption {
  margin-top: 14px;
  color: var(--muted-2);
  font-size: 9px;
}

.crm-example figcaption span {
  margin-right: 8px;
  color: var(--green);
  font: 600 8px/1 var(--font-mono);
  text-transform: uppercase;
}

.video-grid,
.admin-story-grid,
.roi-grid,
.trust-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(430px, 1.25fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.video-copy h2,
.admin-story-copy h2,
.roi-copy h2,
.trust-copy h2,
.faq-grid > div h2,
.contact-copy h2 {
  font-size: clamp(36px, 4vw, 54px);
}

.video-copy > p,
.admin-story-copy > p,
.roi-copy > p,
.trust-copy > p,
.faq-grid > div > p,
.contact-copy > p {
  margin: 25px 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-list {
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
}

.feature-list li > span {
  color: var(--green);
  font: 400 8px/1.4 var(--font-mono);
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list strong {
  margin-bottom: 2px;
  font-size: 12px;
}

.feature-list small {
  color: var(--muted-2);
  font-size: 10px;
}

.video-placeholder {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(82, 245, 162, 0.12), transparent 30%),
    linear-gradient(rgba(188, 225, 204, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188, 225, 204, 0.035) 1px, transparent 1px),
    #0a100c;
  background-size: auto, 42px 42px, 42px 42px, auto;
  box-shadow: var(--shadow);
}

.video-placeholder video {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.video-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.video-play {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(82, 245, 162, 0.4);
  border-radius: 50%;
  background: rgba(82, 245, 162, 0.08);
  color: var(--green);
  font-size: 19px;
}

.video-empty > div {
  max-width: 410px;
  padding-inline: 20px;
}

.video-empty .section-index {
  margin-bottom: 8px;
}

.video-empty strong,
.video-empty small {
  display: block;
}

.video-empty strong {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 18px;
}

.video-empty small {
  color: var(--muted-2);
  font-size: 11px;
}

.video-corner {
  position: absolute;
  z-index: 2;
  color: var(--muted-2);
  font: 400 8px/1 var(--font-mono);
  letter-spacing: 0.1em;
}

.video-corner.top {
  top: 16px;
  right: 17px;
}

.video-corner.bottom {
  left: 17px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.video-corner.bottom i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.solutions-section {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

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

.solution-card {
  position: relative;
  min-height: 485px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  background: #0a0f0c;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.solution-card:hover {
  border-color: rgba(82, 245, 162, 0.28);
  transform: translateY(-3px);
}

.solution-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--muted-2);
  font: 400 9px/1 var(--font-mono);
}

.solution-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--green);
}

.solution-card h3 {
  max-width: 350px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
}

.solution-card p {
  color: var(--muted);
  font-size: 12px;
}

.solution-visual {
  position: relative;
  height: 150px;
  margin: -2px 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
  background:
    linear-gradient(rgba(188, 225, 204, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188, 225, 204, 0.025) 1px, transparent 1px),
    #08100b;
  background-size: 22px 22px;
}

.voice-visual {
  display: grid;
  place-items: center;
}

.visual-state,
.visual-time {
  position: absolute;
  color: var(--muted-2);
  font: 500 7px/1 var(--font-mono);
  letter-spacing: 0.08em;
}

.visual-state {
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}

.visual-state i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.visual-time {
  right: 14px;
  bottom: 13px;
}

.voice-lines {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.voice-lines i {
  width: 5px;
  height: 45%;
  border-radius: 20px;
  background: linear-gradient(var(--green), rgba(82, 245, 162, 0.1));
  animation: lineWave 1.5s ease-in-out infinite alternate;
}

.voice-lines i:nth-child(2) { height: 75%; animation-delay: -0.7s; }
.voice-lines i:nth-child(3) { height: 95%; animation-delay: -0.3s; }
.voice-lines i:nth-child(4) { height: 62%; animation-delay: -1s; }
.voice-lines i:nth-child(5) { height: 34%; animation-delay: -0.5s; }

@keyframes lineWave {
  to { transform: scaleY(0.35); opacity: 0.45; }
}

.text-link {
  width: 100%;
  margin-top: 18px;
  padding: 0;
  background: transparent;
  color: var(--green);
  font-size: 11px;
  cursor: pointer;
  text-align: left;
}

.text-link span {
  margin-left: 8px;
}

.conversation-visual {
  display: flex;
  align-items: center;
  gap: 16px;
}

.conversation-channels {
  display: grid;
  gap: 5px;
}

.conversation-channels span {
  min-width: 38px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted-2);
  font: 600 7px/1 var(--font-mono);
  text-align: center;
}

.conversation-channels span.active {
  border-color: rgba(82, 245, 162, 0.35);
  background: rgba(82, 245, 162, 0.08);
  color: var(--green);
}

.mini-conversation {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-conversation i {
  max-width: 90%;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 9px 9px 9px 2px;
  color: #afbeb4;
  font-size: 7px;
  font-style: normal;
}

.mini-conversation i:last-child {
  align-self: flex-end;
  border-color: rgba(82, 245, 162, 0.2);
  border-radius: 9px 9px 2px 9px;
  background: rgba(82, 245, 162, 0.07);
}

.agenda-visual header,
.crm-visual header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted-2);
  font: 500 7px/1 var(--font-mono);
}

.agenda-visual header strong {
  color: var(--green);
  font-size: 7px;
}

.calendar-mini {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

.calendar-mini > * {
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--muted-2);
  font: 400 7px/1 var(--font-mono);
}

.calendar-mini .on {
  border-color: rgba(82, 245, 162, 0.4);
  background: var(--green);
  color: #06140b;
}

.calendar-mini .booked {
  color: var(--green);
}

.agenda-event {
  margin-top: 9px;
  padding: 8px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.agenda-event > b {
  width: 3px;
  height: 25px;
  border-radius: 3px;
  background: var(--green);
}

.agenda-event strong,
.agenda-event small {
  display: block;
  font-size: 7px;
}

.agenda-event small {
  margin-top: 3px;
  color: var(--green);
}

.mail-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mail-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 6px;
}

.mail-flow span {
  min-height: 48px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #afbeb4;
  font-size: 7px;
  text-align: center;
}

.mail-flow span small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted-2);
  font: 500 6px/1 var(--font-mono);
}

.mail-flow span.active {
  border-color: rgba(82, 245, 162, 0.35);
  background: rgba(82, 245, 162, 0.07);
  color: var(--green);
}

.mail-flow i {
  color: var(--green);
  font-style: normal;
}

.mail-result {
  margin-top: 9px;
  padding: 8px 10px;
  border: 1px solid rgba(229, 190, 112, 0.18);
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 7px;
}

.mail-result > span {
  color: #e5be70;
  font: 600 6px/1 var(--font-mono);
}

.mail-result i {
  margin-left: auto;
  color: #e5be70;
  font-style: normal;
}

.crm-visual > div {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.crm-visual header i {
  color: var(--green);
  font-style: normal;
}

.crm-visual > div > b {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #07110b;
  font: 700 8px/1 var(--font-mono);
}

.crm-visual strong,
.crm-visual small {
  display: block;
  font-size: 8px;
}

.crm-visual small {
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 7px;
}

.crm-visual .crm-steps {
  margin-top: 17px;
  gap: 5px;
}

.crm-steps span {
  color: var(--muted-2);
  font: 500 6px/1 var(--font-mono);
}

.crm-steps span.active {
  color: var(--green);
}

.crm-steps i {
  flex: 1;
  height: 1px;
  background: rgba(82, 245, 162, 0.22);
}

.automation-visual {
  min-height: 150px;
}

.automation-core,
.automation-node {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(82, 245, 162, 0.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0c1811;
  color: var(--green);
  font: 700 7px/1 var(--font-mono);
}

.automation-core {
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 0 30px rgba(82, 245, 162, 0.14);
  transform: translate(-50%, -50%);
}

.automation-node {
  width: 33px;
  height: 33px;
  color: var(--muted);
}

.automation-node.node-a { top: 14px; left: 18px; }
.automation-node.node-b { top: 16px; right: 20px; }
.automation-node.node-c { right: 36px; bottom: 14px; }
.automation-node.node-d { bottom: 15px; left: 34px; }

.automation-visual > i {
  position: absolute;
  z-index: 1;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(82, 245, 162, 0.12), var(--green));
  transform-origin: center;
}

.automation-visual .line-a { top: 50px; left: 47px; transform: rotate(28deg); }
.automation-visual .line-b { top: 51px; right: 48px; transform: rotate(-28deg); }
.automation-visual .line-c { right: 56px; bottom: 48px; transform: rotate(26deg); }
.automation-visual .line-d { bottom: 48px; left: 56px; transform: rotate(-25deg); }

.solution-tags {
  margin-top: auto;
  padding-top: 18px;
}

.admin-story-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1.28fr);
}

.admin-story-copy blockquote {
  margin: 30px 0;
  padding: 20px 0 20px 22px;
  border-left: 2px solid var(--green);
}

.admin-story-copy blockquote p {
  margin-bottom: 10px;
  color: #d9e5dd;
  font-size: 14px;
}

.admin-story-copy blockquote footer {
  color: var(--muted-2);
  font: 400 8px/1.4 var(--font-mono);
  text-transform: uppercase;
}

.priority-board {
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: #0b110d;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.priority-board > header {
  height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-2);
  font: 400 8px/1 var(--font-mono);
}

.priority-board > header span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}

.priority-board > header i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.priority-score {
  padding: 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.priority-score > div:first-child > span {
  display: block;
  color: var(--text);
  font: 600 55px/1 var(--font-display);
}

.priority-score small {
  color: var(--muted);
  font-size: 10px;
}

.score-ring {
  width: 92px;
  height: 92px;
  padding: 8px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 82%, var(--panel-3) 82%);
}

.score-ring span {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0b110d;
  display: grid;
  place-items: center;
  font: 600 16px/1 var(--font-display);
}

.priority-items {
  padding: 14px;
}

.priority-items article {
  min-height: 76px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 12px;
}

.priority-items article:last-child {
  border-bottom: 0;
}

.priority-tag {
  width: fit-content;
  padding: 5px 6px;
  border-radius: 4px;
  font: 400 7px/1 var(--font-mono);
}

.priority-tag.urgent { background: rgba(255, 111, 117, 0.1); color: #ff8b90; }
.priority-tag.invoice { background: rgba(246, 191, 104, 0.1); color: var(--warning); }
.priority-tag.task { background: rgba(82, 245, 162, 0.1); color: var(--green); }

.priority-items strong,
.priority-items small {
  display: block;
}

.priority-items strong {
  font-size: 11px;
}

.priority-items small {
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 9px;
}

.priority-items button {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 8px;
}

.roi-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(rgba(188, 225, 204, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188, 225, 204, 0.025) 1px, transparent 1px),
    #080d0a;
  background-size: 48px 48px;
}

.roi-grid {
  align-items: start;
}

.roi-disclaimer {
  margin-top: 35px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted-2);
  font-size: 9px;
}

.roi-calculator {
  padding: 35px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: rgba(7, 12, 9, 0.96);
  box-shadow: var(--shadow);
}

.range-field {
  margin-bottom: 30px;
}

.range-field > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.range-field label {
  color: #cbd7ce;
  font-size: 11px;
}

.range-field output {
  min-width: 68px;
  color: var(--green);
  font: 700 15px/1 var(--font-mono);
  text-align: right;
}

.range-field input {
  width: 100%;
  height: 4px;
  margin: 18px 0 5px;
  appearance: none;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green) var(--range-progress, 12%), var(--panel-3) var(--range-progress, 12%));
}

.range-field input::-webkit-slider-thumb {
  width: 17px;
  height: 17px;
  appearance: none;
  border: 4px solid #0c1610;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
  cursor: pointer;
}

.range-field input::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 4px solid #0c1610;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
  cursor: pointer;
}

.range-scale {
  display: flex;
  justify-content: space-between;
  color: var(--muted-2);
  font: 400 7px/1 var(--font-mono);
}

.roi-results {
  margin: 35px 0 20px;
  border-top: 1px solid var(--line);
}

.roi-results div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.roi-results strong {
  color: var(--text);
  font: 600 22px/1 var(--font-display);
}

.roi-results div:last-child strong {
  color: var(--green);
}

.roi-calculator .button {
  width: 100%;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 145px;
  display: grid;
  grid-template-columns: 60px 44px 1fr;
  gap: 20px;
}

.process-number {
  padding-top: 5px;
  color: var(--green);
  font: 400 11px/1 var(--font-mono);
}

.process-line {
  position: relative;
  display: flex;
  justify-content: center;
}

.process-line::after {
  content: "";
  position: absolute;
  top: 15px;
  bottom: -15px;
  width: 1px;
  background: var(--line);
}

.process-list li:last-child .process-line::after {
  display: none;
}

.process-line i {
  z-index: 1;
  width: 11px;
  height: 11px;
  margin-top: 2px;
  border: 3px solid var(--bg);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(82, 245, 162, 0.4);
}

.process-time {
  color: var(--muted-2);
}

.process-list h3 {
  margin: 8px 0 8px;
  font-size: 24px;
  font-weight: 600;
}

.process-list p {
  max-width: 650px;
  color: var(--muted);
  font-size: 12px;
}

.trust-section {
  padding-block: 100px;
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

.security-section {
  position: relative;
  padding-block: 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(82, 245, 162, 0.09), transparent 34rem),
    radial-gradient(circle at 8% 85%, rgba(38, 120, 78, 0.1), transparent 30rem),
    #040806;
}

.security-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(179, 221, 197, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179, 221, 197, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
  pointer-events: none;
}

.security-section .section-shell {
  position: relative;
}

.security-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.security-heading h2 {
  max-width: 900px;
  margin-top: 18px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.97;
  letter-spacing: -0.065em;
}

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

.security-heading > p {
  max-width: 490px;
  padding-bottom: 5px;
  color: #a8b9ae;
  font-size: 14px;
  line-height: 1.75;
}

.security-command {
  display: grid;
  grid-template-columns: minmax(500px, 1.12fr) minmax(380px, 0.88fr);
  gap: 14px;
}

.security-shield-stage,
.security-risk-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(6, 13, 9, 0.94);
}

.security-shield-stage {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 44%, rgba(82, 245, 162, 0.14), transparent 18rem),
    linear-gradient(145deg, rgba(12, 31, 20, 0.9), rgba(4, 9, 6, 0.98));
}

.security-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
  background:
    linear-gradient(rgba(82, 245, 162, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 245, 162, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, #000, transparent 75%);
}

.security-ring {
  position: absolute;
  top: 44%;
  left: 50%;
  border: 1px solid rgba(82, 245, 162, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: securityOrbit 18s linear infinite;
}

.security-ring::before,
.security-ring::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(82, 245, 162, 0.9);
}

.security-ring::before {
  top: -4px;
  left: 50%;
}

.security-ring::after {
  right: 7%;
  bottom: 14%;
  opacity: 0.45;
}

.security-ring.ring-one {
  width: 320px;
  height: 320px;
}

.security-ring.ring-two {
  width: 430px;
  height: 430px;
  border-style: dashed;
  opacity: 0.5;
  animation-direction: reverse;
  animation-duration: 30s;
}

.security-shield {
  position: absolute;
  top: 43%;
  left: 50%;
  z-index: 4;
  width: 190px;
  height: 220px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 28px rgba(82, 245, 162, 0.18));
  animation: securityShieldBreath 4s ease-in-out infinite;
}

.security-shield svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: rgba(7, 39, 23, 0.88);
  stroke: var(--green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.security-shield svg path:last-child {
  fill: none;
  stroke-width: 5;
}

.security-shield span {
  position: relative;
  margin-top: 104px;
  color: #dffceb;
  font: 600 9px/1.45 var(--font-mono);
  letter-spacing: 0.12em;
  text-align: center;
}

.security-threat {
  --move-x: 145px;
  --move-y: 105px;
  position: absolute;
  z-index: 3;
  min-height: 42px;
  padding: 8px 11px 8px 8px;
  border: 1px solid rgba(255, 128, 112, 0.26);
  border-radius: 10px;
  background: rgba(25, 10, 9, 0.88);
  color: #d9c0ba;
  display: flex;
  align-items: center;
  gap: 8px;
  font: 500 8px/1.25 var(--font-mono);
  letter-spacing: 0.045em;
  box-shadow: 0 9px 30px rgba(0, 0, 0, 0.25);
  animation: securityThreatBlocked 8s ease-in-out infinite;
}

.security-threat i {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: rgba(255, 104, 84, 0.12);
  color: #ff917f;
  font-style: normal;
}

.threat-prompt {
  top: 11%;
  left: 3%;
}

.threat-cost {
  --move-x: -145px;
  --move-y: 95px;
  top: 14%;
  right: 3%;
  animation-delay: -2s;
}

.threat-access {
  --move-x: 150px;
  --move-y: -80px;
  bottom: 26%;
  left: 3%;
  animation-delay: -4s;
}

.threat-data {
  --move-x: -150px;
  --move-y: -84px;
  right: 3%;
  bottom: 27%;
  animation-delay: -6s;
}

.security-block-pulse {
  position: absolute;
  top: 43%;
  left: 50%;
  z-index: 2;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(82, 245, 162, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: securityBlockPulse 4s ease-out infinite;
}

.security-block-pulse.pulse-two {
  animation-delay: -2s;
}

.security-status-console {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 5;
  padding: 13px;
  border: 1px solid rgba(82, 245, 162, 0.14);
  border-radius: 11px;
  background: rgba(4, 11, 7, 0.84);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.security-status-console span {
  color: #9db0a3;
  font: 500 7px/1.3 var(--font-mono);
  text-align: center;
}

.security-status-console i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(82, 245, 162, 0.8);
  animation: calendarLivePulse 2.2s ease-in-out infinite;
}

.security-risk-panel {
  padding: 28px;
}

.security-risk-panel .capability-index {
  display: block;
  margin-bottom: 23px;
}

.security-risks {
  display: grid;
  gap: 7px;
}

.security-risks article {
  min-height: 111px;
  padding: 17px;
  border: 1px solid rgba(185, 215, 198, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.014);
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: start;
  gap: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.security-risks article:hover {
  border-color: rgba(255, 137, 116, 0.24);
  transform: translateX(3px);
}

.security-risks article > span {
  color: #ff8d78;
  font: 500 8px/1.4 var(--font-mono);
}

.security-risks h3 {
  margin: 0 0 7px;
  font-size: 14px;
}

.security-risks p {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.security-risks article > i {
  padding: 5px 7px;
  border: 1px solid rgba(255, 129, 108, 0.14);
  border-radius: 5px;
  color: #b98175;
  font: 500 6px/1 var(--font-mono);
  font-style: normal;
  letter-spacing: 0.08em;
}

.security-layers {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.security-layers article {
  min-height: 230px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(82, 245, 162, 0.03), transparent 55%),
    #07100b;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 15px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.security-layers article:hover {
  border-color: rgba(82, 245, 162, 0.3);
  transform: translateY(-3px);
}

.security-layer-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(82, 245, 162, 0.24);
  border-radius: 11px;
  background: rgba(82, 245, 162, 0.055);
  color: var(--green);
  display: grid;
  place-items: center;
  font: 500 14px/1 var(--font-mono);
}

.security-layers small {
  color: var(--green);
  font: 500 7px/1 var(--font-mono);
  letter-spacing: 0.1em;
}

.security-layers h3 {
  margin: 28px 0 10px;
  font-size: 17px;
}

.security-layers p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.security-footnote {
  margin-top: 8px;
  padding: 20px 22px;
  border: 1px solid rgba(82, 245, 162, 0.13);
  border-radius: 12px;
  background: rgba(82, 245, 162, 0.025);
  display: grid;
  grid-template-columns: 270px 1fr;
  align-items: center;
  gap: 30px;
}

.security-footnote span {
  color: #c9e9d6;
  font: 500 8px/1.4 var(--font-mono);
  letter-spacing: 0.07em;
}

.security-footnote span i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(82, 245, 162, 0.7);
}

.security-footnote p {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.65;
}

@keyframes securityOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes securityShieldBreath {
  0%, 100% { filter: drop-shadow(0 0 22px rgba(82, 245, 162, 0.16)); }
  50% { filter: drop-shadow(0 0 38px rgba(82, 245, 162, 0.34)); }
}

@keyframes securityThreatBlocked {
  0%, 8% {
    opacity: 0;
    transform: translate(0, 0) scale(0.88);
  }
  17%, 38% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  60% {
    opacity: 0.95;
    border-color: rgba(255, 126, 105, 0.4);
    transform: translate(var(--move-x), var(--move-y)) scale(0.92);
  }
  64%, 100% {
    opacity: 0;
    border-color: rgba(82, 245, 162, 0.4);
    transform: translate(var(--move-x), var(--move-y)) scale(0.5);
  }
}

@keyframes securityBlockPulse {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.7);
  }
  80%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.7);
  }
}

.faq-grid {
  align-items: start;
}

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

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

.faq-list summary {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--green);
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

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

.faq-list details p {
  max-width: 680px;
  padding: 0 45px 22px 0;
  color: var(--muted);
  font-size: 12px;
}

.contact-section {
  position: relative;
  padding-block: 120px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 45%, rgba(51, 207, 124, 0.12), transparent 28rem),
    #070c09;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(188, 225, 204, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(188, 225, 204, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 60%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
}

.contact-points {
  margin: 30px 0;
  display: grid;
  gap: 8px;
}

.contact-points span {
  color: #c1cec5;
  font-size: 11px;
}

.contact-points i {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid rgba(82, 245, 162, 0.3);
  border-radius: 50%;
  color: var(--green);
  font-style: normal;
  font-size: 8px;
}

.whatsapp-direct {
  width: min(390px, 100%);
  min-height: 70px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.018);
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}

.whatsapp-direct:hover {
  border-color: rgba(82, 245, 162, 0.35);
}

.whatsapp-direct small,
.whatsapp-direct strong {
  display: block;
}

.whatsapp-direct small {
  color: var(--muted-2);
  font-size: 8px;
}

.whatsapp-direct strong {
  font-size: 11px;
}

.whatsapp-direct > span:last-child {
  color: var(--green);
}

.contact-form-card {
  padding: 35px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(10, 16, 12, 0.96);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-heading > span {
  color: var(--green);
  font: 400 9px/1 var(--font-mono);
  letter-spacing: 0.1em;
}

.form-heading small {
  color: var(--muted-2);
  font-size: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-form-card label {
  display: block;
  margin-bottom: 14px;
}

.contact-form-card input,
.contact-form-card textarea {
  padding: 0 13px;
  font-size: 11px;
}

.contact-form-card input {
  height: 46px;
}

.contact-form-card textarea {
  padding-block: 12px;
  resize: vertical;
}

.form-consent {
  margin-block: 7px 18px !important;
}

.form-submit {
  width: 100%;
}

.form-privacy {
  display: block;
  margin-top: 12px;
  color: var(--muted-2);
  font-size: 8px;
  line-height: 1.45;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.form-message {
  margin-bottom: 18px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 10px;
}

.form-message.success {
  border-color: rgba(82, 245, 162, 0.3);
  background: rgba(82, 245, 162, 0.05);
  color: #b8f9d2;
}

.form-message.error {
  border-color: rgba(255, 111, 117, 0.3);
  background: rgba(255, 111, 117, 0.05);
  color: #ffb1b5;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #040605;
}

.footer-top {
  min-height: 155px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-top p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-demo-link {
  color: var(--green);
  font-size: 11px;
}

.footer-demo-link span {
  margin-left: 8px;
}

.footer-bottom {
  min-height: 58px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--muted-2);
  font: 400 8px/1.4 var(--font-mono);
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover {
  color: var(--text);
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  left: 22px;
  bottom: 22px;
  min-height: 58px;
  padding: 7px 14px 7px 7px;
  border: 1px solid rgba(72, 232, 139, 0.38);
  border-radius: 100px;
  background: rgba(8, 22, 14, 0.95);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45), 0 0 28px rgba(49, 213, 119, 0.08);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  border-color: rgba(82, 245, 162, 0.7);
}

.floating-whatsapp-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, #35dd7f, #128c4d);
  color: #fff;
  box-shadow: 0 0 22px rgba(53, 221, 127, 0.28);
}

.floating-whatsapp strong,
.floating-whatsapp small {
  display: block;
}

.floating-whatsapp strong {
  margin-bottom: 2px;
  font-size: 10px;
}

.floating-whatsapp small {
  color: #84dba9;
  font: 400 7px/1.4 var(--font-mono);
}

.floating-assistant {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  min-width: 148px;
  min-height: 58px;
  padding: 7px 11px 7px 7px;
  border: 1px solid rgba(82, 245, 162, 0.3);
  border-radius: 100px;
  background: rgba(9, 16, 11, 0.93);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.floating-assistant:hover {
  transform: translateY(-3px);
}

.floating-orb {
  width: 42px;
  height: 42px;
}

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

.floating-copy strong,
.floating-copy small {
  display: block;
}

.floating-copy strong {
  font-size: 10px;
}

.floating-copy small {
  color: var(--green);
  font: 400 7px/1.4 var(--font-mono);
}

.voice-drawer-backdrop {
  position: fixed;
  z-index: 400;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}

.voice-drawer {
  position: fixed;
  z-index: 401;
  top: 12px;
  right: 12px;
  bottom: 12px;
  width: min(860px, calc(100vw - 24px));
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: #090f0b;
  box-shadow: -30px 0 100px rgba(0, 0, 0, 0.6);
  transform: translateX(calc(100% + 25px));
  transition: transform 0.28s ease;
  overflow: hidden;
}

.voice-drawer.open {
  transform: translateX(0);
}

.voice-drawer > header {
  height: 68px;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.voice-drawer > header > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.voice-drawer header strong,
.voice-drawer header small {
  display: block;
}

.voice-drawer header strong {
  font-size: 11px;
}

.voice-drawer header small {
  color: var(--muted-2);
  font-size: 8px;
}

.voice-drawer header small i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--green);
}

.voice-drawer header button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--panel-2);
  color: var(--muted);
  cursor: pointer;
  font-size: 20px;
}

.drawer-body {
  height: calc(100% - 68px);
  padding: 18px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  grid-template-rows: auto auto minmax(0, 1fr) auto auto;
  grid-template-areas:
    "intro calendar"
    "actions calendar"
    "chat calendar"
    "voice calendar"
    "disclosure calendar";
  align-items: start;
  gap: 14px 18px;
}

.drawer-intro {
  grid-area: intro;
  text-align: center;
}

.drawer-orb {
  width: 105px;
  height: 105px;
  margin: 15px auto 26px;
}

.drawer-intro h2 {
  margin-bottom: 14px;
  font-size: 26px;
  font-weight: 600;
}

.drawer-intro p {
  color: var(--muted);
  font-size: 12px;
}

.drawer-actions {
  grid-area: actions;
  margin-top: 0;
  display: grid;
  gap: 9px;
}

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

.drawer-chat {
  grid-area: chat;
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.drawer-messages {
  height: 240px;
  padding: 13px;
  background: #070b08;
}

.drawer-message {
  max-width: 88%;
  margin-bottom: 8px;
  padding: 9px 11px;
  border-radius: 9px;
  font-size: 10px;
  line-height: 1.5;
}

.drawer-message.assistant {
  margin-right: auto;
  border: 1px solid var(--line);
  background: var(--panel-2);
}

.drawer-message.user {
  margin-left: auto;
  background: var(--green-dark);
  color: #dffbec;
}

.drawer-suggestions {
  padding: 8px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 5px;
  overflow-x: auto;
}

.drawer-suggestions button {
  flex: 0 0 auto;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  font-size: 8px;
  cursor: pointer;
}

.drawer-chat form {
  min-height: 48px;
  padding: 7px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 6px;
}

.drawer-chat form input {
  min-width: 0;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  outline: 0;
  font-size: 10px;
}

.drawer-voice-state {
  grid-area: voice;
  margin-top: 0;
  padding: 16px;
  border: 1px solid rgba(82, 245, 162, 0.2);
  border-radius: 10px;
  background: rgba(82, 245, 162, 0.05);
  text-align: center;
}

.drawer-voice-state span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font: 400 9px/1 var(--font-mono);
}

.drawer-voice-state button {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-size: 9px;
  cursor: pointer;
}

.drawer-disclosure {
  grid-area: disclosure;
  display: block;
  margin-top: 0;
  color: var(--muted-2);
  font-size: 8px;
  text-align: center;
}

.drawer-calendar-card {
  grid-area: calendar;
  align-self: stretch;
  width: 100%;
  min-height: 0;
  height: 100%;
}

.drawer-calendar-card .voice-calendar-slots {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.toast-region {
  position: fixed;
  z-index: 600;
  top: 90px;
  right: 20px;
  display: grid;
  gap: 8px;
}

.toast {
  width: min(330px, calc(100vw - 40px));
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: #101712;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  color: #dce7df;
  font-size: 10px;
  animation: toastIn 0.25s ease both;
}

.toast.error {
  border-color: rgba(255, 111, 117, 0.35);
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(15px); }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 13px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

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

  .hero h1 {
    font-size: clamp(44px, 6vw, 64px);
  }

  .demo-lab {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .demo-config {
    padding: 22px;
  }

  .whatsapp-simulator {
    gap: 25px;
    padding-inline: 35px;
  }

  .mock-hero {
    padding-inline: 28px;
  }

  .mock-cards {
    padding-inline: 28px;
  }

  .system-demo {
    grid-template-columns: 1fr;
  }

  .system-summary {
    display: none;
  }

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

  .priority-flow-heading,
  .real-crm-proof {
    grid-template-columns: 1fr;
  }

  .calendar-custom-panel,
  .crm-reactivation-panel {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .priority-flow-track {
    grid-template-columns: 1fr;
  }

  .priority-flow-arrow {
    transform: rotate(90deg);
  }

  .real-crm-proof figcaption {
    grid-column: 1;
  }

  .voice-after-flow {
    grid-template-columns: 76px 1fr;
  }

  .voice-after-flow .button {
    grid-column: 2;
    justify-self: start;
  }

  .scope-intro,
  .clinic-case {
    grid-template-columns: 1fr;
  }

  .clinic-case-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .security-heading,
  .security-command {
    grid-template-columns: 1fr;
  }

  .security-heading {
    gap: 22px;
  }

  .security-heading > p {
    max-width: 720px;
  }

  .security-layers {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 0 11px;
  }

  .language-switcher {
    margin-left: auto;
    min-height: 40px;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text);
  }

  .mobile-menu {
    padding: 10px 24px 20px;
    border-top: 1px solid var(--line);
    background: rgba(5, 8, 6, 0.97);
  }

  .mobile-menu:not([hidden]) {
    display: grid;
  }

  .mobile-menu a {
    position: relative;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
  }

  .mobile-menu a.is-active {
    color: var(--green);
  }

  .mobile-menu .nav-primary {
    margin: 5px 0;
    padding: 12px 14px;
    border: 1px solid rgba(82, 245, 162, 0.24);
    color: #d8ffe9;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-console {
    width: min(620px, 100%);
    margin: 0 auto 100px;
  }

  .section-heading,
  .video-grid,
  .admin-story-grid,
  .roi-grid,
  .trust-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .demo-lab {
    grid-template-columns: 1fr;
  }

  .demo-config {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .mode-card.full {
    grid-column: span 2;
  }

  .config-step {
    max-width: 700px;
  }

  .launch-demo {
    max-width: 340px;
  }

  .privacy-note {
    max-width: 340px;
  }

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

  .scope-intro {
    gap: 30px;
  }

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

  .security-shield-stage {
    min-height: 530px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding-block: 35px;
  }

  .footer-top p {
    grid-column: span 2;
    grid-row: 2;
  }
}

@media (min-width: 701px) and (max-width: 1000px) {
  .browser-frame {
    height: 650px;
  }

  .live-calendar {
    top: 48px;
    right: 17px;
    bottom: auto;
    left: 17px;
    width: auto;
    height: 225px;
  }

  .calendar-legend {
    display: none;
  }

  .calendar-slots {
    padding: 6px 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 5px;
  }

  .calendar-slot {
    min-height: 48px;
    padding: 6px;
  }

  .calendar-slot small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .calendar-activity {
    min-height: 45px;
    padding-block: 5px;
  }

  .web-chat {
    right: 17px;
    bottom: 12px;
    left: 17px;
  }

  .chat-window {
    width: 100%;
    height: 350px;
  }
}

@media (max-width: 700px) {
  .section-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    width: calc(100% - 28px);
    height: 68px;
    gap: 8px;
  }

  .language-switcher {
    padding-inline: 9px 6px;
  }

  .language-switcher select {
    width: 38px;
    min-width: 38px;
    color: var(--text);
  }

  .language-switcher option {
    color: var(--text);
  }

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

  .hero::after {
    top: 5%;
    left: 4%;
    width: 380px;
    height: 380px;
  }

  .hero-ambient-ring.ring-a {
    right: -70%;
    width: 450px;
    height: 450px;
  }

  .hero-ambient-ring.ring-b,
  .ambient-particle.p2,
  .ambient-particle.p4,
  .ambient-particle.p6 {
    display: none;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 55px);
  }

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

  .hero-actions {
    display: grid;
  }

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

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

  .hero-proof div {
    padding: 0 10px;
  }

  .hero-proof strong {
    font-size: 13px;
  }

  .hero-proof span {
    font-size: 8px;
  }

  .hero-console {
    margin-bottom: 110px;
  }

  .console-body {
    padding: 18px;
  }

  .feed-item {
    grid-template-columns: 35px 1fr;
  }

  .feed-item time {
    display: none;
  }

  .voice-invite {
    right: 8px;
    bottom: -72px;
    width: calc(100% - 16px);
  }

  .voice-invite strong {
    font-size: 10px;
  }

  .system-map-mini {
    display: none;
  }

  .priority-flow-section {
    padding-top: 75px;
  }

  .priority-flow-heading {
    margin-bottom: 28px;
    gap: 22px;
  }

  .priority-flow-heading h2 {
    font-size: 38px;
  }

  .priority-flow-heading > p {
    font-size: 12px;
  }

  .calendar-custom-panel,
  .crm-reactivation-panel {
    padding: 22px 18px;
    border-radius: 15px;
    gap: 28px;
  }

  .capability-copy h3 {
    font-size: 31px;
  }

  .crm-memory-points {
    grid-template-columns: 1fr;
  }

  .calendar-color-board > header {
    padding-inline: 12px;
  }

  .calendar-board-hours {
    padding-inline: 10px;
    grid-template-columns: 34px 1fr;
  }

  .custom-appointment {
    padding-inline: 8px;
  }

  .reactivation-engine {
    padding: 17px 14px;
  }

  .reactivation-timeline {
    grid-template-columns: 60px 1fr 60px;
  }

  .priority-flow-step {
    min-height: 320px;
    padding: 20px;
  }

  .real-crm-proof {
    padding: 18px;
    gap: 24px;
  }

  .real-crm-proof-copy h3 {
    font-size: 30px;
  }

  .real-work-badge {
    display: none;
  }

  .voice-after-flow {
    padding: 20px;
    grid-template-columns: 58px 1fr;
    gap: 15px;
  }

  .voice-after-icon {
    width: 54px;
    height: 54px;
  }

  .voice-after-flow h3 {
    font-size: 20px;
  }

  .voice-after-flow .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .demo-section,
  .video-section,
  .solutions-section,
  .admin-story,
  .roi-section,
  .process-section,
  .security-section,
  .faq-section,
  .contact-section {
    padding-block: 85px;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2,
  .video-copy h2,
  .admin-story-copy h2,
  .roi-copy h2,
  .trust-copy h2,
  .faq-grid > div h2,
  .contact-copy h2 {
    font-size: 36px;
  }

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

  .mode-card.full {
    grid-column: auto;
  }

  .input-stack {
    grid-template-columns: 1fr;
  }

  .launch-demo,
  .privacy-note {
    max-width: none;
  }

  .demo-stage {
    min-height: 680px;
  }

  .stage-topbar {
    padding-inline: 12px;
  }

  .web-simulator {
    padding: 10px;
  }

  .browser-frame {
    height: 650px;
  }

  .mock-nav {
    height: 54px;
    padding-inline: 15px;
  }

  .mock-nav nav {
    display: none;
  }

  .mock-hero {
    min-height: 345px;
    padding: 28px 18px;
    grid-template-columns: 1fr;
  }

  .mock-hero-copy h3 {
    font-size: 31px;
  }

  .mock-visual {
    position: absolute;
    right: -35px;
    top: 140px;
    width: 155px;
    opacity: 0.35;
  }

  .mock-cards {
    padding: 0 18px 20px;
    grid-template-columns: 1fr;
  }

  .mock-card:nth-child(3) {
    display: none;
  }

  .web-chat {
    right: 8px;
    bottom: 10px;
    left: 8px;
  }

  .chat-window {
    width: 100%;
    height: 350px;
  }

  .live-calendar {
    top: 48px;
    right: 8px;
    bottom: auto;
    left: 8px;
    width: auto;
    height: 225px;
  }

  .live-calendar-head {
    min-height: 44px;
    padding-block: 6px;
    grid-template-columns: 28px 1fr;
  }

  .google-calendar-mark {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    font-size: 13px;
  }

  .live-calendar-title {
    padding-block: 7px 5px;
  }

  .calendar-legend {
    display: none;
  }

  .calendar-slots {
    padding: 6px 10px;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .calendar-slot {
    min-height: 42px;
    padding: 6px;
  }

  .calendar-slot small {
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .calendar-activity {
    min-height: 43px;
    padding-block: 5px;
  }

  .simulation-badge {
    display: none;
  }

  .whatsapp-simulator.active,
  .voice-simulator.active {
    display: grid;
  }

  .whatsapp-simulator {
    grid-template-columns: 1fr;
    padding: 18px 10px;
  }

  .wa-app {
    grid-template-rows: 68px auto auto minmax(0, 1fr) auto 54px;
  }

  .wa-inline-calendar {
    margin: 4px 8px 3px;
    border: 1px solid #dce5df;
    border-radius: 11px;
    overflow: hidden;
    background: rgba(250, 252, 250, 0.97);
    color: #263029;
    display: grid;
    grid-template-rows: auto auto auto;
    box-shadow: 0 8px 24px rgba(27, 50, 35, 0.11);
  }

  .wa-inline-calendar > header {
    min-height: 35px;
    padding: 5px 8px;
    border-bottom: 1px solid #e6ece8;
    display: grid;
    grid-template-columns: 25px 1fr;
    align-items: center;
    gap: 7px;
  }

  .wa-inline-calendar .google-calendar-mark {
    width: 25px;
    height: 25px;
    border-radius: 6px;
    font-size: 11px;
  }

  .wa-inline-calendar header strong,
  .wa-inline-calendar header small {
    display: block;
  }

  .wa-inline-calendar header strong {
    font-size: 7px;
  }

  .wa-inline-calendar header small {
    margin-top: 2px;
    color: #6e7d73;
    font-size: 5px;
  }

  .wa-inline-calendar header small i {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 3px;
    border-radius: 50%;
    background: #34a853;
    box-shadow: 0 0 6px rgba(52, 168, 83, 0.5);
  }

  .wa-inline-calendar .calendar-slots {
    padding: 5px 7px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    overflow: visible;
  }

  .wa-inline-calendar .calendar-slot {
    min-height: 34px;
    padding: 4px 5px;
    border-radius: 6px;
  }

  .wa-inline-calendar .calendar-slot span {
    margin-bottom: 2px;
    font-size: 7px;
  }

  .wa-inline-calendar .calendar-slot small {
    max-width: 72px;
    font-size: 4px;
  }

  .wa-inline-calendar .calendar-activity {
    min-height: 32px;
    padding: 4px 7px;
    grid-template-columns: 20px 1fr;
    gap: 6px;
  }

  .wa-inline-calendar .calendar-activity > span {
    width: 20px;
    height: 20px;
    font-size: 8px;
  }

  .wa-inline-calendar .calendar-activity strong {
    margin-bottom: 1px;
    font-size: 6px;
  }

  .wa-inline-calendar .calendar-activity small {
    font-size: 5px;
  }

  .phone-shell {
    width: min(325px, 100%);
    height: 610px;
  }

  .wa-demo-side {
    width: min(380px, 100%);
    height: auto;
    margin-inline: auto;
    grid-template-rows: auto;
  }

  .wa-demo-side .wa-calendar-card {
    display: none;
  }

  .wa-demo-side .wa-explainer {
    display: block;
  }

  .voice-simulator {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .voice-demo-card {
    min-height: 600px;
  }

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

  .admin-simulator {
    padding: 10px;
  }

  .admin-shell {
    height: 650px;
    grid-template-columns: 58px 1fr;
  }

  .admin-side {
    padding-inline: 7px;
  }

  .admin-logo strong,
  .admin-side nav button:not(.active)::after,
  .admin-side nav button {
    font-size: 0;
  }

  .admin-logo {
    justify-content: center;
    padding-inline: 0;
  }

  .admin-side nav button {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .admin-side nav button > span {
    font-size: 13px;
  }

  .admin-side nav button i,
  .admin-ai-state span {
    display: none;
  }

  .admin-ai-state {
    justify-content: center;
    padding: 10px 0;
  }

  .admin-main {
    padding: 18px 12px;
  }

  .admin-overview {
    grid-template-columns: 1fr 1fr;
  }

  .admin-overview .admin-stat:last-child {
    display: none;
  }

  .admin-table-head,
  .admin-row {
    grid-template-columns: 55px 1fr 70px;
  }

  .admin-table-head > *:nth-child(4),
  .admin-row > *:nth-child(4) {
    display: none;
  }

  .system-simulator {
    padding: 10px;
    overflow: hidden;
  }

  .system-demo {
    min-width: 580px;
    transform: translateX(calc((100vw - 620px) / 2));
  }

  .video-placeholder,
  .video-placeholder video {
    min-height: 390px;
    height: 390px;
  }

  .scope-section {
    padding-top: 75px;
  }

  .scope-intro,
  .clinic-case-copy,
  .crm-example {
    padding: 24px;
  }

  .scope-intro {
    border-radius: 14px 14px 0 0;
  }

  .clinic-case {
    border-radius: 0 0 14px 14px;
  }

  .crm-example-image,
  .crm-example-mock {
    min-height: 390px;
  }

  .crm-example-mock {
    padding: 16px;
  }

  .crm-table {
    overflow-x: auto;
  }

  .crm-automation strong {
    display: none;
  }

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

  .solution-card {
    min-height: 470px;
  }

  .admin-story-grid {
    grid-template-columns: 1fr;
  }

  .priority-items article {
    grid-template-columns: 58px 1fr;
  }

  .priority-items button {
    display: none;
  }

  .priority-score {
    padding: 20px;
  }

  .process-list li {
    grid-template-columns: 35px 24px 1fr;
    gap: 10px;
  }

  .security-heading {
    margin-bottom: 30px;
  }

  .security-heading h2 {
    font-size: 40px;
  }

  .security-heading > p {
    font-size: 12px;
  }

  .security-shield-stage {
    min-height: 480px;
  }

  .security-ring.ring-one {
    width: 220px;
    height: 220px;
  }

  .security-ring.ring-two {
    width: 300px;
    height: 300px;
  }

  .security-shield {
    width: 135px;
    height: 158px;
  }

  .security-shield span {
    margin-top: 75px;
    font-size: 7px;
  }

  .security-threat {
    --move-x: 70px;
    --move-y: 72px;
    max-width: 133px;
    min-height: 36px;
    padding: 6px;
    gap: 5px;
    font-size: 6px;
  }

  .security-threat i {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
  }

  .threat-cost {
    --move-x: -70px;
    --move-y: 66px;
  }

  .threat-access {
    --move-x: 70px;
    --move-y: -62px;
  }

  .threat-data {
    --move-x: -70px;
    --move-y: -62px;
  }

  .security-block-pulse {
    width: 150px;
    height: 150px;
  }

  .security-status-console {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 9px 6px;
    grid-template-columns: 1fr 1fr;
  }

  .security-risk-panel {
    padding: 20px 14px;
  }

  .security-risks article {
    min-height: 0;
    padding: 14px 11px;
    grid-template-columns: 22px 1fr;
  }

  .security-risks article > i {
    display: none;
  }

  .security-layers {
    grid-template-columns: 1fr;
  }

  .security-layers article {
    min-height: 0;
    padding: 19px 16px;
  }

  .security-layers h3 {
    margin-top: 20px;
  }

  .security-footnote {
    padding: 17px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .contact-form-card {
    padding: 22px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-top p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }

  .floating-whatsapp {
    left: 12px;
    bottom: 12px;
    min-height: 58px;
    padding-right: 13px;
  }

  .floating-whatsapp small {
    display: none;
  }

  .floating-assistant {
    right: 12px;
    bottom: 12px;
    min-width: 58px;
    padding-right: 7px;
  }

  .floating-copy {
    display: none;
  }

  .voice-drawer {
    inset: 6px;
    width: auto;
  }

  .drawer-body {
    padding: 12px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-areas:
      "intro"
      "actions"
      "calendar"
      "voice"
      "chat"
      "disclosure";
    gap: 12px;
  }

  .drawer-calendar-card {
    height: 430px;
    min-height: 430px;
  }

  .voice-drawer.voice-running .drawer-intro h2,
  .voice-drawer.voice-running .drawer-intro p,
  .voice-drawer.voice-running .drawer-actions {
    display: none;
  }

  .voice-drawer.voice-running .drawer-orb {
    width: 62px;
    height: 62px;
    margin: 0 auto;
  }

  .voice-drawer.voice-running .drawer-calendar-card {
    height: 455px;
    min-height: 455px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .flow-title-journey {
    display: none;
  }
}

/* Legal */
.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 0%, rgba(35, 210, 122, .08), transparent 28rem),
    var(--bg);
}

.legal-shell {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 148px 0 96px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: .92rem;
}

.legal-shell > h1 {
  max-width: none;
  margin: 16px 0 8px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  letter-spacing: -.065em;
}

.legal-updated {
  margin: 0 0 44px;
  color: var(--muted);
}

.legal-warning {
  margin-bottom: 46px;
  padding: 20px 22px;
  border: 1px solid rgba(245, 193, 82, .35);
  border-radius: 16px;
  background: rgba(245, 193, 82, .07);
}

.legal-warning strong {
  color: #f5c152;
}

.legal-warning p {
  margin: 7px 0 0;
}

.legal-shell section {
  padding: 30px 0;
  border-top: 1px solid var(--border);
}

.legal-shell section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
}

.legal-shell section p {
  margin: 0 0 12px;
  color: var(--text-soft);
  line-height: 1.78;
}

.legal-footer {
  padding-top: 0;
}

.form-consent a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .legal-shell {
    width: min(100% - 28px, 880px);
    padding: 112px 0 64px;
  }
}
