/* Page-specific CSS for booking-agent.html */

/* ============================================================
   PAGE-SPECIFIC KEYFRAMES
============================================================ */
@keyframes bounce3 {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}
@keyframes cardPulse {
  0%   { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes phoneRing {
  0%, 80%, 100% { transform: rotate(0deg); }
  10%  { transform: rotate(-13deg); }
  20%  { transform: rotate(13deg); }
  30%  { transform: rotate(-10deg); }
  40%  { transform: rotate(10deg); }
  50%  { transform: rotate(0deg); }
}
@keyframes calGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(34,197,94,.2); }
  50%       { box-shadow: 0 0 44px rgba(34,197,94,.45); }
}
@keyframes howWave {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(.1); }
}
@keyframes robotGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(99,102,241,.45)); }
  50%       { filter: drop-shadow(0 0 22px rgba(99,102,241,.85)); }
}
@keyframes eyeBlink {
  0%, 88%, 100% { transform: scaleY(1); }
  93%           { transform: scaleY(0.06); }
}

/* ============================================================
   HERO
============================================================ */
#hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 0 52px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(29,111,255,.16) 0%, transparent 68%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(29,111,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,111,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(29,111,255,.12);
  border: 1px solid rgba(29,111,255,.28);
  color: var(--blue-mid);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--blue-mid);
  border-radius: 50%;
  animation: pulseDot 2s ease infinite;
  flex-shrink: 0;
}
.hero-h1 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(125deg, #60A5FA, var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16.5px;
  color: rgba(255,255,255,.68);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 460px;
}
.hero-body {
  font-size: 14.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-wrap {
  width: 100%;
  max-width: 400px;
  animation: floatUp 5s ease-in-out infinite;
}
.flow-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 22px 24px;
  backdrop-filter: blur(6px);
  position: relative;
  transition: transform .25s;
}
.flow-card:hover { transform: translateY(-3px); }
.flow-card-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.fc-icon {
  width: 42px; height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fc-icon-blue  { background: rgba(29,111,255,.2); }
.fc-icon-teal  { background: rgba(0,201,177,.18); }
.fc-icon-green { background: rgba(34,197,94,.16); }
.fc-title {
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.fc-sub { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }
.fc-body { font-size: 13.5px; color: rgba(255,255,255,.58); line-height: 1.55; }
.flow-pulse {
  position: absolute;
  top: 20px; left: 20px;
  width: 42px; height: 42px;
  border: 2px solid rgba(29,111,255,.45);
  border-radius: 13px;
  animation: cardPulse 2.2s ease-out infinite;
}
.flow-line {
  width: 2px; height: 22px;
  background: linear-gradient(180deg, rgba(29,111,255,.45), rgba(0,201,177,.45));
  margin: 0 20px;
  border-radius: 1px;
}
.typing-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}
.t-dot {
  width: 6px; height: 6px;
  background: rgba(29,111,255,.7);
  border-radius: 50%;
  animation: bounce3 1.2s ease infinite;
}
.t-dot:nth-child(2) { animation-delay: .15s; }
.t-dot:nth-child(3) { animation-delay: .3s; }
.typing-label { font-size: 12px; color: rgba(255,255,255,.35); }
.flow-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.25);
  color: #4ade80;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
  margin-top: 10px;
}
.status-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulseDot 1.5s ease infinite;
}

