/* ════════════════════════════════════════════════════
   KOREA PILOT LAUNCHPAD — Main Stylesheet
   Design: Dark Navy hero, clean white content sections
   Accent: Emerald Green #0D9373 + Gold #F5A623
   Font: Plus Jakarta Sans + Inter
════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  background: #ffffff;
  color: #1a1f2e;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }
input, select, textarea {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  outline: none;
}

/* ── CSS VARIABLES ── */
:root {
  --green: #0D9373;
  --green-light: #10b98a;
  --green-dark: #0a7a60;
  --navy: #0b0f1a;
  --navy-2: #111827;
  --navy-3: #1c2435;
  --gold: #F5A623;
  --gold-light: #fbbf48;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --text-dark: #1a1f2e;
  --text-mid: #4b5563;
  --text-light: #9ca3af;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

/* ── SECTION COMMON ── */
.section-tag {
  display: inline-block;
  background: rgba(13,147,115,0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(13,147,115,0.25);
}
.section-tag.light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.2);
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.gradient-text {
  background: linear-gradient(135deg, #0D9373, #10d9a8, #0D9373);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text-light {
  background: linear-gradient(135deg, #34d399, #10d9a8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.underline-accent {
  position: relative;
}
.underline-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 2px;
}

/* ── AOS (Animate on Scroll) ── */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(11,15,26,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { flex-shrink: 0; }
.nav-brand {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.nav-brand .accent { color: var(--green); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links li a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--green) !important;
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}
.nav-cta:hover { background: var(--green-light) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: rgba(11,15,26,0.97);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-cta {
  color: var(--green) !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  margin-top: 8px;
}
.mobile-menu.open { display: flex; }


/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #060a14 0%, #0b1628 40%, #0a1f18 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,147,115,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,147,115,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(13,147,115,0.3);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  from { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  to   { transform: translateY(-100px) scale(1); opacity: 0; }
}
.hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,147,115,0.15);
  border: 1px solid rgba(13,147,115,0.35);
  color: #34d399;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: #10d9a8;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-logo-wrap {
  margin-bottom: 28px;
  animation: logoIn 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.2s both;
}
@keyframes logoIn {
  from { transform: scale(0.5) rotate(-10deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
.hero-title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 40px;
  animation: fadeUp 0.8s ease 0.5s both;
}
.hero-subtitle strong { color: rgba(255,255,255,0.95); }
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.6s both;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 4px;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.7s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(13,147,115,0.4);
}
.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13,147,115,0.5);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.hero-scroll {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  font-weight: 500;
  animation: fadeUp 1s ease 1s both;
}
.scroll-arrow {
  animation: bounceDown 2s ease infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-flag-accent {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  font-weight: 500;
}
.flag-text { letter-spacing: 0.06em; }


/* ════════════════════════════════════════════════════
   SECTION 1: PROBLEM
════════════════════════════════════════════════════ */
.section-problem {
  padding: 100px 0;
  background: #f8fafb;
}
.section-problem .section-title { max-width: 720px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13,147,115,0.2);
}
.problem-card:hover::before { opacity: 1; }
.problem-icon {
  width: 52px;
  height: 52px;
  background: rgba(13,147,115,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--green);
  margin-bottom: 18px;
}
.problem-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.problem-card p { font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.problem-statement {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1f18 100%);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  text-align: center;
}
.ps-big {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 16px;
}
.ps-big strong { color: var(--green); }
.ps-sub { font-size: 17px; color: rgba(255,255,255,0.6); }


/* ════════════════════════════════════════════════════
   SECTION 2: PROGRAM
════════════════════════════════════════════════════ */
.section-program {
  padding: 100px 0;
  background: linear-gradient(135deg, #0b1628 0%, #0a1f18 100%);
}
.program-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.program-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}
.program-desc strong { color: white; }
.program-desc em { color: var(--green); font-style: italic; }
.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.program-tags span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(13,147,115,0.15);
  color: #34d399;
  border: 1px solid rgba(13,147,115,0.25);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
}
.kpl-logo-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
}
.kpl-card-text {
  display: flex;
  flex-direction: column;
  margin: 20px 0 28px;
}
.kpl-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}
.kpl-sub {
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
  margin-top: 4px;
}
.kpl-card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.meta-item i { color: var(--green); width: 16px; }
.kpl-eligibility h4 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.kpl-eligibility ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.kpl-eligibility ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════
   SECTION 3: TRACKS
