/* ===========================================
   HEYRAFI WHOLESALER LANDING PAGE — STYLES
   =========================================== */

:root {
  /* Brand Colors */
  --neon-green: #91FFC1;
  --dark-green: #336348;
  --dark-grey: #2D2F36;
  --off-white: #FFFEFA;
  --lilac: #B3C7FF;
  --black: #17181A;

  /* Aliases for existing code */
  --mint: #91FFC1;
  --mint-dark: #336348;
  --blue: #B3C7FF;
  --dark: #17181A;
  --dark-card: #2D2F36;
  --gray: #888;
  --gray-light: #f4f4f0;
  --white: #FFFEFA;
  --text: #17181A;
  --text-light: #2D2F36;
  --border: rgba(0,0,0,0.08);
  --border-dark: rgba(255,255,255,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;
  --shadow: 0 4px 32px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 60px rgba(0,0,0,0.12);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Switzer', 'Inter', sans-serif; color: var(--text); background: var(--off-white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark-green);
  border: 1px solid var(--dark-green);
  border-radius: var(--radius-pill);
  padding: 5px 16px;
  margin-bottom: 20px;
  background: rgba(51,99,72,0.08);
}

/* Centers the pill tag without stretching it */
.section-label-wrap {
  display: block;
  text-align: center;
}

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-heading em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--dark-green);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 26px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--neon-green);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(145,255,193,0.35);
}
.btn-primary:hover {
  background: #7aefab;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(145,255,193,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(23,24,26,0.2);
}
.btn-ghost:hover {
  border-color: var(--dark-green);
  color: var(--dark-green);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--neon-green);
  color: var(--black);
  padding: 10px 22px;
  font-size: 0.8rem;
}
.btn-nav:hover { background: #7aefab; color: var(--black); }

/* ===== ARC BACKGROUNDS ===== */
.arc-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.arc-bg--left { left: 0; top: 0; width: 50%; height: 100%; }
.arc-bg--right { right: 0; top: 0; width: 50%; height: 100%; }
.arc-bg--center { left: 0; top: 0; width: 100%; height: 100%; }
.arc-bg--stats { left: 0; top: 0; width: 100%; height: 100%; }
.arc-bg--faq { right: 0; top: 0; width: 40%; height: 100%; }
.arc-bg--cta { left: 0; top: 0; width: 100%; height: 100%; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding var(--transition), box-shadow var(--transition);
}
.nav-header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--mint-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--white);
  overflow: hidden;
}
.hero-arc {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-arc svg { width: 100%; height: 100%; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(51,99,72,0.08);
  border: 1px solid rgba(51,99,72,0.3);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 28px;
  text-wrap: balance;
}
.hl-line {
  display: block;
}
.hl-accent {
  color: var(--dark-green);
}
.hero-headline em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--dark-green);
  white-space: nowrap;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-micro {
  font-size: 0.84rem;
  color: #999;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  width: 100%;
}
.rafi-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  max-width: 400px;
  color: var(--white);
}
.rafi-card--main { box-shadow: 0 24px 80px rgba(0,0,0,0.25); }
.rafi-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.rafi-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px var(--neon-green); }
  50% { box-shadow: 0 0 14px var(--neon-green); }
}
.rafi-time { margin-left: auto; }

.rafi-notification {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}
.rafi-notification:last-child { margin-bottom: 0; }
.rafi-icon {
  color: var(--mint);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.rafi-icon--green { color: #4ade80; }
.rafi-icon--blue { color: var(--blue); }
.rafi-notif-title {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.rafi-notif-sub {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.45);
}

.rafi-stat-card {
  background: rgba(126,223,192,0.1);
  border: 1px solid rgba(126,223,192,0.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rafi-stat-card--blue {
  background: rgba(91,184,245,0.1);
  border-color: rgba(91,184,245,0.2);
}
.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}
.stat-sym {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

/* ===== HERO IMAGE (legacy) ===== */
.hero-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15);
  min-height: 420px;
  background: var(--dark-card);
}
.hero-image-wrap img,
.hero-image-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ===== HERO STAGE (live call showcase) ===== */
.hero-stage {
  position: relative;
  width: 100%;
  min-height: 620px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-orbit {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}
.stage-orbit circle {
  fill: none;
  stroke: rgba(51,99,72,0.18);
  stroke-width: 1;
  stroke-dasharray: 3 7;
  transform-origin: 300px 300px;
  animation: orbitSpin 60s linear infinite;
}
.stage-orbit circle:last-child {
  stroke: rgba(91,184,245,0.22);
  animation-duration: 80s;
  animation-direction: reverse;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.stage-phone {
  position: relative;
  width: 280px;
  height: 525px;
  background: #17181A;
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    0 30px 80px rgba(23,24,26,0.22),
    0 0 0 1px rgba(23,24,26,0.08),
    inset 0 0 0 2px rgba(255,255,255,0.04);
  z-index: 3;
}
.stage-phone__notch {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px;
  background: #0d0e10;
  border-radius: 20px;
  z-index: 2;
}
.stage-phone__screen {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 60%);
  border-radius: 30px;
  overflow: hidden;
  padding: 56px 16px 16px;
  display: flex; flex-direction: column;
}

.call-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 4px 12px;
  border-bottom: 1px solid rgba(23,24,26,0.06);
}
.call-header__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  color: #17181A; font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.call-header__meta { flex: 1; min-width: 0; line-height: 1.2; }
.call-header__meta strong { display: block; font-size: 13px; color: var(--text); font-weight: 700; }
.call-header__meta span { font-size: 10.5px; color: rgba(23,24,26,0.55); display: inline-flex; align-items: center; gap: 5px; margin-top: 2px; }
.call-live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239,68,68,0.6);
  animation: pulseLive 1.4s ease-out infinite;
}
@keyframes pulseLive {
  0% { box-shadow: 0 0 0 0 rgba(239,68,68,0.55); }
  100% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
}
.call-header__icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(51,99,72,0.12); color: var(--mint-dark);
  display: flex; align-items: center; justify-content: center; font-size: 11px;
}