/* ============================================================
   FLOW STAGES (hero visual)
============================================================ */
.phone-flow {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: floatUp 6s ease-in-out infinite;
}
.pf-nodes {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
.pf-node {
  width: 110px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pf-circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pf-circle--phone {
  background: radial-gradient(circle at 38% 38%, rgba(29,111,255,.22), rgba(29,111,255,.07));
  border: 1.5px solid rgba(29,111,255,.42);
  box-shadow: 0 0 24px rgba(29,111,255,.2), inset 0 1px 0 rgba(255,255,255,.06);
}
.pf-robot {
  overflow: visible;
  animation: robotGlow 2.6s ease-in-out infinite;
  flex-shrink: 0;
}
.pf-reye {
  transform-box: fill-box;
  transform-origin: center;
  animation: eyeBlink 4.5s ease infinite;
}
.pf-reye--r { animation-delay: .1s; }
.pf-ant { animation: pulseDot 2s ease infinite; }
.pf-circle--cal {
  background: radial-gradient(circle at 38% 38%, rgba(34,197,94,.2), rgba(34,197,94,.06));
  border: 1.5px solid rgba(34,197,94,.48);
  animation: calGlow 3.2s ease-in-out infinite;
}
.pf-label {
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,.82);
  text-align: center;
  line-height: 1.3;
}
.pf-sub {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-top: -4px;
}
.pf-sub--green { color: #4ade80; }
.pf-in-col { display: flex; flex-direction: column; gap: 16px; flex-shrink: 0; }
.pf-circle--input { width: 72px; height: 72px; }
.pf-circle--chat {
  background: radial-gradient(circle at 38% 38%, rgba(0,201,177,.22), rgba(0,201,177,.07));
  border: 1.5px solid rgba(0,201,177,.42);
  box-shadow: 0 0 24px rgba(0,201,177,.2), inset 0 1px 0 rgba(255,255,255,.06);
}
.pf-fork { width: 52px; height: 258px; flex-shrink: 0; overflow: visible; }
.pf-out-col { display: flex; flex-direction: column; gap: 16px; flex-shrink: 0; }
.pf-circle--crm {
  background: radial-gradient(circle at 38% 38%, rgba(99,102,241,.2), rgba(99,102,241,.06));
  border: 1.5px solid rgba(99,102,241,.48);
  box-shadow: 0 0 24px rgba(99,102,241,.2), inset 0 1px 0 rgba(255,255,255,.06);
}
.pf-circle--email {
  background: radial-gradient(circle at 38% 38%, rgba(0,201,177,.22), rgba(0,201,177,.07));
  border: 1.5px solid rgba(0,201,177,.42);
  box-shadow: 0 0 24px rgba(0,201,177,.2), inset 0 1px 0 rgba(255,255,255,.06);
}
.pf-fork--out { height: 395px; }
.pf-bubble-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.pf-bubble-tail {
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid rgba(99,102,241,.35);
  margin-bottom: -1px;
}
.pf-bubble {
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.35);
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,.75);
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}
.pf-bubble-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 7px;
}
.pf-b-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(165,180,252,.6);
  animation: bounce3 1.2s ease infinite;
}
.pf-b-dot:nth-child(2) { animation-delay: .15s; }
.pf-b-dot:nth-child(3) { animation-delay: .3s; }
.pf-job-card {
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 12px;
  padding: 10px 14px;
  width: 100%;
  text-align: center;
}
.pf-job-name {
  font-family: 'Manrope', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.pf-job-time {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
}
.pf-job-confirmed {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #4ade80;
  margin-top: 6px;
}
.pf-job-confirmed::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulseDot 1.5s ease infinite;
}
.pf-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  font-size: 13px;
}
.pf-stat-n { color: rgba(255,255,255,.42); }
.pf-stat-sep { color: rgba(255,255,255,.15); }
.pf-stat-zero {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14.5px;
  color: #4ade80;
  letter-spacing: -0.02em;
}