════════════════════════════════════════════════════ */
.section-tracks {
  padding: 100px 0;
  background: var(--white);
}
.tracks-wrapper {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Venn Diagram */
.venn-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto;
  max-width: 560px;
  position: relative;
}
.venn-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.venn-a {
  background: rgba(13,147,115,0.12);
  border: 2px solid rgba(13,147,115,0.4);
  margin-right: -40px;
}
.venn-b {
  background: rgba(245,166,35,0.1);
  border: 2px solid rgba(245,166,35,0.4);
  margin-left: -40px;
}
.venn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding: 0 24px;
}
.venn-a .venn-content { padding-right: 36px; }
.venn-b .venn-content { padding-left: 36px; }
.venn-circle i { font-size: 22px; }
.venn-a i { color: var(--green); }
.venn-b i { color: var(--gold); }
.venn-circle strong { font-size: 13px; font-weight: 700; }
.venn-circle span { font-size: 12px; color: var(--text-mid); text-align: center; }
.venn-overlap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(13,147,115,0.3), rgba(245,166,35,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.venn-overlap-text {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.3;
}

/* Track Cards */
.tracks-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.track-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.track-a {
  background: linear-gradient(135deg, rgba(13,147,115,0.06), rgba(13,147,115,0.02));
  border-color: rgba(13,147,115,0.2);
}
.track-b {
  background: linear-gradient(135deg, rgba(245,166,35,0.06), rgba(245,166,35,0.02));
  border-color: rgba(245,166,35,0.2);
}
.track-a:hover { border-color: rgba(13,147,115,0.5); box-shadow: 0 8px 30px rgba(13,147,115,0.12); }
.track-b:hover { border-color: rgba(245,166,35,0.5); box-shadow: 0 8px 30px rgba(245,166,35,0.12); }
.track-header { margin-bottom: 28px; }
.track-badge-a, .track-badge-b {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.track-badge-a { background: rgba(13,147,115,0.15); color: var(--green); }
.track-badge-b { background: rgba(245,166,35,0.15); color: var(--gold); }
.track-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.track-card p { font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.track-for { margin-bottom: 24px; }
.track-for strong { font-size: 13px; font-weight: 700; color: var(--text-dark); display: block; margin-bottom: 10px; }
.track-for ul li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.track-for ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.track-b .track-for ul li::before { color: var(--gold); }
.track-outcomes strong { font-size: 13px; font-weight: 700; color: var(--text-dark); display: block; margin-bottom: 12px; }
.outcome-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.outcome-chips span {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--gray-200);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 5px 12px;
  border-radius: 100px;
}

/* Timeline */
.timeline-section { margin-top: 72px; }
.timeline-title {
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  z-index: 0;
}
.tl-item {
  position: relative;
  z-index: 1;
}
.tl-week {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  white-space: nowrap;
}
.tl-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  height: calc(100% - 44px);
}
.tl-phase {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.tl-content p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 12px;
}
.tl-content p em { color: var(--green); font-style: normal; font-weight: 600; }
.tl-tag, .tl-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.tl-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.tl-tag.common { background: rgba(13,147,115,0.12); color: var(--green); }
.tl-tag.a { background: rgba(13,147,115,0.12); color: var(--green); }
.tl-tag.b { background: rgba(245,166,35,0.12); color: var(--gold); }


/* ════════════════════════════════════════════════════
   SECTION 4: CASE STUDY
════════════════════════════════════════════════════ */
.section-case {
  padding: 100px 0;
  background: #f8fafb;
}
.case-label-banner {
  background: rgba(13,147,115,0.08);
  border: 1px solid rgba(13,147,115,0.2);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.case-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}
.case-country-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.case-title { margin-bottom: 20px; }
.case-intro {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 600px;
}
.case-intro em { color: var(--green); font-style: normal; font-weight: 700; }
.case-quote {
  background: var(--white);
  border-left: 4px solid var(--green);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
}
.case-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}
.case-founder-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  width: 220px;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.founder-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--green);
  margin: 0 auto 16px;
}
.founder-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-info strong { font-size: 16px; font-weight: 800; }
.founder-info span { font-size: 13px; color: var(--text-mid); }
.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  margin-top: 8px;
  padding: 5px 12px;
  background: rgba(13,147,115,0.08);
  border-radius: 100px;
  transition: var(--transition);
}
.founder-link:hover { background: rgba(13,147,115,0.15); }

