:root {
  --ink: #121722;
  --muted: #5b6472;
  --line: #dce3ea;
  --paper: #ffffff;
  --soft: #f3f7f6;
  --mint: #18a77c;
  --mint-dark: #087456;
  --amber: #f5a524;
  --blue: #246bfe;
  --charcoal: #202936;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(16, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--paper);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 7px;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.header-cta {
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  border-radius: 7px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 54px 32px 34px;
  overflow: hidden;
}

.hero-copy,
.section-heading,
.solution,
.config-section,
.voice-monitor,
.lead-inbox,
.beta,
.contact,
footer {
  max-width: 1180px;
  margin: 0 auto;
}

.hero-copy {
  width: 100%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.button.primary {
  color: white;
  background: var(--mint-dark);
  box-shadow: 0 10px 24px rgba(8, 116, 86, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.button.ghost {
  color: var(--muted);
  background: transparent;
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin: 0;
}

.metric-row div {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-row dt {
  font-size: 1.35rem;
  font-weight: 900;
}

.metric-row dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  min-height: 420px;
}

.hero-media img {
  width: 100%;
  height: min(68vh, 680px);
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-band {
  padding: 84px 32px;
  background: var(--soft);
}

.section-heading {
  width: 100%;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 740px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.problem-grid article,
.notification-card,
.lead-form,
.conversation-panel,
.lead-inbox-panel,
.voice-monitor-panel,
.config-grid article,
.prospect-form,
.pipeline-panel,
.scripts-panel,
.price-box {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
}

.problem-grid article {
  padding: 22px;
}

.card-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  background: var(--charcoal);
  border-radius: 7px;
  font-weight: 900;
}

.problem-grid p,
.feature p,
.pricing-panel p,
.contact p,
.notification-card li {
  color: var(--muted);
}

.workflow-video {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 88px 32px;
  background: #fff;
}

.workflow-copy {
  max-width: 1180px;
  margin-left: auto;
}

.workflow-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.animation-stage {
  position: relative;
  width: min(100%, 760px);
  height: 430px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7fbff 0 58%, #d9e6dd 58% 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.scene-label {
  position: absolute;
  top: 16px;
  z-index: 3;
  padding: 7px 10px;
  color: white;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.scene-label.missed {
  left: 16px;
  background: #a3392f;
  animation: fadeScene 12s infinite;
}

.scene-label.rescued {
  right: 16px;
  background: var(--mint-dark);
  opacity: 0;
  animation: fadeSceneAlt 12s infinite;
}

.kitchen-wall span {
  position: absolute;
  top: 68px;
  width: 116px;
  height: 72px;
  background: white;
  border: 1px solid #d8e3eb;
  border-radius: 8px;
}

.kitchen-wall span:nth-child(1) {
  left: 38px;
}

.kitchen-wall span:nth-child(2) {
  left: 176px;
  top: 46px;
}

.kitchen-wall span:nth-child(3) {
  right: 88px;
}

.sink {
  position: absolute;
  left: 72px;
  bottom: 112px;
  width: 214px;
  height: 90px;
  background: #e8f0f7;
  border: 5px solid #bccbd8;
  border-radius: 10px 10px 28px 28px;
}

.sink::before {
  content: "";
  position: absolute;
  left: 72px;
  top: -48px;
  width: 58px;
  height: 48px;
  border: 9px solid #8aa0b3;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.pipe {
  position: absolute;
  right: 34px;
  bottom: -72px;
  width: 36px;
  height: 72px;
  background: #7f95a6;
  border-radius: 0 0 18px 18px;
}

.leak {
  position: absolute;
  right: 47px;
  bottom: -12px;
  width: 10px;
  height: 16px;
  background: var(--blue);
  border-radius: 50% 50% 60% 60%;
  opacity: 0;
  animation: drip 1.1s infinite;
}

.drop-two {
  animation-delay: 0.35s;
}

.drop-three {
  animation-delay: 0.7s;
}

.plumber {
  position: absolute;
  left: 280px;
  bottom: 82px;
  width: 150px;
  height: 240px;
  animation: workBob 1.1s ease-in-out infinite;
}

.cap {
  position: absolute;
  left: 47px;
  top: 0;
  width: 66px;
  height: 26px;
  background: #d44232;
  border-radius: 24px 24px 8px 8px;
}

.cap::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 12px;
  width: 34px;
  height: 10px;
  background: #d44232;
  border-radius: 999px;
}

.head {
  position: absolute;
  left: 48px;
  top: 20px;
  width: 58px;
  height: 58px;
  background: #f0b47d;
  border-radius: 50%;
}

.head::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 24px;
  width: 34px;
  height: 12px;
  background: #5f3825;
  border-radius: 999px;
}

.body {
  position: absolute;
  left: 38px;
  top: 80px;
  width: 78px;
  height: 92px;
  background: #1f6ed4;
  border-radius: 16px 16px 10px 10px;
}

.body::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: -18px;
  height: 34px;
  background: #e44835;
  border-radius: 12px 12px 0 0;
}

.strap {
  position: absolute;
  top: -18px;
  width: 10px;
  height: 70px;
  background: #164d9d;
}

.strap.left {
  left: 18px;
  transform: rotate(-12deg);
}

.strap.right {
  right: 18px;
  transform: rotate(12deg);
}

.button-dot {
  position: absolute;
  top: 33px;
  width: 9px;
  height: 9px;
  background: #ffd35a;
  border-radius: 50%;
}

.button-dot.left {
  left: 24px;
}

.button-dot.right {
  right: 24px;
}

.arm {
  position: absolute;
  top: 98px;
  width: 24px;
  height: 78px;
  background: #f0b47d;
  border-radius: 999px;
  transform-origin: top center;
}

.tool-arm {
  left: 24px;
  transform: rotate(46deg);
  animation: wrenchArm 0.55s ease-in-out infinite;
}

.phone-arm {
  right: 20px;
  transform: rotate(-18deg);
}

.leg {
  position: absolute;
  top: 160px;
  width: 28px;
  height: 74px;
  background: #164d9d;
  border-radius: 0 0 10px 10px;
}

.leg.left {
  left: 46px;
}

.leg.right {
  right: 38px;
}

.leg::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 42px;
  height: 14px;
  background: #303846;
  border-radius: 999px;
}

.leg.left::after {
  right: 0;
}

.wrench {
  position: absolute;
  left: 4px;
  top: 164px;
  width: 58px;
  height: 10px;
  background: #6d7d8d;
  border-radius: 999px;
  transform: rotate(-25deg);
}

.wrench::after {
  content: "";
  position: absolute;
  right: -13px;
  top: -6px;
  width: 22px;
  height: 22px;
  border: 6px solid #6d7d8d;
  border-left-color: transparent;
  border-radius: 50%;
}

.phone {
  position: absolute;
  right: 54px;
  top: 104px;
  z-index: 4;
  width: 180px;
  padding: 14px;
  background: #111827;
  color: white;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.18);
  animation: ringPhone 1s ease-in-out infinite;
}