/* ============================================================
   PROBLEM
============================================================ */
#problem {
  background: var(--off-white);
  padding: 100px 0;
}
.problem-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px;
}
.problem-head h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 800; margin-bottom: 18px; }
.problem-head p { font-size: 17px; color: var(--muted); line-height: 1.7; }
.prob-source { font-size: 11.5px; color: rgba(99,119,153,.55); margin-top: 10px; letter-spacing: 0.04em; }
.miss-sequence {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 40px 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.miss-seq-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 32px;
}
.miss-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.miss-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 0;
}
.miss-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.miss-icon--blue   { background: rgba(29,111,255,.1); }
.miss-icon--amber  { background: rgba(245,158,11,.12); }
.miss-icon--orange { background: rgba(234,88,12,.12); }
.miss-icon--red    { background: rgba(220,38,38,.12); }
.miss-step-name {
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
}
.miss-pill {
  font-size: 12px; font-weight: 600;
  padding: 4px 11px;
  border-radius: 100px;
  white-space: nowrap;
}
.miss-pill--neutral { background: rgba(29,111,255,.08);  color: #1558D6; }
.miss-pill--amber   { background: rgba(245,158,11,.13);  color: #92400e; }
.miss-pill--orange  { background: rgba(234,88,12,.12);   color: #9a3412; }
.miss-pill--red     { background: rgba(220,38,38,.12);   color: #991b1b; }
.miss-conn {
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.miss-cost {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}
.miss-cost strong { color: #dc2626; font-weight: 700; }
.prob-stats-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  background: var(--navy);
  border-radius: var(--r);
  padding: 32px 48px;
  margin-bottom: 24px;
}
.psr-item { text-align: center; }
.psr-num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.6rem; font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.psr-num em {
  font-style: normal;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.psr-label {
  font-size: 13px;
  color: rgba(255,255,255,.52);
  line-height: 1.35;
  max-width: 150px;
  margin: 0 auto;
}
.psr-div {
  width: 1px; height: 48px;
  background: rgba(255,255,255,.1);
}

@media (max-width: 700px) {
  .miss-sequence { padding: 24px 20px 20px; }
  .miss-steps { flex-direction: column; gap: 0; }
  .miss-step {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    flex: none;
  }
  .miss-step:last-child { border-bottom: none; }
  .miss-icon { width: 44px; height: 44px; margin-bottom: 0; flex-shrink: 0; }
  .miss-conn { display: none; }
  .prob-stats-row {
    grid-template-columns: 1fr;
    padding: 24px 24px;
    gap: 20px;
  }
  .psr-div { display: none; }
  .psr-label { max-width: none; }
}

/* ============================================================
   HOW IT WORKS
============================================================ */
#how {
  background: var(--white);
  padding: 100px 0;
}
.how-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}
.how-head h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.how-head p { font-size: 17px; color: var(--muted); }
.how-agents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.hac {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 32px;
  overflow: hidden;
}
.hac--voice {
  box-shadow: 0 0 0 1px rgba(29,111,255,.12), 0 8px 40px rgba(29,111,255,.1);
}
.hac--chat {
  box-shadow: 0 0 0 1px rgba(0,201,177,.12), 0 8px 40px rgba(0,201,177,.1);
}
.hac-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 14px;
}
.hac-status {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
.hac-name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.hac-desc {
  font-size: 14px;
  color: rgba(255,255,255,.48);
  line-height: 1.65;
}
.hac-demo {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 22px;
}
.hac-call-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.38);
  margin-bottom: 14px;
}
.hac-call-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulseDot 1.6s ease-in-out infinite;
}
.hac-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 44px;
  margin-bottom: 18px;
}
.hac-bar {
  width: 3px;
  border-radius: 2px;
  transform-origin: center;
  animation: howWave 1s ease-in-out infinite;
}
.hac-bar:nth-child(1)  { background:rgba(75,139,245,.5);  animation-duration:1.1s;  animation-delay:0s;    height:40%; }
.hac-bar:nth-child(2)  { background:rgba(29,111,255,.7);  animation-duration:0.9s;  animation-delay:.08s;  height:75%; }
.hac-bar:nth-child(3)  { background:rgba(75,139,245,.9);  animation-duration:1.3s;  animation-delay:.16s;  height:100%; }
.hac-bar:nth-child(4)  { background:rgba(29,111,255,.8);  animation-duration:0.8s;  animation-delay:.24s;  height:60%; }
.hac-bar:nth-child(5)  { background:rgba(99,102,241,.9);  animation-duration:1.2s;  animation-delay:.06s;  height:90%; }
.hac-bar:nth-child(6)  { background:rgba(29,111,255,1);   animation-duration:0.75s; animation-delay:.18s;  height:70%; }
.hac-bar:nth-child(7)  { background:rgba(75,139,245,.95); animation-duration:1.0s;  animation-delay:.32s;  height:100%; }
.hac-bar:nth-child(8)  { background:rgba(29,111,255,1);   animation-duration:0.85s; animation-delay:.12s;  height:85%; }
.hac-bar:nth-child(9)  { background:rgba(99,102,241,.9);  animation-duration:1.1s;  animation-delay:.28s;  height:65%; }
.hac-bar:nth-child(10) { background:rgba(75,139,245,.8);  animation-duration:0.95s; animation-delay:.04s;  height:90%; }
.hac-bar:nth-child(11) { background:rgba(29,111,255,.7);  animation-duration:1.25s; animation-delay:.2s;   height:50%; }
.hac-bar:nth-child(12) { background:rgba(99,102,241,.8);  animation-duration:0.88s; animation-delay:.36s;  height:75%; }
.hac-bar:nth-child(13) { background:rgba(75,139,245,.6);  animation-duration:1.05s; animation-delay:.14s;  height:40%; }
.hac-bar:nth-child(14) { background:rgba(29,111,255,.5);  animation-duration:0.92s; animation-delay:.22s;  height:25%; }
.hac-fields { display: flex; flex-direction: column; }
.hac-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 12.5px;
}
.hac-field:last-child { border-bottom: none; }
.hac-field-lbl { color: rgba(255,255,255,.28); flex-shrink: 0; }
.hac-field-val {
  color: rgba(255,255,255,.82);
  font-weight: 500;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hac-field--booked .hac-field-val { color: var(--green); }
.hac-chat-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.38);
  margin-bottom: 12px;
}
.hac-chat-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
.hac-msgs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 8px;
}
.hac-msg {
  font-size: 12.5px;
  line-height: 1.5;
  max-width: 88%;
  padding: 8px 12px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.hac-msg.vis { opacity: 1; transform: none; }
.hac-msg--in {
  align-self: flex-end;
  background: var(--blue);
  color: rgba(255,255,255,.95);
  border-bottom-right-radius: 4px;
}
.hac-msg--out {
  align-self: flex-start;
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.85);
  border-bottom-left-radius: 4px;
}
.hac-typing {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 7px 11px;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  border-bottom-left-radius: 4px;
  width: fit-content;
  margin-bottom: 4px;
}
.hac-typing.vis { display: flex; }
.hac-t-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.38);
  animation: pulseDot 1s ease-in-out infinite;
}
.hac-t-dot:nth-child(2) { animation-delay: .2s; }
.hac-t-dot:nth-child(3) { animation-delay: .4s; }
.hac-booked {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 8px;
  color: var(--green);
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 13px;
  margin-top: 8px;
  opacity: 0;
  transition: opacity .4s ease;
}
.hac-booked.vis { opacity: 1; }
.how-outcomes {
  display: flex;
  align-items: center;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 40px;
}
.how-outcome {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 1;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.how-outcome-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.how-outcome-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
.how-outcome-icon--review {
  background: rgba(245,158,11,.1);
  color: #F59E0B;
}
.hac--review {
  grid-column: 1 / -1;
  box-shadow: 0 0 0 1px rgba(245,158,11,.12), 0 8px 40px rgba(245,158,11,.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hac--review .hac-text { display: flex; flex-direction: column; }
.hac-sms-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.38);
  margin-bottom: 14px;
}
.hac-sms-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #F59E0B;
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
.hac-sms-bubble {
  background: rgba(255,255,255,.09);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 11px 14px;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255,255,255,.82);
  margin-bottom: 10px;
}
.hac-sms-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #F59E0B;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hac-review-received {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.22);
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: #F59E0B;
}
.hac-stars { letter-spacing: 1px; font-size: 13px; }