.call-transcript {
  flex: 1;
  min-height: 0;
  padding: 14px 4px 8px;
  display: flex; flex-direction: column; gap: 10px;
  overflow: hidden;
  justify-content: flex-start;
}

/* Each conversation slot: typing dots, then text reveal. Looping. */
.msg {
  position: relative;
  max-width: 86%;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  overflow: visible;
  padding: 0 12px;
  animation-duration: 20s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  overflow-wrap: break-word;
  will-change: opacity, transform;
}
.msg--rafi {
  background: #17181A; color: #fff;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.msg--seller {
  background: rgba(51,99,72,0.10);
  border: 1px solid rgba(51,99,72,0.16);
  color: var(--text);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.msg-typing, .msg-text {
  display: block;
  padding: 10px 0;
  opacity: 0;
}
.msg-typing { display: flex; gap: 3px; align-items: center; height: 18px; }
.msg-typing i {
  width: 5px; height: 5px; border-radius: 50%; background: var(--mint);
  animation: typingDot 1s ease-in-out infinite;
}
.msg-typing i:nth-child(2) { animation-delay: 0.15s; }
.msg-typing i:nth-child(3) { animation-delay: 0.3s; }
.msg--seller .msg-typing i { background: var(--mint-dark); }

.bubble__who {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 2px;
}
.msg--rafi .bubble__who { color: var(--mint); opacity: 1; }
.msg--seller .bubble__who { color: var(--mint-dark); opacity: 1; }

/* Slot reveal: appears as typing pill at appearStart, becomes text at textStart, stays till end */
.msg--1 { animation-name: slot1; }
.msg--2 { animation-name: slot2; }
.msg--3 { animation-name: slot3; }
.msg--4 { animation-name: slot4; }
.msg--5 { animation-name: slot5; }
.msg--1 .msg-typing { animation: typeOn 20s forwards; animation-delay: 0s; }
.msg--1 .msg-text   { animation: textOn 20s forwards; animation-delay: 0s; }
.msg--2 .msg-typing { animation: typeOn 20s forwards; animation-delay: 4s; }
.msg--2 .msg-text   { animation: textOn 20s forwards; animation-delay: 4s; }
.msg--3 .msg-typing { animation: typeOn 20s forwards; animation-delay: 8s; }
.msg--3 .msg-text   { animation: textOn 20s forwards; animation-delay: 8s; }
.msg--4 .msg-typing { animation: typeOn 20s forwards; animation-delay: 12s; }
.msg--4 .msg-text   { animation: textOn 20s forwards; animation-delay: 12s; }
.msg--5 .msg-typing { animation: typeOn 20s forwards; animation-delay: 16s; }
.msg--5 .msg-text   { animation: textOn 20s forwards; animation-delay: 16s; }

/* Keep transcript readable at all times — the animation-based height reveal was clipping lines. */
.call-transcript .msg {
  animation: none !important;
  opacity: 1;
  transform: none;
  max-height: none;
}
.call-transcript .msg-typing {
  display: none !important;
  animation: none !important;
}
.call-transcript .msg-text {
  opacity: 1 !important;
  animation: none !important;
}

@keyframes slot1 {
  0%, 1.9% { opacity: 0; transform: translateY(10px) scale(0.98); }
  2%, 7.9% { opacity: 1; transform: translateY(0) scale(1); }
  8%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes slot2 {
  0%, 21.9% { opacity: 0; transform: translateY(10px) scale(0.98); }
  22%, 27.9% { opacity: 1; transform: translateY(0) scale(1); }
  28%, 100%  { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes slot3 {
  0%, 41.9% { opacity: 0; transform: translateY(10px) scale(0.98); }
  42%, 47.9% { opacity: 1; transform: translateY(0) scale(1); }
  48%, 100%  { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes slot4 {
  0%, 61.9% { opacity: 0; transform: translateY(10px) scale(0.98); }
  62%, 67.9% { opacity: 1; transform: translateY(0) scale(1); }
  68%, 100%  { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes slot5 {
  0%, 81.9% { opacity: 0; transform: translateY(10px) scale(0.98); }
  82%, 87.9% { opacity: 1; transform: translateY(0) scale(1); }
  88%, 100%  { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes typeOn {
  0%, 1.9% { opacity: 0; }
  2%, 7.9% { opacity: 1; }
  8%, 100% { opacity: 0; }
}
@keyframes textOn {
  0%, 7.9% { opacity: 0; }
  8%       { opacity: 0; }
  10%, 100% { opacity: 1; }
}

@keyframes typingDot {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

.call-actions {
  display: flex; justify-content: center; gap: 14px;
  padding: 8px 0 2px;
}
.call-action {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(23,24,26,0.06); color: var(--text);
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.call-action--end { background: #ef4444; color: #fff; transform: rotate(135deg); }

.stage-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(23,24,26,0.08);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 18px 40px rgba(23,24,26,0.10), 0 0 0 1px rgba(23,24,26,0.02);
  z-index: 4;
  min-width: 200px;
  max-width: 230px;
  animation: cardFloat 6s ease-in-out infinite;
}
.stage-card__row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.stage-card__label { font-size: 10px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(23,24,26,0.55); flex: 1; }
.stage-card__time { font-size: 10px; color: rgba(23,24,26,0.45); font-variant-numeric: tabular-nums; }
.stage-card__title { font-size: 13px; font-weight: 700; color: var(--text); }
.stage-card__meta { font-size: 11px; color: rgba(23,24,26,0.6); margin-top: 2px; }
.stage-dot--live {
  width: 7px; height: 7px; border-radius: 50%; background: var(--mint-dark);
  box-shadow: 0 0 0 0 rgba(51,99,72,0.5);
  animation: pulseLive 1.6s ease-out infinite;
}
.stage-badge {
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.08em;
  padding: 3px 7px; border-radius: 6px;
}
.stage-badge--hot { background: #fee2e2; color: #b91c1c; }

.stage-card--lead     { top: 3%;   left: -11%; animation-delay: 0s;   }
.stage-card--score    { top: 20%;  right: -13%; animation-delay: 1.5s; }
.stage-card--channels { bottom: 6%; left: -14%; animation-delay: 0.8s; min-width: 220px; }
.stage-card--booked   { bottom: 2%; right: -10%; animation-delay: 2.2s; }

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

.score-bars { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.score-bar { display: flex; align-items: center; gap: 8px; font-size: 10.5px; color: rgba(23,24,26,0.7); }
.score-bar span { width: 64px; flex-shrink: 0; }
.score-track { flex: 1; height: 5px; background: rgba(23,24,26,0.06); border-radius: 99px; overflow: hidden; }
.score-track i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--mint-dark));
  border-radius: 99px;
  animation: scoreFill 2.4s ease-out forwards;
  transform-origin: left;
  transform: scaleX(0);
}
.score-bar:nth-child(1) .score-track i { animation-delay: 0.3s; }
.score-bar:nth-child(2) .score-track i { animation-delay: 0.6s; }
.score-bar:nth-child(3) .score-track i { animation-delay: 0.9s; }
@keyframes scoreFill { to { transform: scaleX(1); } }

.chan-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; color: var(--text);
  padding: 5px 0;
}
.chan-row + .chan-row { border-top: 1px solid rgba(23,24,26,0.05); }
.chan-row span:nth-child(2) { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chan {
  width: 24px; height: 24px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0;
}
.chan--call { background: rgba(51,99,72,0.12); color: var(--mint-dark); }
.chan--text { background: rgba(91,184,245,0.18); color: #2278c4; }
.chan--mail { background: rgba(23,24,26,0.07); color: var(--text); }
.chan-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--mint-dark);
  box-shadow: 0 0 0 0 rgba(51,99,72,0.5);
  animation: pulseLive 1.4s ease-out infinite;
}

.booked-head { display: flex; align-items: center; gap: 10px; }
.booked-head i {
  width: 32px; height: 32px; border-radius: 9px;
  background: linear-gradient(135deg, rgba(145,255,193,0.6), rgba(91,184,245,0.35));
  color: #17181A;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.booked-head strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); }
.booked-head small { font-size: 10.5px; color: rgba(23,24,26,0.6); }
.booked-meta { font-size: 10.5px; color: rgba(23,24,26,0.55); margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(23,24,26,0.05); }

@media (max-width: 992px) {
  .hero-stage { min-height: 620px; }
  .stage-card { max-width: 200px; min-width: 180px; padding: 10px 12px; }
  .stage-card--lead    { left: 0%; top: 0%; }
  .stage-card--score   { right: 0%; top: 18%; }
  .stage-card--channels{ left: -4%; bottom: 11%; min-width: 200px; }
  .stage-card--booked  { right: 0%; bottom: 6%; }
}
@media (max-width: 640px) {
  .hero-stage { min-height: 520px; padding: 10px 0; }
  .stage-phone { width: 210px; height: 410px; border-radius: 32px; padding: 8px; }
  .stage-phone__notch { width: 78px; height: 22px; top: 14px; }
  .stage-phone__screen { padding: 46px 12px 12px; border-radius: 26px; }
  .call-header__avatar { width: 32px; height: 32px; font-size: 11px; }
  .msg { font-size: 11px; max-width: 88%; }
  .stage-card { min-width: 150px; max-width: 170px; padding: 8px 10px; transform: scale(0.92); }
  .stage-card__title { font-size: 11.5px; }
  .stage-card__meta, .chan-row, .booked-head small, .booked-meta { font-size: 10px; }
  .score-bar span { width: 54px; font-size: 9.5px; }
  .stage-card--lead    { left: -4%; top: -2%; }
  .stage-card--score   { right: -4%; top: 14%; }
  .stage-card--channels{ left: -7%; bottom: 5%; }
  .stage-card--booked  { right: -4%; bottom: 2%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage *, .hero-stage *::before, .hero-stage *::after { animation: none !important; }
  .bubble { opacity: 1; transform: none; }
  .score-track i { transform: scaleX(1); }
}


/* Legacy video styles kept for reference */
.hero-video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(126,223,192,0.12);
  min-height: 260px;
}
.hero-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  min-height: 260px;
}

/* ===== STATS STRIP (below hero) ===== */
.stats-strip {
  background: var(--dark);
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.ss-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ss-num {
  display: inline;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.ss-plus {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--mint);
}
.ss-sym {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.ss-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
  max-width: 140px;
  margin-top: 4px;
}
.ss-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ===== LOGO BAR ===== */
.logo-bar {
  padding: 32px 0 36px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logo-bar-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 20px;
}
.logo-bar-label span {
  color: var(--dark-green);
}
.logo-track-wrapper {
  overflow: hidden;
  position: relative;
}
.logo-track-wrapper::before,
.logo-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logo-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.logo-track-wrapper::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.logo-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: logoScroll 35s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-pill {
  height: 80px;
  width: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  transition: all 0.3s ease;
}
.logo-pill:hover {
  transform: translateY(-2px);
}
.logo-pill img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.3);
  opacity: 0.75;
  transition: all 0.3s ease;
}
.logo-pill:hover img { 
  filter: grayscale(0);
  opacity: 0.85;
}

/* ===== PROBLEM ===== */
.problem {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--white);
}
.problem .section-label {
  color: var(--dark-green);
  border-color: var(--dark-green);
  background: rgba(51,99,72,0.08);
}
.problem .section-heading { color: var(--dark); }
.problem .section-heading em { color: var(--dark-green); }
.problem .section-sub { color: var(--text-light); }
.problem .container > .section-label,
.problem .container > .section-heading,
.problem .container > .section-sub { text-align: center; }
.problem .container > .section-sub { margin-left: auto; margin-right: auto; }

/* Sexy modern grid */
.problem-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.problem-card-clean {
  position: relative;
  padding: 36px 32px;
  border-radius: 16px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.problem-card-clean::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-green) 0%, var(--dark-green) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-card-clean:hover::after {
  opacity: 1;
}

.problem-card-clean:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: rgba(126,223,192,0.3);
}

.problem-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.problem-number-badge {
  display: none;
}

.problem-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--neon-green);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-grey);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.problem-card-clean:hover .problem-icon-badge {
  background: #7aefab;
  border: none;
  transform: scale(1.08);
}

.problem-card-clean h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.35;
  margin: 0 0 14px 0;
  letter-spacing: -0.01em;
}

.problem-card-clean p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .problem-grid-new {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/* ===== WHAT IS RAFI ===== */
.what-is-rafi {
  padding: 100px 0;
  background: var(--gray-light);
  color: var(--text);
}
.what-is-rafi .section-label { color: var(--dark-green); border-color: var(--dark-green); background: rgba(51,99,72,0.08); }
.what-is-rafi .section-heading { color: var(--dark); }
.what-is-rafi .section-heading em { color: var(--dark-green); }
.wir-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wir-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.75;
}
.wir-list {
  margin-bottom: 36px;
}
.wir-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 14px;
}
.wir-list li i { color: var(--dark-green); margin-top: 3px; flex-shrink: 0; }
.wir-list li em { font-style: italic; color: var(--dark-green); }

/* ===== WIR CARD — Terminal UI ===== */
.wir-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

/* Terminal top bar */
.wir-terminal-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #f7f7f7;
  border-bottom: 1px solid var(--border);
}
.wir-terminal-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.wt-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.wt-dot--red    { background: #ff5f57; }
.wt-dot--yellow { background: #febc2e; }
.wt-dot--green  { background: #28c840; }
.wir-terminal-title {
  flex: 1;
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
}
.wir-terminal-title i { color: var(--dark-green); }
.wir-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--dark-green);
  background: rgba(51,99,72,0.08);
  border: 1px solid rgba(51,99,72,0.2);
  border-radius: 100px;
  padding: 3px 9px;
}
.wir-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--dark-green);
  animation: pulse 2s infinite;
}

/* Lead profile strip */
.wir-lead-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(126,223,192,0.04);
}
.wir-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(51,99,72,0.1);
  border: 1px solid rgba(51,99,72,0.2);
  color: var(--dark-green);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wir-lead-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}