.phone strong,
.phone small,
.lost-card span,
.lost-card strong,
.lost-card small,
.win-card span,
.win-card strong,
.win-card small {
  display: block;
}

.phone small {
  color: #ffcf70;
}

.ring {
  position: absolute;
  inset: -10px;
  border: 2px solid #d44232;
  border-radius: 20px;
  opacity: 0;
  animation: ringPulse 1.2s infinite;
}

.ring-two {
  animation-delay: 0.4s;
}

.lost-card,
.win-card {
  position: absolute;
  right: 46px;
  bottom: 70px;
  z-index: 5;
  width: 220px;
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
}

.lost-card {
  animation: lostOpportunity 12s infinite;
}

.lost-card span {
  color: #a3392f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lost-card strong {
  font-size: 1.7rem;
}

.lost-card small {
  color: var(--muted);
}

.ai-bot {
  position: absolute;
  right: 38px;
  top: 94px;
  z-index: 6;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  width: 292px;
  padding: 14px;
  background: #eefaf5;
  border: 1px solid rgba(24, 167, 124, 0.28);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(18px);
  animation: botRescue 12s infinite;
}

.bot-orb {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: white;
  background: var(--mint-dark);
  border-radius: 50%;
  font-weight: 900;
}

.bot-lines {
  display: grid;
  gap: 4px;
  font-size: 0.84rem;
}