/* ============================================================
   PROCESS
============================================================ */
#process {
  background: var(--off-white);
  padding: 100px 0;
}
.process-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
}
.process-head h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.process-head p { font-size: 17px; color: var(--muted); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.steps-grid::before { display: none; }
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.prob-vis { width: 100%; overflow: hidden; line-height: 0; }
.prob-vis svg { width: 100%; height: auto; display: block; }
.step-body { padding: 28px; }
.step-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   MULTI-CHANNEL
============================================================ */
#channels {
  background: var(--off-white);
  padding: 100px 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-text h2 { font-size: clamp(2rem, 3.2vw, 2.75rem); font-weight: 800; margin-bottom: 20px; }
.split-text p { font-size: 16.5px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.channel-cards { display: flex; flex-direction: column; gap: 14px; }
.ch-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.ch-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ch-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ch-icon-blue   { background: var(--blue-light); }
.ch-icon-teal   { background: rgba(0,201,177,.1); }
.ch-icon-indigo { background: rgba(99,102,241,.1); }
.ch-card h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.ch-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ============================================================
   INDUSTRIES
============================================================ */
#industries { background: var(--off-white); padding: 100px 0; }
.ind-head { text-align: center; max-width: 560px; margin: 0 auto 60px; }
.ind-head h2 { font-size: clamp(2rem, 3.2vw, 2.75rem); font-weight: 800; margin-bottom: 16px; }
.ind-head p { font-size: 17px; color: var(--muted); }
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ind-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 30px 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.ind-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ind-emoji { font-size: 30px; display: block; margin-bottom: 18px; }
.ind-card h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 8px; }
.ind-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   VALUE (dark)
============================================================ */
#value {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#value::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(29,111,255,.13) 0%, transparent 60%);
  pointer-events: none;
}
.value-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.value-inner > * { min-width: 0; }
.val-text h2 { font-size: clamp(2rem, 3.2vw, 2.75rem); font-weight: 800; color: var(--white); margin-bottom: 20px; }
.val-text p { font-size: 16.5px; color: rgba(255,255,255,.58); line-height: 1.7; margin-bottom: 30px; }
.val-metrics { display: flex; flex-direction: column; margin-top: 32px; }
.val-metric {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.val-metric:last-child { border-bottom: none; }
.val-metric-num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--white);
  min-width: 88px;
  flex-shrink: 0;
}
.val-metric-unit { font-size: 1.05rem; color: var(--blue-mid); font-style: normal; }
.val-metric-copy { display: flex; flex-direction: column; gap: 2px; }
.val-metric-label { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.4; }
.val-metric-sub { font-size: 11.5px; color: rgba(255,255,255,.22); }
.val-live {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 26px 26px 22px;
  box-shadow: 0 0 0 1px rgba(29,111,255,.08), 0 8px 40px rgba(0,0,0,.3);
}
.val-live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.val-live-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.val-live-tally {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.18);
  border-radius: 20px;
  padding: 4px 11px;
}
.val-live-feed { display: flex; flex-direction: column; gap: 6px; }
.val-entry {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .35s ease, transform .35s ease;
}
.val-entry.vis { opacity: 1; transform: none; }
.val-entry-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.val-entry-icon--call { background: rgba(29,111,255,.15); color: var(--blue-mid); }
.val-entry-icon--chat { background: rgba(0,201,177,.12); color: var(--teal); }
.val-entry-info { flex: 1; min-width: 0; }
.val-entry-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.val-entry-service {
  font-size: 11.5px;
  color: rgba(255,255,255,.32);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.val-entry-pill {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--green);
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.18);
  border-radius: 20px;
  padding: 3px 9px;
  flex-shrink: 0;
}
.val-live-footer {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding: 11px 14px;
  background: rgba(29,111,255,.08);
  border: 1px solid rgba(29,111,255,.14);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-mid);
  opacity: 0;
  transition: opacity .4s ease;
}
.val-live-footer.vis { opacity: 1; }