.wir-lead-tag {
  font-size: 0.7rem;
  color: #999;
  margin-top: 2px;
}
.wir-last-contact {
  margin-left: auto;
  text-align: right;
}
.wir-lc-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
}
.wir-lc-value {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fb923c;
  margin-top: 2px;
}

/* Activity log */
.wir-log {
  padding: 6px 0;
}
.wir-log-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.wir-log-row:hover { background: #fafafa; }
.wir-log-row--result {
  background: rgba(126,223,192,0.06);
  border-bottom: none;
}
.wir-log-row--result:hover { background: rgba(126,223,192,0.1); }
.wir-log-time {
  font-size: 0.65rem;
  font-family: 'Courier New', monospace;
  color: #bbb;
  flex-shrink: 0;
  width: 32px;
}
.wir-log-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.wir-log-icon--mint { background: rgba(51,99,72,0.1); color: var(--dark-green); }
.wir-log-icon--blue { background: rgba(179,199,255,0.15); color: var(--lilac); }
.wir-log-icon--green { background: rgba(51,99,72,0.1); color: var(--dark-green); }
.wir-log-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.wir-log-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wir-log-detail {
  font-size: 0.7rem;
  color: #999;
  font-style: italic;
}
.wir-log-detail--green { color: var(--dark-green); font-style: normal; font-weight: 500; }
.wir-log-detail--highlight {
  color: var(--dark-green);
  font-style: normal;
  font-weight: 600;
  font-size: 0.75rem;
}
.wir-result-badge {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--dark-green);
  background: rgba(51,99,72,0.1);
  border: 1px solid rgba(51,99,72,0.25);
  border-radius: 100px;
  padding: 3px 9px;
  flex-shrink: 0;
}