.bot-lines span {
  color: var(--muted);
}

.win-card {
  opacity: 0;
  transform: translateY(18px);
  animation: winOpportunity 12s infinite;
}

.win-card span {
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.win-card strong {
  font-size: 1.18rem;
}

.win-card small {
  color: var(--muted);
}

.cinematic-stage {
  width: min(100%, 860px);
  height: 520px;
  background: #f8fafc;
}

.film-topbar {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 16px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: white;
  background: rgba(17, 24, 39, 0.88);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.2);
}

.film-topbar span {
  color: #9ce6c8;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-topbar strong {
  font-size: 0.9rem;
}

.workflow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-van {
  animation: vanDrift 14s ease-in-out infinite;
}

.premium-kitchen {
  animation: kitchenPulse 2.6s ease-in-out infinite;
}

.animated-leak {
  stroke-dasharray: 28 20;
  animation: leakFlow 1.2s linear infinite;
}

.drop-dot {
  animation: premiumDrop 1.4s ease-in infinite;
}

.drop-b {
  animation-delay: 0.35s;
}

.drop-c {
  animation-delay: 0.7s;
}

.designer-plumber {
  animation: plumberShift 2.2s ease-in-out infinite;
}

.working-arm {
  transform-origin: 352px 228px;
  animation: premiumWrench 0.75s ease-in-out infinite;
}

.raised-arm {
  transform-origin: 454px 230px;
  animation: phoneReach 14s ease-in-out infinite;
}

.left-leg,
.right-leg {
  animation: legBrace 2.2s ease-in-out infinite;
}

.urgent-phone {
  transform-origin: 700px 130px;
  animation: urgentPhone 1s ease-in-out infinite;
}

.phone-ring-a,
.phone-ring-b {
  opacity: 0;
  animation: premiumRing 1.2s ease-out infinite;
}

.phone-ring-b {
  animation-delay: 0.25s;
}

.client-card {
  animation: clientPanic 14s ease-in-out infinite;
}

.competitor-card {
  opacity: 0;
  transform: translateY(18px);
  animation: competitorAppears 14s ease-in-out infinite;
}

.leadrescue-flow {
  opacity: 0;
  transform: translateY(22px);
  animation: rescuePanel 14s ease-in-out infinite;
}

.call-path-lost {
  opacity: 0;
  stroke-dashoffset: 0;
  animation: lostPath 14s linear infinite;
}

.call-path-saved {
  opacity: 0;
  stroke-dashoffset: 0;
  animation: savedPath 14s linear infinite;
}

.story-beats {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.beat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 227, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.1);
}

.beat-card span {
  display: grid;
  grid-row: span 2;
  width: 28px;
  height: 28px;
  place-items: center;
  color: white;
  background: var(--charcoal);
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 900;
}

.beat-card strong {
  font-size: 0.86rem;
  line-height: 1.1;
}

.beat-card small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
}

.beat-loss span {
  background: #a3392f;
}

.beat-rescue span {
  background: var(--mint-dark);
}

.solution {
  padding: 88px 32px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 34px auto 0;
}

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

.feature-dot {
  width: 11px;
  height: 11px;
  margin-top: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(24, 167, 124, 0.12);
}