/* ============================================================
   REVENUE CALCULATOR
============================================================ */
#calculator {
  background: var(--off-white);
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.calc-header { text-align: center; max-width: 560px; margin: 0 auto 52px; }
.calc-header h2 { font-size: clamp(2rem, 3.8vw, 3rem); font-weight: 800; color: var(--text); margin-bottom: 14px; }
.calc-header p { font-size: 17px; color: var(--muted); line-height: 1.6; }
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.calc-fields { display: flex; flex-direction: column; gap: 22px; }
.wc-field-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wc-input-wrap {
  display: flex;
  align-items: stretch;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.wc-input-wrap:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,111,255,.12);
}
.wc-prefix {
  padding: 0 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-right: 1.5px solid var(--border);
}
.wc-suffix {
  padding: 0 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: #f0f4fa;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-left: 1.5px solid var(--border);
}
.wc-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  min-width: 0;
}
.wc-input::-webkit-inner-spin-button,
.wc-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.wc-toggle {
  display: flex;
  background: #e8edf5;
  border-radius: 6px;
  padding: 3px;
  gap: 2px;
}
.wc-toggle-btn {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  transition: background .18s, color .18s;
}
.wc-toggle-btn.active {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 1px 4px rgba(13,27,51,.1);
}
.calc-fields-col { order: 1; }
.calc-result-card {
  order: 2;
  background: var(--navy);
  border-radius: var(--r);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.wc-panel-title { display: none; margin-bottom: 32px; }
.wc-panel-title h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 8px;
}
.wc-panel-title p { font-size: 15px; color: var(--muted); line-height: 1.5; }
.wc-change-link {
  display: none;
  margin-top: 18px;
  background: none;
  border: none;
  color: rgba(255,255,255,.45);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  font-family: 'DM Sans', sans-serif;
  transition: color .2s;
}
.wc-change-link:hover { color: rgba(255,255,255,.8); }
.wc-reveal-btn {
  width: 100%;
  margin-top: 24px;
  font-size: 16px;
  padding: 15px 28px;
  justify-content: center;
}
.wc-demo-btn {
  display: flex;
  width: 100%;
  margin-top: 24px;
  background: var(--blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: var(--r-sm);
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(29,111,255,.3);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.wc-demo-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(29,111,255,.4);
}
.calc-result-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(29,111,255,.18) 0%, transparent 70%);
  pointer-events: none;
}
.calc-result-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(29,111,255,.15);
  border: 1px solid rgba(29,111,255,.3);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 20px;
}
.calc-result-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-mid);
  animation: pulseDot 2s ease-in-out infinite;
}
.calc-main-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 6px;
}
.calc-monthly-num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1;
  transition: color .3s;
}
.calc-monthly-sub {
  font-size: 14px;
  color: rgba(255,255,255,.38);
  margin-top: 6px;
  margin-bottom: 28px;
}
.calc-divider { height: 1px; background: rgba(255,255,255,.08); margin-bottom: 24px; }
.calc-secondary-row { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 28px; }
.calc-secondary-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 4px;
}
.calc-secondary-num {
  font-family: 'Manrope', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: rgba(255,255,255,.85);
  letter-spacing: -.03em;
  line-height: 1;
}
.calc-roi-note {
  background: rgba(29,111,255,.12);
  border: 1px solid rgba(29,111,255,.25);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  color: rgba(255,255,255,.62);
  line-height: 1.55;
}
.calc-roi-note strong { color: var(--blue-mid); font-weight: 700; }
.calc-footnote {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
  line-height: 1.5;
}
@media (min-width: 901px) {
  .wc-reveal-btn { display: none; }
}