/* Service Strip */
.case-service-strip {
  display: flex;
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 0;
  margin-bottom: 56px;
  overflow-x: auto;
}
.service-icon-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 120px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.service-icon-block:last-child { border-right: none; }
.service-icon-block i {
  font-size: 28px;
  color: var(--green);
}
.service-icon-block span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-align: center;
}

/* Plan Phases */
.case-plan { margin-bottom: 64px; }
.case-plan-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--text-dark);
}
.plan-phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.phase-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.phase-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13,147,115,0.25);
}
.phase-num {
  font-size: 36px;
  font-weight: 900;
  color: rgba(13,147,115,0.15);
  line-height: 1;
  margin-bottom: 12px;
  font-style: italic;
}
.phase-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.phase-body p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* Case Impact */
.case-impact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.case-impact-left h3 { font-size: 26px; font-weight: 800; margin-bottom: 14px; }
.case-impact-left > p { font-size: 16px; color: var(--text-mid); margin-bottom: 28px; line-height: 1.7; }
.case-impact-left > p strong { color: var(--green); }
.impact-list { display: flex; flex-direction: column; gap: 20px; }
.impact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.impact-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.impact-item strong { font-size: 16px; font-weight: 700; display: block; margin-bottom: 4px; }
.impact-item p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.booth-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}
.booth-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.booth-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 20px 20px 16px;
}
.booth-caption {
  color: white;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.booth-caption i { color: var(--green); }
.case-result-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.result-badge {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
}
.rb-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.rb-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  font-weight: 500;
}