/* Footer */
.wir-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  background: #f7f7f7;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: #999;
  font-style: italic;
}
.wir-footer i { color: var(--mint-dark); font-style: normal; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  position: relative;
  padding: 100px 0;
  background: var(--gray-light);
  overflow: hidden;
}
.how-it-works .section-label,
.how-it-works .section-heading,
.how-it-works .section-sub { text-align: center; }
.how-it-works .section-sub { margin-left: auto; margin-right: auto; }

/* 4-card progress layout */
.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 60px;
}

/* Connecting line — hidden since number circles are removed */
.steps-list::before {
  display: none;
}

.step-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  z-index: 1;
}

.step-card:hover {
  border-color: rgba(51,99,72,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(51,99,72,0.08);
}

.step-card--last {
  border-color: rgba(51,99,72,0.2);
  background: linear-gradient(135deg, rgba(145,255,193,0.04) 0%, var(--white) 100%);
}

/* Hide connector div — used for spacing only */
.step-connector { display: none; }

.step-num-circle {
  display: none;
}

.step-num-circle--last {
  display: none;
}

.step-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-grey);
  font-size: 1rem;
  flex-shrink: 0;
}

.step-icon--mint {
  background: var(--neon-green);
  color: var(--dark-grey);
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.35;
  margin: 0;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .steps-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-list::before { display: none; }
}

