/* ══════════════════════════════════════════
   SCHOOLS PAGE — Page-specific styles
   ══════════════════════════════════════════ */

/* ── Light theme overrides ── */
[data-theme="light"] .orb { opacity: 0.08; }
[data-theme="light"] #network-canvas { opacity: var(--kv-canvas-opacity); }
[data-theme="light"] .glass-card,
[data-theme="light"] .stat-card,
[data-theme="light"] .diff-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .pilot-details-card,
[data-theme="light"] .pilot-form-card,
[data-theme="light"] .hiw-step {
  background: rgba(255,255,255,0.88);
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .challenge-section { background: linear-gradient(180deg,#FFF7ED 0%,#FFFFFF 100%); }
[data-theme="light"] .hiw-section { background: linear-gradient(180deg,#F0FDF9 0%,#FFFFFF 100%); }
[data-theme="light"] .diff-section { background: linear-gradient(180deg,#EEF2FF 0%,#FFFFFF 100%); }
[data-theme="light"] .pricing-section { background: linear-gradient(180deg,#F0FDF9 0%,#FFFFFF 100%); }
[data-theme="light"] .pilot-section { background: linear-gradient(135deg,#F0FDF9 0%,#EEF2FF 100%); border-top:1px solid rgba(0,0,0,0.06); }
[data-theme="light"] .badge-glow { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); color: #059669; }
[data-theme="light"] .badge-glow .badge-dot { background: #059669; box-shadow: 0 0 8px #059669; }
[data-theme="light"] .badge-amber { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); color: #B45309; }
[data-theme="light"] .badge-amber .badge-dot { background: #B45309; }
[data-theme="light"] .badge-indigo { background: rgba(99,102,241,0.1); border-color: rgba(99,102,241,0.3); color: #4F46E5; }
[data-theme="light"] .hero-stat-chip { background: rgba(255,255,255,0.92); border-color: rgba(0,0,0,0.12); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
[data-theme="light"] .stat-chip-num { color: #059669; }
[data-theme="light"] .stat-chip-label { color: #334155; }
[data-theme="light"] .section-sub { color: #475569; }
[data-theme="light"] .btn-secondary { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.15); color: #1E293B; }
[data-theme="light"] .btn-secondary:hover { background: rgba(0,0,0,0.08); }
[data-theme="light"] .challenge-stat-num { color: #DC2626; }
[data-theme="light"] .hiw-connector { color: rgba(16,185,129,0.5); }
[data-theme="light"] .hiw-note { background: rgba(16,185,129,0.06); }
[data-theme="light"] .pricing-card-featured { border-color: rgba(16,185,129,0.4) !important; }
[data-theme="light"] .pricing-notes { color: #475569; }
[data-theme="light"] .form-input { background: rgba(255,255,255,0.9); border-color: rgba(0,0,0,0.15); color: #1E293B; }
[data-theme="light"] .form-input:focus { border-color: rgba(16,185,129,0.5); }
[data-theme="light"] .form-label { color: #374151; }
[data-theme="light"] .cta-card { background: linear-gradient(135deg,rgba(16,185,129,0.06) 0%,rgba(99,102,241,0.06) 100%); border-color: rgba(16,185,129,0.18); }
[data-theme="light"] .cta-links { color: #475569; }
[data-theme="light"] .flow-connector { background: rgba(0,0,0,0.1); }

/* ── Network canvas ── */
#network-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: var(--kv-canvas-opacity, 0.35);
  transition: opacity 0.4s ease;
}

/* ══════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════ */
section { position: relative; z-index: 1; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 7rem 0; }
.section-pad-sm { padding: 5rem 0; }

/* ══════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════ */
.text-gradient {
  background: linear-gradient(135deg, #10B981 0%, #34D399 40%, #6366F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════
   BADGES
   ══════════════════════════════════════════ */
.badge-glow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 999px;
  border: 1px solid rgba(16,185,129,0.4);
  background: rgba(16,185,129,0.1);
  color: #34D399;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 0 18px rgba(16,185,129,0.2), inset 0 0 12px rgba(16,185,129,0.05);
  margin-bottom: 1.5rem;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #34D399; box-shadow: 0 0 8px #34D399; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.4);} }
.badge-amber { border-color: rgba(245,158,11,0.4); background: rgba(245,158,11,0.1); color: #FBBF24; box-shadow: 0 0 18px rgba(245,158,11,0.2); }
.badge-amber .badge-dot { background: #FBBF24; box-shadow: 0 0 8px #FBBF24; }
.badge-indigo { border-color: rgba(99,102,241,0.4); background: rgba(99,102,241,0.1); color: #818CF8; box-shadow: 0 0 18px rgba(99,102,241,0.2); }
.badge-indigo .badge-dot { background: #818CF8; box-shadow: 0 0 8px #818CF8; }

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff; font-size: 1rem; font-weight: 700;
  border-radius: 999px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 0 32px rgba(16,185,129,0.35);
  cursor: pointer; border: none; text-decoration: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(16,185,129,0.5); }
.btn-primary-lg { padding: 20px 52px; font-size: 1.1rem; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px;
  background: rgba(255,255,255,0.06);
  color: var(--kv-text); font-size: 1rem; font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--kv-border-mid);
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
  cursor: pointer; text-decoration: none;
}
.btn-secondary:hover { transform: translateY(-3px); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; }
.btn-group .btn-primary,
.btn-group .btn-secondary { flex: 0 0 auto; width: fit-content; }
.btn-arrow { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; background: rgba(255,255,255,0.15); border-radius: 50%; transition: transform 0.25s; }
.btn-primary:hover .btn-arrow, .btn-secondary:hover .btn-arrow { transform: translateX(3px); }

/* ══════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--kv-text-sub); max-width: 640px; margin: 0 auto; line-height: 1.75; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, #10B981, #6366F1); border-radius: 99px; margin: 0 auto 1.5rem; }

/* ══════════════════════════════════════════
   GLASS CARDS
   ══════════════════════════════════════════ */
.glass-card {
  background: var(--kv-glass-bg);
  border: 1px solid var(--kv-glass-border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px var(--kv-shadow); }
.glass-card.hover-green:hover { border-color: rgba(16,185,129,0.35); box-shadow: 0 24px 48px rgba(16,185,129,0.12); }
.glass-card.hover-indigo:hover { border-color: rgba(99,102,241,0.35); box-shadow: 0 24px 48px rgba(99,102,241,0.12); }
.glass-card.hover-amber:hover { border-color: rgba(245,158,11,0.35); box-shadow: 0 24px 48px rgba(245,158,11,0.12); }

/* ══════════════════════════════════════════
   ORBS
   ══════════════════════════════════════════ */
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.2; pointer-events: none; }
.orb-green { width: 700px; height: 700px; background: radial-gradient(circle, #10B981, #059669); top: -200px; left: -200px; animation: floatA 12s ease-in-out infinite; }
.orb-indigo { width: 600px; height: 600px; background: radial-gradient(circle, #6366F1, #4338CA); top: -100px; right: -200px; animation: floatB 15s ease-in-out infinite; }
.orb-amber { width: 400px; height: 400px; background: radial-gradient(circle, #F59E0B, #D97706); bottom: 0; left: 40%; animation: floatC 11s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(40px,-30px) scale(1.05);} 66%{transform:translate(-20px,20px) scale(0.97);} }
@keyframes floatB { 0%,100%{transform:translate(0,0) scale(1);} 40%{transform:translate(-35px,25px) scale(1.08);} 70%{transform:translate(20px,-15px) scale(0.95);} }
@keyframes floatC { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(25px,-35px) scale(1.06);} }

/* ══════════════════════════════════════════
   REVEAL ANIMATION
   ══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(.16,1,.3,1), transform 0.65s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 10rem 2rem 7rem;
  position: relative; overflow: hidden;
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 960px; }
.hero-h1 {
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 900; line-height: 1.04; letter-spacing: -0.035em; margin-bottom: 1.5rem;
}
.hero-thesis {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--kv-text-sub); max-width: 720px;
  margin: 0 auto 2rem; line-height: 1.7; font-weight: 400;
}
.hero-stats { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.hero-stat-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 22px;
  background: rgba(30,41,59,0.7);
  border: 1px solid var(--kv-border-mid);
  border-radius: 999px; backdrop-filter: blur(12px);
  font-size: 0.875rem; font-weight: 600;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.hero-stat-chip:hover { border-color: rgba(16,185,129,0.3); box-shadow: 0 0 20px rgba(16,185,129,0.1); }
.stat-chip-num { font-size: 1.1rem; font-weight: 800; color: var(--kv-primary); }
.stat-chip-label { color: var(--kv-text-sub); font-weight: 500; }

/* ══════════════════════════════════════════
   CHALLENGE SECTION
   ══════════════════════════════════════════ */
.challenge-section { background: linear-gradient(180deg, rgba(245,158,11,0.04) 0%, transparent 100%); }
.challenge-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.stat-card {
  background: var(--kv-glass-bg);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 20px; padding: 2rem;
  backdrop-filter: blur(20px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;
}
.stat-card:hover { transform: translateY(-5px); border-color: rgba(245,158,11,0.3); box-shadow: 0 20px 40px rgba(245,158,11,0.08); }
.challenge-stat-num {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, #F59E0B, #EF4444);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.5rem;
}
.empathy-stat-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--kv-text-sub); margin-bottom: 0.6rem; }
.empathy-stat-desc { font-size: 0.875rem; color: var(--kv-text-sub); line-height: 1.6; }
.empathy-pains { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2.5rem; }
.pain-item {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--kv-glass-bg);
  border: 1px solid rgba(245,158,11,0.1);
  border-radius: 14px; padding: 1.25rem 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pain-item:hover { border-color: rgba(245,158,11,0.25); box-shadow: 0 8px 24px rgba(245,158,11,0.06); }
.pain-icon { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; background: rgba(245,158,11,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.pain-body { flex: 1; }
.pain-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.pain-desc { font-size: 0.84rem; color: var(--kv-text-sub); line-height: 1.55; }

/* ══════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════ */
.hiw-section { background: linear-gradient(180deg, rgba(16,185,129,0.04) 0%, transparent 100%); }
.hiw-flow {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0; align-items: stretch; margin-bottom: 2rem;
}
.hiw-step {
  border-radius: 18px !important; padding: 2rem 1.5rem;
  text-align: center;
}
.hiw-connector {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: rgba(52,211,153,0.5);
  padding: 0 0.5rem; align-self: center; flex-shrink: 0;
}
.hiw-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25);
  color: #34D399; font-weight: 800; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
}
.hiw-step-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.hiw-step-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.hiw-step-desc { font-size: 0.82rem; color: var(--kv-text-sub); line-height: 1.55; }
.hiw-note {
  text-align: center; padding: 1.25rem 2rem;
  background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.18);
  border-radius: 14px; font-size: 0.92rem; color: var(--kv-text-sub);
}
.hiw-note strong { color: #34D399; }

/* ══════════════════════════════════════════
   DIFFERENTIATORS
   ══════════════════════════════════════════ */
.diff-section { background: linear-gradient(180deg, rgba(99,102,241,0.04) 0%, transparent 100%); }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.diff-card {
  background: var(--kv-glass-bg);
  border: 1px solid var(--kv-glass-border);
  border-radius: 20px; padding: 2rem;
  backdrop-filter: blur(20px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.diff-card:hover { transform: translateY(-5px); }
.diff-card.green:hover { border-color: rgba(16,185,129,0.35); box-shadow: 0 20px 40px rgba(16,185,129,0.1); }
.diff-card.indigo:hover { border-color: rgba(99,102,241,0.35); box-shadow: 0 20px 40px rgba(99,102,241,0.1); }
.diff-card.purple:hover { border-color: rgba(139,92,246,0.35); box-shadow: 0 20px 40px rgba(139,92,246,0.1); }
.diff-card.amber:hover { border-color: rgba(245,158,11,0.35); box-shadow: 0 20px 40px rgba(245,158,11,0.1); }
.diff-card.cyan:hover { border-color: rgba(6,182,212,0.35); box-shadow: 0 20px 40px rgba(6,182,212,0.1); }
.diff-icon { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.diff-icon.green { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.2); }
.diff-icon.indigo { background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.2); }
.diff-icon.purple { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.2); }
.diff-icon.amber { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.2); }
.diff-icon.cyan { background: rgba(6,182,212,0.12); border: 1px solid rgba(6,182,212,0.2); }
.diff-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.diff-desc { font-size: 0.875rem; color: var(--kv-text-sub); line-height: 1.65; }
.diff-vs-banner {
  margin-top: 3rem; padding: 1.75rem 2.5rem;
  background: linear-gradient(135deg, rgba(99,102,241,0.06) 0%, rgba(16,185,129,0.06) 100%);
  border: 1px solid rgba(99,102,241,0.18);
  border-radius: 18px; text-align: center;
}
.diff-vs-banner p { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600; color: var(--kv-text); line-height: 1.6; }
.diff-vs-banner p em { font-style: normal; color: #818CF8; }
.diff-vs-banner p strong { color: #34D399; }

/* ══════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════ */
.pricing-section { background: linear-gradient(135deg, rgba(16,185,129,0.04) 0%, rgba(99,102,241,0.04) 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  display: flex; flex-direction: column;
  position: relative; padding: 2rem;
}
.pricing-card-featured {
  border-color: rgba(16,185,129,0.4) !important;
  background: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(99,102,241,0.05) 100%) !important;
  box-shadow: 0 0 40px rgba(16,185,129,0.12);
  transform: translateY(-8px);
}
.pricing-card-featured:hover { transform: translateY(-14px) !important; }
.pricing-popular {
  display: inline-block; padding: 4px 14px; border-radius: 999px;
  background: linear-gradient(135deg,#10B981,#059669);
  color: #fff; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1rem; align-self: flex-start;
}
.pricing-tier { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.pricing-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 0.25rem; }
.pricing-price { font-size: clamp(2.5rem,4vw,3.2rem); font-weight: 900; letter-spacing: -0.04em; color: var(--kv-text); }
.pricing-per { font-size: 0.85rem; color: var(--kv-text-sub); font-weight: 500; }
.pricing-min { font-size: 0.78rem; color: var(--kv-text-sub); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-features li { font-size: 0.875rem; color: var(--kv-text-sub); line-height: 1.5; }
.pricing-feature-dim { opacity: 0.45; }
.pricing-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 24px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; border: 1px solid;
}
.pricing-cta-primary { background: linear-gradient(135deg,#10B981,#059669); color:#fff; border-color:transparent; box-shadow:0 0 20px rgba(16,185,129,0.3); }
.pricing-cta-primary:hover { transform: translateY(-2px); box-shadow:0 6px 24px rgba(16,185,129,0.45); }
.pricing-cta-outline { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.3); color: #34D399; }
.pricing-cta-outline:hover { background: rgba(16,185,129,0.15); transform: translateY(-2px); }
.pricing-notes {
  margin-top: 2.5rem; text-align: center;
  padding: 1.25rem 2rem;
  background: rgba(16,185,129,0.04); border: 1px solid rgba(16,185,129,0.15);
  border-radius: 14px; font-size: 0.875rem; color: var(--kv-text-sub); line-height: 1.65;
}
.pricing-notes strong { color: var(--kv-text); }

/* ══════════════════════════════════════════
   PILOT SECTION
   ══════════════════════════════════════════ */
.pilot-section { background: linear-gradient(135deg, rgba(16,185,129,0.04) 0%, rgba(99,102,241,0.04) 100%); }
.pilot-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.pilot-details-card, .pilot-form-card { padding: 2.25rem; }
.pilot-detail-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.pilot-detail-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.pilot-detail-list li { display: flex; align-items: flex-start; gap: 1rem; }
.pilot-detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.pilot-detail-list strong { font-size: 0.9rem; font-weight: 700; display: block; margin-bottom: 0.2rem; }
.pilot-detail-list p { font-size: 0.84rem; color: var(--kv-text-sub); line-height: 1.55; margin: 0; }
.pilot-form-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.pilot-form-sub { font-size: 0.875rem; color: var(--kv-text-sub); margin-bottom: 1.75rem; line-height: 1.55; }

/* ── Form elements ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--kv-text-sub); }
.form-required { color: #F87171; }
.form-optional { color: var(--kv-text-dim); font-weight: 400; }
.form-input {
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--kv-border-mid);
  border-radius: 10px;
  color: var(--kv-text); font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; width: 100%; box-sizing: border-box;
  font-family: inherit;
}
.form-input:focus { border-color: rgba(16,185,129,0.45); box-shadow: 0 0 0 3px rgba(16,185,129,0.08); }
.form-input::placeholder { color: var(--kv-text-dim); }
.form-select { -webkit-appearance: none; appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2334D399' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit-btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-message { margin-top: 1rem; padding: 12px 16px; border-radius: 10px; font-size: 0.875rem; font-weight: 500; }
.form-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #34D399; }
.form-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #FCA5A5; }

/* ══════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════ */
.cta-section { background: linear-gradient(180deg, rgba(16,185,129,0.04) 0%, transparent 100%); }
.cta-card {
  text-align: center;
  padding: 5rem 3rem;
  background: linear-gradient(135deg, rgba(16,185,129,0.06) 0%, rgba(99,102,241,0.06) 100%);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: 28px;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #10B981, #34D399, #6366F1);
}
.cta-title { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.25rem; }
.cta-sub { font-size: 1.05rem; color: var(--kv-text-sub); max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.75rem; font-size: 0.9rem; color: var(--kv-text-sub); }
.cta-email-link { color: #34D399; font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.cta-email-link:hover { opacity: 0.8; text-decoration: underline; }
.cta-schedule-link { color: #818CF8; font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.cta-schedule-link:hover { opacity: 0.8; }
.cta-divider { color: var(--kv-text-dim); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hiw-flow { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .hiw-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-5px) !important; }
  .pilot-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .challenge-stats { grid-template-columns: 1fr; }
  .empathy-pains { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-card { padding: 3.5rem 1.75rem; }
}
@media (max-width: 600px) {
  .hero { padding: 8rem 1.5rem 5rem; }
  .container { padding: 0 1.25rem; }
  .section-pad { padding: 5rem 0; }
  .hiw-flow { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: center; }
  .btn-group .btn-primary,
  .btn-group .btn-secondary { width: 100%; max-width: 320px; justify-content: center; text-align: center; }
}