.demo-layout,
.prospecting-grid,
.config-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1.1fr) minmax(260px, 0.82fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.config-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.config-grid article {
  padding: 18px;
}

.config-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.config-grid strong {
  display: block;
  margin-bottom: 8px;
  line-height: 1.2;
}

.config-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-form,
.prospect-form,
.pipeline-panel,
.scripts-panel,
.notification-card {
  padding: 18px;
}

.call-scenario {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  padding: 14px;
  color: white;
  background: var(--charcoal);
  border-radius: var(--radius);
}

.call-scenario span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

.call-scenario strong {
  font-size: 1.05rem;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 800;
}

.lead-status {
  margin: 12px 0 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  background: #f8fafc;
  font-size: 0.88rem;
  font-weight: 800;
}

.lead-status::before {
  content: "Statut: ";
}

.lead-status[data-type="success"] {
  color: var(--mint-dark);
  background: rgba(24, 167, 124, 0.1);
  border-color: rgba(24, 167, 124, 0.28);
}

.lead-status[data-type="warning"] {
  color: #7a4b00;
  background: rgba(245, 165, 36, 0.13);
  border-color: rgba(245, 165, 36, 0.34);
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(24, 167, 124, 0.12);
}

.conversation-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 560px;
  overflow: hidden;
}

.conversation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.conversation-header strong {
  color: var(--mint-dark);
  font-size: 0.86rem;
}

.chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(135deg, #eef5f3 0 10px, transparent 10px 20px);
}

.message {
  max-width: 82%;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.94rem;
}

.message.ai {
  align-self: flex-start;
  background: white;
  border: 1px solid var(--line);
}

.message.user {
  align-self: flex-end;
  color: white;
  background: var(--blue);
}

.notification-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 20px;
  list-style: none;
}

.notification-card li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.lead-inbox {
  padding: 84px 32px;
}

.voice-monitor {
  padding: 84px 32px;
}

.lead-inbox-panel,
.voice-monitor-panel {
  padding: 18px;
}

.lead-inbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.lead-inbox-header h3 {
  margin-bottom: 4px;
}

.lead-inbox-header p {
  margin: 0;
  color: var(--muted);
}

.lead-list {
  display: grid;
  gap: 12px;
}

.voice-session-list {
  display: grid;
  gap: 12px;
}

.lead-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(240px, 1.2fr) minmax(180px, 0.72fr);
  gap: 14px;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.voice-session-item {
  display: grid;
  gap: 14px;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.voice-session-top {
  display: grid;
  grid-template-columns: minmax(200px, 0.7fr) minmax(260px, 1fr);
  gap: 14px;
}

.lead-item h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.voice-session-item h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.lead-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.voice-session-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.voice-answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.voice-transcript {
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.voice-transcript summary {
  cursor: pointer;
  font-weight: 900;
}

.voice-transcript ol {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.priority-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 8px;
  color: var(--mint-dark);
  background: rgba(24, 167, 124, 0.1);
  border: 1px solid rgba(24, 167, 124, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.priority-pill[data-priority="Haute"] {
  color: #7a4b00;
  background: rgba(245, 165, 36, 0.16);
  border-color: rgba(245, 165, 36, 0.38);
}

.beta {
  padding: 78px 32px;
}

.pricing-panel {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.42fr) minmax(220px, 0.42fr);
  gap: 16px;
  align-items: stretch;
}

.price-box {
  padding: 22px;
}

.price-box span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--mint-dark);
  font-weight: 900;
}

.price-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.3rem;
  line-height: 1.15;
}

.prospecting-grid {
  grid-template-columns: minmax(240px, 0.72fr) minmax(360px, 1.15fr) minmax(300px, 0.92fr);
}

.pipeline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.script-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.script-tabs button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  cursor: pointer;
  font-weight: 800;
}

.script-tabs button.active {
  color: white;
  background: var(--charcoal);
  border-color: var(--charcoal);
}

pre {
  min-height: 300px;
  max-height: 360px;
  margin: 0 0 14px;
  padding: 14px;
  overflow: auto;
  white-space: pre-wrap;
  color: #243041;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 84px 32px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

@keyframes drip {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(62px) scale(1);
    opacity: 0;
  }
}

@keyframes workBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes wrenchArm {
  0%,
  100% {
    transform: rotate(42deg);
  }
  50% {
    transform: rotate(58deg);
  }
}

@keyframes ringPhone {
  0%,
  100% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(2deg);
  }
  40% {
    transform: rotate(-2deg);
  }
  60% {
    transform: rotate(1deg);
  }
}