/* ============================================================
   MID-PAGE CTA STRIP
============================================================ */
.cta-strip {
  background: var(--navy);
  padding: 80px 0;
}
.cta-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.cta-strip-inner h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 560px;
  margin: 0;
}

/* ============================================================
   FOOTER BOOK BUTTON
============================================================ */
.foot-book-btn {
  display: inline-flex;
  margin-top: 18px;
  font-size: 14px;
  padding: 11px 22px;
}

/* ============================================================
   FAQ
============================================================ */
#faq {
  background: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.faq-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.faq-head h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.faq-head p { font-size: 17px; color: var(--muted); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item[open] {
  box-shadow: var(--shadow-sm);
}
.faq-item + .faq-item { margin-top: 8px; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.15s ease, background 0.15s ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--blue); background: var(--off-white); }
.faq-item[open] .faq-q { color: var(--blue); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.25s ease, color 0.15s ease;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--blue);
}
.faq-a {
  padding: 0 24px 22px;
  border-top: 1px solid var(--border);
}
.faq-a p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.72;
  margin-top: 18px;
}

/* ============================================================
   RESPONSIVE — 900px
============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
  .flow-wrap { max-width: 380px; margin: 0 auto; }
  .phone-flow { max-width: 100%; margin: 0 auto; }
  .problem-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .how-agents { grid-template-columns: 1fr; }
  .hac--review { grid-template-columns: 1fr; gap: 24px; }
  .how-outcomes { flex-direction: column; padding: 20px 24px; gap: 14px; }
  .how-outcome-sep { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .channel-cards { max-width: 500px; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .value-inner { grid-template-columns: 1fr; gap: 48px; }
  .val-live { max-width: 480px; }
  #calculator { padding: 0; border: none; }
  #calculator .container { padding: 0; max-width: none; }
  .calc-header { display: block; }
  .calc-layout { display: block !important; position: relative; min-height: 100svh; overflow: hidden; background: var(--off-white); }
  .calc-fields-col {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-start;
    padding: 72px 32px 48px;
    background: var(--off-white);
    z-index: 1; order: unset;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .calc-fields-col.wc-step-done {
    opacity: 0; transform: translateY(-40px); pointer-events: none; z-index: 0;
  }
  .calc-result-card {
    position: absolute !important;
    top: 64px;
    left: 12px;
    right: 12px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(6,15,34,.25);
    padding: 28px 20px 24px;
    display: flex; flex-direction: column; justify-content: flex-start;
    z-index: 0; order: unset;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34,1.1,0.64,1);
  }
  .calc-result-card.wc-revealed { z-index: 2; opacity: 1; transform: translateY(0); pointer-events: all; }
  .calc-result-pill { margin-bottom: 10px; }
  .calc-monthly-sub { margin-bottom: 18px; }
  .calc-divider { margin-bottom: 14px; }
  .calc-secondary-row { margin-bottom: 16px; }
  .calc-roi-note { padding: 10px 14px; }
  .wc-demo-btn { margin-top: 14px; }
  .wc-change-link { margin-top: 10px; }
  .wc-reveal-btn { display: flex; }
  .wc-panel-title { display: none; }
  .wc-change-link { display: flex; }
}

/* ============================================================
   RESPONSIVE — 640px
============================================================ */
@media (max-width: 640px) {
  #hero { padding: 80px 0 44px; }
  #problem, #how, #process, #channels, #industries, #value { padding: 70px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .how-outcomes { padding: 16px 20px; }
  .ind-grid { grid-template-columns: 1fr; }
  .val-metrics { margin-top: 24px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .problem-head { margin-bottom: 40px; }
  .how-head { margin-bottom: 48px; }
  .hero-sub { font-size: 16px; }
  .calc-monthly-num { font-size: 2.2rem; }
  .calc-secondary-row { gap: 16px; }
  .calc-fields { gap: 18px; }
  .wc-toggle-btn { padding: 4px 9px; font-size: 11px; }
  .wc-field-label { flex-wrap: wrap; gap: 8px; }
  .wc-input { padding: 13px 14px; font-size: 1.25rem; }
  .wc-prefix { padding: 0 12px; }
  .wc-suffix { display: none; }
}

/* ============================================================
   RESPONSIVE — 480px
============================================================ */
@media (max-width: 480px) {
  .hero-copy   { display: contents; }
  .hero-badge  { order: 1; }
  .hero-h1     { order: 2; }
  .hero-visual { order: 3; display: flex; margin: 32px auto; }
  .hero-sub    { order: 4; }
  .hero-body   { order: 5; }
  .hero-pills  { order: 6; }
  .hero-ctas   { order: 7; }
  .hero-inner  { grid-template-columns: 1fr; }
  .phone-flow  { zoom: 0.78; }
  .hero-h1 { font-size: 2.2rem; }
  .channel-cards { gap: 10px; }
  .ch-card { padding: 18px 16px; }
  .ind-card { padding: 22px 18px; }
  .calc-monthly-num { font-size: 2rem; }
  .calc-secondary-num { font-size: 1.3rem; }
  .calc-secondary-row { gap: 12px; }
}

@media (max-width: 640px) {
  #faq { padding: 70px 0; }
  .faq-head { margin-bottom: 36px; }
  .faq-q { font-size: 14.5px; padding: 18px 18px; }
  .faq-a { padding: 0 18px 18px; }
}
