/* ===========================================
   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: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.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(2.2rem, 3.8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 32px;
}
.hl-line {
  display: block;
  white-space: nowrap;
}
.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;
}

/* ===== VIDEO PLACEHOLDER ===== */
.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;
  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; }
  .hero-inner { 
    grid-template-columns: 1fr; 
    gap: 0;
    display: flex;
    flex-direction: column;
  }
  .hero-content {
    display: contents;
  }
  .hero-headline { order: 1; margin-bottom: 16px; text-align: center; }
  .hero-sub { order: 2; margin-bottom: 24px; text-align: center; line-height: 1.4; font-size: 0.95rem; }
  .btn-ghost.btn-lg { display: none; }
  .hero-visual { order: 3; margin-bottom: 28px; width: 100%; }
  .hero-ctas { order: 4; margin-bottom: 16px; }
  .hero-micro { order: 5; text-align: center; }
  .rafi-card { max-width: 100%; }

  /* 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;
  }
}
  .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; }
}

@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; }
}
