/* ==========================================================================
   KICK — Landing-specific layouts (shared across A/B/C)
   ========================================================================== */

/* ---------- HERO ---------- */

.hero {
  padding: clamp(32px, 6vw, 72px) 0 clamp(48px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-6);
  align-items: center;
}
.hero-wrap .hero-copy { min-width: 0; }

.hero h1 {
  margin-bottom: var(--space-4);
}
.hero h1 .break { display: block; }
.hero .subhead {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-soft);
  max-width: 56ch;
  margin-bottom: var(--space-4);
}
.hero-bullets {
  list-style: none;
  margin: 0 0 var(--space-4);
  padding: 0;
  display: grid;
  gap: 10px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.hero-bullets li::before {
  content: "";
  width: 16px; height: 16px;
  border: 2px solid var(--ink);
  background: var(--accent);
  border-radius: 4px;
  flex-shrink: 0;
}
.hero-microcopy {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero B — split with form */
.hero.is-split .hero-form {
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-4);
  color: var(--ink);
  max-width: 440px;
  margin-left: auto;
}
.hero.is-split .hero-form h3 { color: var(--ink); margin-bottom: 4px; font-size: 22px; }
.hero.is-split .hero-form .subcopy { font-size: 13px; color: #4a4338; margin-bottom: 16px; }

.hero-stats {
  width: 60%;
  margin: var(--space-7) auto 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.hero-stats .stat {
  text-align: center;
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--accent);
  letter-spacing: -0.02em;
}
.hero-stats .stat span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Trust / marquee ---------- */

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  padding: 16px 24px;
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.trust-bar .trust-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.trust-bar .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.trust-bar .pill svg { flex-shrink: 0; }

/* ---------- Problem/solution ---------- */

.split-problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.split-problem .side {
  padding: var(--space-5);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split-problem .before {
  background: var(--surface);
  color: var(--text);
}
.split-problem .before h3 { color: var(--text); }
.split-problem .after {
  background: var(--accent);
  color: var(--ink);
}
.split-problem .after h3 { color: var(--ink); }
.split-problem .after p { color: #2a1e16; }
.split-problem ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.split-problem ul li {
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(0,0,0,0.12);
}
.split-problem .after ul li {
  background: rgba(255,255,255,0.35);
}
.split-problem .tag-row {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.split-problem .before .tag-row { color: var(--muted); }
.split-problem .after .tag-row { color: var(--ink); font-weight: 700; }

@media (max-width: 900px) {
  .split-problem { grid-template-columns: 1fr; }
}

/* ---------- Features ---------- */

.feature-card {
  background: var(--paper);
  color: var(--ink);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.feature-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #6b5f4d;
  letter-spacing: 0.1em;
}
.feature-card h3 { color: var(--ink); font-size: 22px; margin: 0; }
.feature-card p { color: #2a2520; font-size: 15px; margin: 0; }
.feature-card .ico {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--accent);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.feature-card:nth-child(2) .ico { background: var(--accent-2); }
.feature-card:nth-child(3) .ico { background: var(--success); }

/* ---------- Steps ---------- */

.steps {
  display: grid;
  gap: var(--space-3);
  position: relative;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.step-card {
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-4);
  position: relative;
}
.step-card .step-num {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--accent);
  border: var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 14px;
}
.step-card h4 { color: var(--text); font-size: 18px; margin-bottom: 6px; }
.step-card p { color: var(--text-soft); font-size: 14px; margin: 0; }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ---------- Demo / product showcase ---------- */

.demo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.demo-points {
  display: grid;
  gap: 14px;
  margin-top: var(--space-4);
}
.demo-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.demo-point .ico {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--accent);
  border: var(--border-thin);
  border-radius: 8px;
  flex-shrink: 0;
}
.demo-point h4 { color: var(--text); font-size: 16px; margin: 0 0 4px; text-transform: none; font-family: var(--font-body); font-weight: 800; letter-spacing: -0.01em; }
.demo-point p { color: var(--text-soft); font-size: 14px; margin: 0; }

@media (max-width: 900px) {
  .demo-wrap { grid-template-columns: 1fr; }
}

/* ---------- CTA / Form section ---------- */

.apply {
  background: var(--accent);
  color: var(--ink);
  border-top: var(--border);
  border-bottom: var(--border);
}
.apply h2 { color: var(--ink); }
.apply p { color: #2a1e16; }
.apply-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
}
.apply-form {
  background: var(--bg);
  color: var(--text);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-5);
}
.apply-form h3 { color: var(--text); }
.apply-form .field label { color: var(--text); }
.apply-form .input { background: var(--paper); }
.apply-form .help { color: var(--text-soft); }
.spots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--paper);
  border: var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.spots .dot {
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.25);
}

@media (max-width: 900px) {
  .apply-wrap { grid-template-columns: 1fr; }
}

/* ---------- Reassurance ---------- */

.reassure {
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-5);
  text-align: center;
}
.reassure h3 { color: var(--text); font-size: 24px; }
.reassure p { margin-inline: auto; }

/* ---------- FAQ wrapper ---------- */

.faq-wrap {
  max-width: 780px;
  margin-inline: auto;
}

/* ---------- Tiny responsive hero tweaks ---------- */

@media (max-width: 900px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 12px; }
  .hero-stats .stat strong { font-size: 20px; }
  .trust-bar { padding: 12px 16px; }
}