/* ════════════════════════════════════════════════════
   SECTION 5: BEFORE / AFTER
════════════════════════════════════════════════════ */
.section-beforeafter {
  padding: 100px 0;
  background: var(--white);
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 40px;
}
.ba-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
}
.before {
  background: #fff5f5;
  border: 1px solid #fecaca;
}
.after {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.ba-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.ba-icon { font-size: 24px; }
.before .ba-icon { color: #ef4444; }
.after .ba-icon { color: #22c55e; }
.ba-header h3 { font-size: 20px; font-weight: 800; }
.ba-list li {
  font-size: 15px;
  color: var(--text-mid);
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.before .ba-list li::before {
  content: '✕';
  color: #ef4444;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 2px;
}
.after .ba-list li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 2px;
}
.ba-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ba-arrow-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  width: 60px;
  height: 80px;
  border-radius: 100px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  justify-content: center;
}
.ba-arrow-inner i { font-size: 18px; }
.ba-summary {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(13,147,115,0.08), rgba(245,166,35,0.06));
  border: 1px solid rgba(13,147,115,0.2);
  border-radius: var(--radius-lg);
  font-size: 18px;
  color: var(--text-mid);
}
.ba-summary strong { color: var(--green); }


/* ════════════════════════════════════════════════════
   SECTION 6: EXECUTION
════════════════════════════════════════════════════ */
.section-execution {
  padding: 100px 0;
  background: linear-gradient(135deg, #060a14 0%, #0b1628 100%);
}
.execution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.exec-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 36px;
}
.exec-features { display: flex; flex-direction: column; gap: 24px; }
.exec-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ef-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(13,147,115,0.15);
  border: 1px solid rgba(13,147,115,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 18px;
  flex-shrink: 0;
}
.exec-feature strong { font-size: 16px; font-weight: 700; color: var(--white); display: block; margin-bottom: 4px; }
.exec-feature p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* Metrics */
.exec-metrics {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
}
.exec-metrics h4, .exec-industries h4 {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.metric-row {
  margin-bottom: 16px;
}
.metric-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 6px; display: block; }
.metric-bar-wrap {
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  height: 8px;
  position: relative;
}
.metric-bar {
  height: 8px;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  width: var(--pct);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  transition: width 1s ease;
}
.metric-bar span {
  position: absolute;
  right: -28px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.exec-industries {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.industry-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.industry-tags span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
}


/* ════════════════════════════════════════════════════
   SECTION 7: DELIVERABLES
════════════════════════════════════════════════════ */
.section-deliverables {
  padding: 100px 0;
  background: var(--gray-50);
}
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.deliv-column {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.deliv-header {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.deliv-header i { font-size: 20px; }
.deliv-header h3 { font-size: 17px; font-weight: 800; color: var(--white); }
.common-header { background: var(--navy); }
.a-header { background: linear-gradient(135deg, #0a6b55, #0D9373); }
.b-header { background: linear-gradient(135deg, #b8820f, var(--gold)); }
.deliv-list { padding: 24px 28px; display: flex; flex-direction: column; gap: 20px; }
.deliv-item { display: flex; gap: 12px; align-items: flex-start; }
.di-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  background: var(--gray-100);
  color: var(--text-mid);
}
.a-di { background: rgba(13,147,115,0.1); color: var(--green); }
.b-di { background: rgba(245,166,35,0.1); color: var(--gold); }
.deliv-item strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 3px; }
.deliv-item p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }


/* ════════════════════════════════════════════════════
   SECTION 8: APPLY
════════════════════════════════════════════════════ */
.section-apply {
  padding: 100px 0;
  background: linear-gradient(135deg, #060a14 0%, #0a1f18 100%);
  position: relative;
  overflow: hidden;
}
.apply-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(13,147,115,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245,166,35,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.apply-wrap { position: relative; z-index: 1; }
.apply-header {
  text-align: center;
  margin-bottom: 64px;
}
.apply-logo { margin-bottom: 20px; display: flex; justify-content: center; }
.apply-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.apply-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Criteria */
.apply-criteria {
  margin-bottom: 64px;
}
.apply-criteria h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.crit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.crit-item:hover { background: rgba(13,147,115,0.12); border-color: rgba(13,147,115,0.3); }
.crit-item i { color: var(--green); font-size: 18px; flex-shrink: 0; }

/* Form */
.apply-form-section {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.apply-form-section h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 32px;
}
.apply-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-size: 15px;
  transition: var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: rgba(13,147,115,0.1);
  box-shadow: 0 0 0 3px rgba(13,147,115,0.15);
}
.form-group select option { background: var(--navy-2); color: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(13,147,115,0.45);
  width: 100%;
  justify-content: center;
}
.btn-apply:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(13,147,115,0.55);
}
.form-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 56px 40px;
}
.form-success.visible { display: block; animation: fadeUp 0.6s ease; }
.success-icon { font-size: 64px; color: var(--green); margin-bottom: 24px; }
.form-success h3 { font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.form-success p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 10px; }
.success-sub { font-size: 14px; color: rgba(255,255,255,0.4) !important; }

/* Tagline */
.apply-tagline {
  text-align: center;
  margin-top: 56px;
}
.tagline-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 20px;
}
.apply-tagline p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.apply-tagline strong { color: rgba(255,255,255,0.9); }
.apply-tagline em { color: rgba(255,255,255,0.5); font-style: italic; }
.tl-flag { font-size: 20px; margin-right: 4px; }


/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer {
  background: #060a14;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo span { font-size: 16px; font-weight: 700; color: var(--white); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--green); color: white; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--green); }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.footer-contact li i { color: var(--green); width: 14px; }
.footer-bottom {
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  margin-bottom: 4px;
}
.footer-admin-link {
  margin-top: 16px;
}
.footer-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  text-decoration: none;
}
.footer-admin-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(13,147,115,0.08);
}


/* ════════════════════════════════════════════════════
   SECTION: SCHEDULE / CALENDAR
════════════════════════════════════════════════════ */
.section-schedule {
  padding: 100px 0;
  background: var(--white);
}

/* Application Timeline Banner */
.app-timeline-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--navy), #0a1f18);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 64px;
}
.atb-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  flex: 1;
  min-width: 160px;
}
.atb-arrow {
  color: rgba(255,255,255,0.25);
  font-size: 14px;
  flex-shrink: 0;
}
.atb-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.atb-open { background: rgba(13,147,115,0.2); color: var(--green); }
.atb-deadline { background: rgba(245,166,35,0.2); color: var(--gold); }
.atb-select { background: rgba(99,102,241,0.2); color: #818cf8; }
.atb-kick { background: rgba(13,147,115,0.3); color: #34d399; }
.atb-demo { background: rgba(245,166,35,0.3); color: var(--gold); }
.atb-content { display: flex; flex-direction: column; }
.atb-date {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.atb-content strong { font-size: 14px; font-weight: 700; color: white; }
.atb-content p { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 1px; }

/* Calendar Grid */
.schedule-calendar { margin-bottom: 48px; }
.sched-cal-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--text-dark);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cal-week {
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.cal-week:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cal-common {
  background: linear-gradient(135deg, rgba(13,147,115,0.04), rgba(13,147,115,0.01));
  border-color: rgba(13,147,115,0.15);
}
.cal-track-a {
  background: linear-gradient(135deg, rgba(13,147,115,0.07), rgba(13,147,115,0.02));
  border-color: rgba(13,147,115,0.25);
}
.cal-track-b {
  background: linear-gradient(135deg, rgba(245,166,35,0.07), rgba(245,166,35,0.02));
  border-color: rgba(245,166,35,0.25);
}
.cal-action {
  background: linear-gradient(135deg, rgba(239,68,68,0.05), rgba(239,68,68,0.01));
  border-color: rgba(239,68,68,0.2);
}
.cal-closing {
  background: linear-gradient(135deg, rgba(99,102,241,0.06), rgba(99,102,241,0.01));
  border-color: rgba(99,102,241,0.2);
}
.cal-week-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.cal-week-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-dark);
  background: var(--gray-100);
  padding: 3px 9px;
  border-radius: 100px;
}
.cal-week-date {
  font-size: 11px;
  color: var(--text-mid);
  font-weight: 500;
}
.cal-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: auto;
}
.cal-badge.both { background: rgba(13,147,115,0.12); color: var(--green); }
.cal-badge.track-a-badge { background: rgba(13,147,115,0.15); color: var(--green); }
.cal-badge.track-b-badge { background: rgba(245,166,35,0.15); color: #b07d10; }
.cal-badge.action-badge { background: rgba(239,68,68,0.12); color: #ef4444; }
.cal-badge.closing-badge { background: rgba(99,102,241,0.12); color: #6366f1; }
.cal-week-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}
.cal-items { display: flex; flex-direction: column; gap: 6px; }
.cal-items li {
  font-size: 12px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.5;
}
.cal-items li i {
  color: var(--green);
  font-size: 11px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 12px;
}
.cal-track-b .cal-items li i { color: #b07d10; }
.cal-action .cal-items li i { color: #ef4444; }
.cal-closing .cal-items li i { color: #6366f1; }

/* Post-program */
.post-program {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(13,147,115,0.08), rgba(245,166,35,0.05));
  border: 1px solid rgba(13,147,115,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.pp-icon {
  font-size: 32px;
  color: var(--green);
  flex-shrink: 0;
}
.pp-content h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.pp-content p { font-size: 15px; color: var(--text-mid); line-height: 1.7; }
.pp-content strong { color: var(--green); }


/* ════════════════════════════════════════════════════
   SECTION: PRICING
════════════════════════════════════════════════════ */
.section-pricing {
  padding: 100px 0;
  background: var(--gray-50);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  margin-bottom: 40px;
  align-items: start;
}
.price-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.price-main {
  border-color: rgba(13,147,115,0.3);
  box-shadow: 0 4px 20px rgba(13,147,115,0.1);
}
.price-card-header {
  padding: 32px 32px 24px;
  background: linear-gradient(135deg, var(--navy), #0a1f18);
}
.price-add .price-card-header { background: linear-gradient(135deg, #1c2435, #111827); }
.price-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(13,147,115,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--green);
  margin-bottom: 16px;
}
.add-icon { background: rgba(245,166,35,0.2); color: var(--gold); }
.price-tag-wrap { margin-bottom: 12px; }
.price-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.add-badge { background: rgba(245,166,35,0.15); color: var(--gold); }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.price-currency { font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.6); }
.price-num { font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; }
.price-per { font-size: 16px; color: rgba(255,255,255,0.5); }
.price-note { font-size: 13px; color: rgba(255,255,255,0.5); }
.price-sub-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  font-style: italic;
}
.price-includes {
  padding: 28px 32px;
  background: white;
}
.price-includes h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.price-includes ul { display: flex; flex-direction: column; gap: 10px; }
.price-includes ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}
.price-includes ul li i { color: var(--green); font-size: 12px; }

/* Add costs */
.add-cost-list {
  padding: 24px 28px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.add-cost-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}
.add-cost-item:last-child { border-bottom: none; padding-bottom: 0; }
.aci-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: var(--gray-100);
  color: var(--text-mid);
}
.aci-body strong { font-size: 15px; font-weight: 700; display: block; margin-bottom: 5px; }
.aci-body p { font-size: 13px; color: var(--text-mid); line-height: 1.6; margin-bottom: 6px; }
.aci-note {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(245,166,35,0.08);
  padding: 3px 8px;
  border-radius: 100px;
  display: inline-block;
}

/* Pricing Value */
.pricing-value-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.pv-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pv-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 28px 24px;
  border-right: 1px solid var(--gray-100);
  background: white;
}
.pv-item:last-child { border-right: none; }
.pv-item > i {
  font-size: 22px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.pv-item strong { font-size: 15px; font-weight: 700; display: block; margin-bottom: 6px; }
.pv-item p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }


/* ════════════════════════════════════════════════════
   SECTION: TEAM
════════════════════════════════════════════════════ */
.section-team {
  padding: 100px 0;
  background: white;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.team-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(13,147,115,0.2);
}
.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--green-light));
}
.ta-initials {
  font-size: 18px;
  font-weight: 800;
  color: white;
}
.ta-b { background: linear-gradient(135deg, #4f46e5, #7c3aed); }
.team-avatar.ta-b-wrap { background: linear-gradient(135deg, #4f46e5, #7c3aed); }
.ta-c { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.ta-d { background: linear-gradient(135deg, #dc2626, #ef4444); }
.team-info { flex: 1; }
.team-info strong { font-size: 17px; font-weight: 800; display: block; margin-bottom: 2px; }
.team-role {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.team-info p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 12px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.team-tags span {
  background: rgba(13,147,115,0.08);
  color: var(--green-dark);
  border: 1px solid rgba(13,147,115,0.15);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

/* Mentor section */
.mentor-section {
  background: linear-gradient(135deg, var(--navy), #0a1f18);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.mentor-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.mentor-header i { font-size: 28px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.mentor-header h3 { font-size: 20px; font-weight: 800; color: white; margin-bottom: 6px; }
.mentor-header p { font-size: 14px; color: rgba(255,255,255,0.6); }
.mentor-domains {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.md-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}
.md-item:hover { background: rgba(13,147,115,0.15); border-color: rgba(13,147,115,0.3); color: #34d399; }
.md-item i { color: var(--green); font-size: 14px; }


/* ════════════════════════════════════════════════════
   SECTION: FAQ
════════════════════════════════════════════════════ */
.section-faq {
  padding: 100px 0;
  background: var(--gray-50);
}
.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.faq-col { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(13,147,115,0.3); }
.faq-item.open { border-color: rgba(13,147,115,0.4); box-shadow: 0 2px 12px rgba(13,147,115,0.08); }
.faq-q {
  width: 100%;
  background: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}
.faq-q:hover { background: rgba(13,147,115,0.03); }
.faq-chevron {
  font-size: 12px;
  color: var(--text-mid);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--green); }
.faq-a {
  display: none;
  padding: 0 22px 20px;
  border-top: 1px solid var(--gray-100);
}
.faq-a.open { display: block; animation: fadeUp 0.3s ease; }
.faq-a p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  padding-top: 16px;
}
.faq-a strong { color: var(--text-dark); }

/* FAQ contact */
.faq-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}
.faq-contact > i {
  font-size: 28px;
  color: var(--green);
  flex-shrink: 0;
}
.faq-contact strong { font-size: 16px; font-weight: 700; display: block; margin-bottom: 4px; }
.faq-contact p { font-size: 14px; color: var(--text-mid); }
.faq-contact a { color: var(--green); font-weight: 600; }
.faq-contact a:hover { text-decoration: underline; }


/* ════════════════════════════════════════════════════
   RESPONSIVE — TABLETS
════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .program-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .tracks-cards { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .case-hero { grid-template-columns: 1fr; }
  .case-founder-card { width: auto; max-width: 300px; }
  .plan-phases { grid-template-columns: 1fr 1fr; }
  .case-impact { grid-template-columns: 1fr; }
  .execution-grid { grid-template-columns: 1fr; gap: 40px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .criteria-grid { grid-template-columns: 1fr 1fr; }
  /* New sections */
  .cal-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pv-inner { grid-template-columns: 1fr; }
  .pv-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .pv-item:last-child { border-bottom: none; }
  .team-grid { grid-template-columns: 1fr; }
  .faq-columns { grid-template-columns: 1fr; }
  .app-timeline-banner { gap: 16px; flex-direction: column; align-items: flex-start; }
  .atb-arrow { display: none; }
  .atb-item { padding: 0; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 20px; }
  .stat-divider { width: 60px; height: 1px; }
  .hero-actions { flex-direction: column; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { display: none; }
  .venn-diagram { flex-direction: column; gap: 20px; }
  .venn-circle { margin: 0; }
  .venn-overlap { position: static; transform: none; width: 60px; height: 60px; }
  .timeline { grid-template-columns: 1fr; }
  .plan-phases { grid-template-columns: 1fr; }
  .case-result-badges { grid-template-columns: repeat(3, 1fr); }
  .criteria-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .apply-form-section { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .problem-statement { padding: 32px 24px; }
  .ba-card { padding: 24px; }
  /* New sections */
  .cal-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; }
  .team-avatar { width: 50px; height: 50px; }
  .mentor-domains { gap: 8px; }
  .post-program { flex-direction: column; text-align: center; }
  .faq-contact { flex-direction: column; text-align: center; }
  .pv-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .section-title { font-size: 26px; }
  .track-card { padding: 24px; }
  .kpl-logo-card { padding: 24px; }
  .case-service-strip { padding: 20px 0; }
  .hero-flag-accent { display: none; }
}