/* ===== DEAD LEADS ===== */
.dead-leads {
  color: var(--mint);
}

/* ===== DEAD LEADS ===== */
.dead-leads {
  padding: 100px 0;
  background: var(--white);
}
.dead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dead-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Simple Clean Comparison */
.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.comp-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 2px solid var(--border);
}

.comp-before {
  opacity: 0.7;
}

.comp-after {
  border-color: var(--dark-green);
  box-shadow: 0 2px 16px rgba(51,99,72,0.12);
}

.comp-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.comp-header h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin: 0;
}

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comp-item {
  position: relative;
  padding-left: 16px;
}

.comp-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ddd;
}

.comp-after .comp-item::before {
  background: var(--dark-green);
  box-shadow: 0 0 8px rgba(51,99,72,0.4);
}

.comp-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.comp-detail {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 8px;
  line-height: 1.5;
}

.comp-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.comp-status--cold {
  background: #f3f4f6;
  color: #6b7280;
}

.comp-status--hot {
  background: rgba(251,146,60,0.15);
  color: #ea580c;
}

.comp-status--booked {
  background: rgba(51,99,72,0.1);
  color: var(--dark-green);
}

.comp-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark-green);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(51,99,72,0.3);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .comparison-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .comp-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

.dead-text p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.75;
}
.dead-stats {
  display: flex;
  gap: 24px;
  margin: 32px 0;
}
.dead-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dead-stat-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.dead-stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.dead-stat > span {
  font-size: 2rem;
  font-weight: 900;
  color: var(--dark-green);
  line-height: 1;
}
.dead-stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.45;
}

/* ===== BENEFITS ===== */
.benefits {
  position: relative;
  padding: 100px 0;
  background: var(--gray-light);
  overflow: hidden;
}
.benefits .section-label,
.benefits .section-heading,
.benefits .section-sub { text-align: center; }
.benefits .section-sub { margin-left: auto; margin-right: auto; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-green);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}
.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== VS SECTION ===== */
.vs-section {
  padding: 100px 0;
  background: var(--off-white);
}
.vs-section .section-label,
.vs-section .section-heading { text-align: center; }
.vs-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 16px;
}
.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.vs-table thead {
  background: var(--dark-grey);
  color: var(--off-white);
}
.vs-table th {
  padding: 18px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.vs-table th:first-child { text-align: left; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; }
.vs-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--text);
}
.vs-table td:first-child { text-align: left; font-weight: 500; }
.vs-table tbody tr:last-child td { border-bottom: none; }
.vs-table tbody tr:nth-child(even) { background: var(--gray-light); }