@keyframes ringPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes lostOpportunity {
  0%,
  30% {
    opacity: 0;
    transform: translateY(18px);
  }
  38%,
  52% {
    opacity: 1;
    transform: translateY(0);
  }
  60%,
  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes botRescue {
  0%,
  55% {
    opacity: 0;
    transform: translateY(18px);
  }
  64%,
  86% {
    opacity: 1;
    transform: translateY(0);
  }
  94%,
  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes winOpportunity {
  0%,
  67% {
    opacity: 0;
    transform: translateY(18px);
  }
  76%,
  92% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes fadeScene {
  0%,
  52% {
    opacity: 1;
  }
  60%,
  100% {
    opacity: 0;
  }
}

@keyframes fadeSceneAlt {
  0%,
  54% {
    opacity: 0;
  }
  62%,
  100% {
    opacity: 1;
  }
}

@keyframes vanDrift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

@keyframes kitchenPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes leakFlow {
  to {
    stroke-dashoffset: -48;
  }
}

@keyframes premiumDrop {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(34px);
  }
}

@keyframes plumberShift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

@keyframes premiumWrench {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(9deg);
  }
}

@keyframes phoneReach {
  0%,
  48% {
    transform: rotate(0deg);
  }
  56%,
  100% {
    transform: rotate(-12deg);
  }
}

@keyframes legBrace {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

@keyframes urgentPhone {
  0%,
  100% {
    transform: rotate(0) scale(1);
  }
  25% {
    transform: rotate(1.5deg) scale(1.01);
  }
  50% {
    transform: rotate(-1.5deg) scale(1);
  }
}

@keyframes premiumRing {
  0% {
    opacity: 0;
    transform: scale(0.94);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

@keyframes clientPanic {
  0%,
  25%,
  100% {
    transform: translateY(0);
  }
  34%,
  44% {
    transform: translateY(-8px);
  }
}

@keyframes competitorAppears {
  0%,
  34% {
    opacity: 0;
    transform: translateY(18px);
  }
  42%,
  58% {
    opacity: 1;
    transform: translateY(0);
  }
  66%,
  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes rescuePanel {
  0%,
  56% {
    opacity: 0;
    transform: translateY(22px);
  }
  64%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lostPath {
  0%,
  31% {
    opacity: 0;
  }
  38%,
  56% {
    opacity: 1;
    stroke-dashoffset: -90;
  }
  64%,
  100% {
    opacity: 0;
  }
}

@keyframes savedPath {
  0%,
  58% {
    opacity: 0;
  }
  66%,
  100% {
    opacity: 1;
    stroke-dashoffset: -120;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .workflow-video,
  .demo-layout,
  .prospecting-grid,
  .config-grid,
  .pricing-panel,
  .voice-session-top,
  .voice-answer-grid,
  .lead-item {
    grid-template-columns: 1fr;
  }

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

  .hero-media img {
    height: 420px;
  }

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

  .workflow-copy {
    max-width: 1180px;
    margin: 0 auto;
  }

  .animation-stage {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
  }

  .hero,
  .workflow-video,
  .section-band,
  .solution,
  .lead-inbox,
  .voice-monitor,
  .beta,
  .contact,
  footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-media {
    min-height: 300px;
  }

  .hero-media img {
    height: 320px;
    min-height: 300px;
  }

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

  .animation-stage {
    height: 520px;
  }

  .cinematic-stage {
    height: 560px;
  }

  .workflow-svg {
    height: 480px;
    transform: translateY(28px) scale(1.2);
    transform-origin: center top;
  }

  .film-topbar {
    left: 12px;
    right: 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .story-beats {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .beat-card {
    grid-template-columns: 24px 1fr;
    padding: 8px;
  }

  .beat-card span {
    width: 24px;
    height: 24px;
  }

  .plumber {
    left: 38%;
    transform: translateX(-50%);
  }

  .phone,
  .lost-card,
  .win-card,
  .ai-bot {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .phone {
    top: 56px;
  }

  .ai-bot {
    top: 56px;
  }

  .lost-card,
  .win-card {
    bottom: 24px;
  }

  .contact,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