.vs-rafi { background: rgba(145,255,193,0.07) !important; }
.vs-rafi th, .vs-rafi td { }
.vs-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}
.vs-table thead th.vs-them { color: rgba(255,254,250,0.9); }
.vs-yes { color: var(--dark-green); font-size: 1rem; }
.vs-no { color: #e05; font-size: 1rem; }
.vs-partial { color: var(--dark-green); font-size: 1rem; }

/* ===== WHO FOR ===== */
.who-for {
  padding: 100px 0;
  background: var(--gray-light);
}
.who-for .section-label,
.who-for .section-heading { text-align: center; }
.who-for .section-label {
  color: var(--dark-green);
  border-color: var(--dark-green);
  background: rgba(51,99,72,0.08);
}
.who-for .section-heading {
  color: var(--dark);
}
.who-for .section-heading em {
  color: var(--dark-green);
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.who-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.who-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-green) 0%, var(--dark-green) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.who-card:hover::before { opacity: 1; }
.who-card:hover {
  border-color: rgba(51,99,72,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(51,99,72,0.08);
}
.who-card--dark {
  background: var(--dark);
  border-color: rgba(126,223,192,0.15);
}
.who-card--dark::before {
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint-dark) 100%);
}
.who-card--dark:hover {
  border-color: rgba(126,223,192,0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.who-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.who-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-green);
  background: rgba(51,99,72,0.1);
  border: 1.5px solid rgba(51,99,72,0.25);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
}
.who-tag--light {
  color: var(--neon-green);
  background: rgba(145,255,193,0.1);
  border-color: rgba(145,255,193,0.3);
}
.who-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(51,99,72,0.08);
  border: 1.5px solid rgba(51,99,72,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-green);
  font-size: 1rem;
}
.who-icon--light {
  background: rgba(145,255,193,0.12);
  border-color: rgba(145,255,193,0.25);
  color: var(--neon-green);
}
.who-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--dark);
  border-left: 3px solid var(--dark-green);
  padding-left: 18px;
  margin: 0;
}
.who-quote--light {
  color: var(--white);
  border-left-color: var(--mint);
}
.who-card > p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}
.who-card--dark > p {
  color: rgba(255,255,255,0.55);
}
.who-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.who-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-light);
  font-weight: 500;
}
.who-list li i {
  color: var(--dark-green);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.who-list--light li { color: rgba(255,255,255,0.75); }
.who-cta {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.who-card--dark .who-cta {
  border-top-color: rgba(255,255,255,0.08);
}

/* ===== STATS BAR ===== */
.stats-bar {
  position: relative;
  padding: 70px 0;
  background: var(--dark-green);
  overflow: hidden;
}
.stats-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.stat-block { text-align: center; }
.stat-big {
  display: inline;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--neon-green);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-big--infinity {
  font-size: 2.5rem;
  font-weight: 400;
}
.stat-big-plus {
  font-size: 2rem;
  font-weight: 400;
  color: var(--neon-green);
}
.stat-desc {
  font-size: 0.84rem;
  color: rgba(255,254,250,0.75);
  margin-top: 10px;
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,254,250,0.15);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--off-white);
}
.testimonials .section-label,
.testimonials .section-heading { text-align: center; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testi-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.testi-card > p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(51,99,72,0.1);
  color: var(--dark-green);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
}
.testi-title {
  font-size: 0.75rem;
  color: #aaa;
}

/* ===== FAQ ===== */
.faq {
  position: relative;
  padding: 100px 0;
  background: var(--gray-light);
  overflow: hidden;
}
.faq .section-label,
.faq .section-heading { text-align: center; }
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 16px;
}
.faq-q i {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-light);
  font-size: 0.8rem;
}
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); color: var(--dark-green); }
.faq-q[aria-expanded="true"] { color: var(--dark-green); }
.faq-a {
  display: none;
  padding-bottom: 20px;
}
.faq-a.open { display: block; }
.faq-a p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===== SCHEDULE CTA ===== */
.schedule-cta {
  position: relative;
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}
.schedule-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.schedule-text .section-label { margin-bottom: 20px; }
.schedule-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}
.schedule-heading em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--dark-green);
}
.schedule-text > p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.75;
}
.schedule-promises li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
}
.schedule-promises li i { color: var(--dark-green); font-size: 0.9rem; }

.schedule-form-wrap {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.schedule-form-header {
  padding: 32px 32px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  background: #ffffff;
}
.form-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 16px;
}
.schedule-form-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.schedule-form-header p {
  font-size: 0.82rem;
  color: #aaa;
}
.schedule-form {
  padding: 28px 32px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: #ffffff;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--dark-green);
  box-shadow: 0 0 0 3px rgba(51,99,72,0.12);
}
.form-group input.error,
.form-group select.error { border-color: #e05; }

.form-disclaimer {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  color: #bbb;
  text-align: center;
  line-height: 1.5;
}

.form-success {
  padding: 40px 28px;
  text-align: center;
}
.form-success-icon {
  font-size: 3rem;
  color: var(--dark-green);
  margin-bottom: 16px;
  display: block;
}
.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark);
}
.form-success p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}
.form-success-sub {
  font-size: 0.82rem;
  color: #aaa;
  font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
}
.footer-logo p {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,254,250,0.6);
  line-height: 1.6;
}
.footer-links, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a, .footer-legal a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover, .footer-legal a:hover { color: var(--mint); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 16px 20px;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    z-index: 998;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .mobile-sticky-cta.visible {
    transform: translateY(0);
  }
  .mobile-sticky-cta .btn {
    width: 100%;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
}

/* ===========================================
   SCHEDULE MODAL
   =========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 32px 100px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--text-light);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--transition), color var(--transition);
}
.modal-close:hover { background: #e8e8e8; color: var(--dark); }
.modal-logo {
  margin-bottom: 20px;
}
.modal-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.modal-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.modal-field input {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.modal-field input:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(126,223,192,0.15);
}
.modal-field input.error { border-color: #e05; }
.modal-disclaimer {
  font-size: 0.72rem;
  color: #bbb;
  text-align: center;
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 1024px) {
  .steps-list {
    grid-template-columns: 1fr 1fr;
  }
  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .stat-divider { display: none; }
}

@media (max-width: 1024px) {
  .stats-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
  .ss-divider { display: none; }
}

@media (max-width: 768px) {
  .btn-nav { display: none; }
  .hamburger { display: none !important; }
  .nav-links { display: none !important; }
  .nav-header {
    position: relative;
    top: auto; left: auto; right: auto;
  }
  .nav-inner {
    justify-content: center;
  }

  .hero { padding: 40px 0 60px; overflow-x: hidden; }
  .hero-inner { 
    grid-template-columns: 1fr; 
    gap: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-content {
    display: contents;
  }
  .hero-headline {
    order: 1;
    margin-bottom: 16px;
    text-align: center;
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
  }
  .hero-sub { order: 2; margin-bottom: 24px; text-align: center; line-height: 1.4; font-size: 0.95rem; max-width: 100%; }
  .btn-ghost.btn-lg { display: none; }
  .hero-visual { order: 3; margin-bottom: 28px; width: 100%; }
  .hero-ctas {
    order: 4;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .hero-ctas .btn { width: 100%; max-width: 360px; justify-content: center; }
  .hero-micro { order: 5; text-align: center; }
  .rafi-card { max-width: 100%; }

  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }

  .wir-inner { grid-template-columns: 1fr; gap: 48px; }
  .dead-inner { grid-template-columns: 1fr; gap: 48px; }
  .dead-visual { order: -1; }

  .who-grid { grid-template-columns: 1fr; gap: 16px; }

  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; text-align: center; }

  .schedule-inner { grid-template-columns: 1fr; gap: 48px; }
  .schedule-form { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .vs-table { font-size: 0.8rem; }
  .vs-table th, .vs-table td { padding: 10px 12px; }
}

/* Responsive for new problem layout */
@media (max-width: 1024px) {
  .problem-grid-new {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .problem-card-diagonal {
    min-height: 420px;
  }
  .problem-number-large {
    font-size: 6rem;
    top: 16px;
    right: 24px;
  }
  .problem-diagonal-content {
    padding: 40px 36px;
  }
}

@media (max-width: 768px) {
  .problem-card-diagonal {
    min-height: 380px;
  }
  .problem-diagonal-content {
    padding: 32px 28px;
  }
  .problem-card-diagonal h3 {
    font-size: 1.4rem;
  }
  .problem-icon-large {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
  }
  .problem-number-large {
    font-size: 4.5rem;
  }
}

@media (max-width: 480px) {
  .stats-strip-inner {
    grid-template-columns: 1fr 1fr;
  }
  .steps-list {
    grid-template-columns: 1fr;
  }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .dead-stats { flex-direction: column; gap: 20px; }
  .stats-inner { grid-template-columns: 1fr; }
  .vs-table { min-width: 560px; }
}

/* ============================================================
   HERO-AESTHETIC VISUAL OVERRIDES
   Restyle the .wir-card (Rafi Intelligence Engine) and the
   Before/After .comp-cards to match the hero illustration:
   dark surface (#2D2F36), mint (#91FFC1) + lilac (#B3C7FF)
   glows, generous radius, layered depth, off-white text.
   ============================================================ */

/* Shared backdrop glow for both visual columns */
.wir-visual,
.dead-visual {
  position: relative;
}
.wir-visual::before,
.dead-visual::before {
  content: '';
  position: absolute;
  inset: -8% -6%;
  background:
    radial-gradient(45% 55% at 22% 28%, rgba(145,255,193,0.32), transparent 70%),
    radial-gradient(50% 50% at 82% 78%, rgba(179,199,255,0.28), transparent 72%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.wir-visual > *,
.dead-visual > * { position: relative; z-index: 1; }

/* ===== WIR CARD — Dark hero-style surface ===== */
.wir-card {
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(145,255,193,0.10), transparent 55%),
    radial-gradient(120% 80% at 100% 100%, rgba(179,199,255,0.10), transparent 55%),
    linear-gradient(180deg, #34373F 0%, #2D2F36 100%);
  border: 1px solid rgba(255,255,254,0.08);
  border-radius: 22px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(145,255,193,0.06) inset,
    0 1px 0 rgba(255,255,254,0.06) inset;
}

.wir-terminal-bar {
  background: linear-gradient(180deg, rgba(255,255,254,0.04), rgba(255,255,254,0.01));
  border-bottom: 1px solid rgba(255,255,254,0.06);
  padding: 14px 20px;
}
.wir-terminal-title { color: rgba(255,255,254,0.55); }
.wir-terminal-title i { color: var(--mint); }

.wir-live-badge {
  color: var(--mint);
  background: rgba(145,255,193,0.10);
  border: 1px solid rgba(145,255,193,0.28);
}
.wir-live-dot { background: var(--mint); box-shadow: 0 0 10px rgba(145,255,193,0.7); }

.wir-lead-profile {
  background: rgba(145,255,193,0.04);
  border-bottom: 1px solid rgba(255,255,254,0.06);
}
.wir-avatar {
  background: linear-gradient(135deg, rgba(145,255,193,0.22), rgba(179,199,255,0.18));
  border: 1px solid rgba(145,255,193,0.35);
  color: var(--mint);
  box-shadow: 0 0 18px rgba(145,255,193,0.18);
}
.wir-lead-name { color: var(--off-white); }
.wir-lead-tag  { color: rgba(255,255,254,0.45); }
.wir-lc-label  { color: rgba(255,255,254,0.4); }
.wir-lc-value  { color: #FFB877; }

.wir-log-row {
  border-bottom: 1px solid rgba(255,255,254,0.05);
  padding: 12px 20px;
}
.wir-log-row:hover { background: rgba(255,255,254,0.025); }
.wir-log-row--result {
  background: linear-gradient(90deg, rgba(145,255,193,0.10), rgba(179,199,255,0.08));
  border-bottom: none;
}
.wir-log-row--result:hover { background: linear-gradient(90deg, rgba(145,255,193,0.14), rgba(179,199,255,0.10)); }

.wir-log-time { color: rgba(255,255,254,0.3); }
.wir-log-icon--mint  { background: rgba(145,255,193,0.14); color: var(--mint); }
.wir-log-icon--blue  { background: rgba(179,199,255,0.16); color: var(--lilac); }
.wir-log-icon--green { background: rgba(145,255,193,0.14); color: var(--mint); }
.wir-log-label  { color: var(--off-white); }
.wir-log-detail { color: rgba(255,255,254,0.5); }
.wir-log-detail--green     { color: var(--mint); }
.wir-log-detail--highlight { color: var(--mint); }

.wir-result-badge {
  color: #0F2A1E;
  background: var(--mint);
  border: 1px solid rgba(145,255,193,0.6);
  box-shadow: 0 4px 14px rgba(145,255,193,0.35);
}

.wir-footer {
  background: rgba(255,255,254,0.02);
  border-top: 1px solid rgba(255,255,254,0.06);
  color: rgba(255,255,254,0.5);
}
.wir-footer i { color: var(--mint); }

/* ===== BEFORE / AFTER COMPARISON — Hero-style depth ===== */
.comp-card {
  border-radius: 22px;
  padding: 28px 26px;
  border: 1px solid rgba(255,255,254,0.08);
  background: linear-gradient(180deg, #34373F 0%, #2D2F36 100%);
  box-shadow: 0 20px 50px -18px rgba(0,0,0,0.45);
}

.comp-before {
  opacity: 1;
  background: linear-gradient(180deg, #F4F5F7 0%, #EAECEF 100%);
  border: 1px solid rgba(23,24,26,0.10);
  box-shadow: 0 12px 30px -16px rgba(23,24,26,0.18);
}
.comp-before .comp-header h4 { color: rgba(23,24,26,0.55); }
.comp-before .comp-name      { color: rgba(23,24,26,0.75); }
.comp-before .comp-detail    { color: rgba(23,24,26,0.5); }

.comp-after {
  background:
    radial-gradient(110% 80% at 100% 0%, rgba(145,255,193,0.14), transparent 60%),
    linear-gradient(180deg, #34373F 0%, #2D2F36 100%);
  border: 1px solid rgba(145,255,193,0.30);
  box-shadow:
    0 30px 70px -20px rgba(0,0,0,0.55),
    0 0 40px -10px rgba(145,255,193,0.25);
}
.comp-after .comp-header h4 { color: var(--mint); }
.comp-after .comp-name      { color: var(--off-white); }
.comp-after .comp-detail    { color: rgba(255,255,254,0.65); }

.comp-header { border-bottom: 1px solid rgba(255,255,254,0.08); }

.comp-item::before { background: rgba(255,255,254,0.2); }
.comp-after .comp-item::before {
  background: var(--mint);
  box-shadow: 0 0 10px rgba(145,255,193,0.7);
}

.comp-status--cold {
  background: rgba(23,24,26,0.08);
  color: rgba(23,24,26,0.55);
}
.comp-status--hot {
  background: rgba(255,184,119,0.18);
  color: #FFB877;
}
.comp-status--booked {
  background: rgba(145,255,193,0.18);
  color: var(--mint);
  border: 1px solid rgba(145,255,193,0.35);
}

.comp-arrow {
  background: linear-gradient(135deg, var(--mint), var(--lilac));
  color: #0F2A1E;
  box-shadow:
    0 10px 28px rgba(145,255,193,0.45),
    0 4px 14px rgba(179,199,255,0.30);
}

