/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --bg-primary:   #0b0914;
  --bg-secondary: #130e22;
  --bg-card:      #201a35;
  --border-subtle: rgba(255,255,255,0.07);
  --border-light:  rgba(255,255,255,0.14);
  --purple:      #7a1fe8;
  --purple-dark: #5d00d2;
  --blue:   #00aeef;
  --green:  #00c896;
  --yellow: #ffd400;
  --orange: #e8501f;
  --text-primary: #ffffff;
  --text-muted:   #9b8fbb;
  --text-dim:     #6b5f8a;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

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

.section { padding: 80px 0; }
.section-alt { background-color: var(--bg-secondary); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.11;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.56;
}

/* =============================================
   CARD BASE
   ============================================= */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
}

/* =============================================
   GRADIENT UTILITIES
   ============================================= */
.grad-purple {
  background-image: linear-gradient(167deg, #5d00d2 0%, #7a1fe8 100%);
  color: #fff;
}
.grad-cyan {
  background-image: linear-gradient(167deg, #00aeef 0%, #00c896 100%);
  color: #fff;
}
.grad-mixed {
  background-image: linear-gradient(167deg, #7a1fe8 0%, #00aeef 100%);
  color: #fff;
}

.grad-purple-text {
  background-image: linear-gradient(167deg, #5d00d2 0%, #7a1fe8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-cyan-text {
  background-image: linear-gradient(156deg, #00aeef 0%, #00c896 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-mixed-text {
  background-image: linear-gradient(156deg, #7a1fe8 0%, #00aeef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-yellow { color: var(--yellow); }
.text-green  { color: var(--green); }
.text-purple { color: var(--purple); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,9,20,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: 1002px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  transition: opacity 0.18s, transform 0.12s;
  white-space: nowrap;
}
.btn:hover   { opacity: 0.88; transform: translateY(-1px); }
.btn:active  { opacity: 1;    transform: translateY(0); }

.btn-primary {
  background-image: linear-gradient(167deg, #5d00d2 0%, #7a1fe8 100%);
  color: #fff;
}
.btn-outline {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: #fff;
}

.btn-sm  { padding: 10px 20px; }
.btn-lg  { padding: 17px 32px; border-radius: 16px; }
.btn-xl  { padding: 20px 40px; font-size: 18px; border-radius: 16px; }
.btn-full {
  width: 100%;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
}

.btn-icon { width: 20px; height: 20px; }

/* =============================================
   HERO
   ============================================= */
.hero-section { padding-top: 128px; padding-bottom: 80px; }

.hero-content { text-align: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(93,0,210,0.12);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  padding: 9px 16px;
  margin-bottom: 38px;
  font-size: 14px;
  color: var(--text-muted);
}
.badge-icon { width: 16px; height: 16px; }

.hero-title {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}
.gradient-text-bootcamp {
  background: linear-gradient(160deg, #7a1fe8 0%, #00aeef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 24px;
  color: var(--blue);
  margin-bottom: 16px;
  line-height: 1.33;
}
.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 672px;
  margin: 0 auto 32px;
  line-height: 1.56;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-num   { font-size: 36px; font-weight: 700; line-height: 1.11; }
.stat-label { font-size: 14px; color: var(--text-muted); letter-spacing: 0.04em; }

/* =============================================
   FEATURES — WHY CHOOSE
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card { padding: 32px; }
.feature-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
}
.feature-card h3 {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}
.feature-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 2-up variant of features-grid (used when we only have 2 cards) */
.features-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
}

/* =============================================
   WORKFLOW STACK (5 horizontal rows in curriculum)
   ============================================= */
.workflow-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.workflow-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  border-left: 4px solid var(--purple);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.workflow-row:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* Accent variants per row */
.workflow-row[data-accent="purple"] { border-left-color: var(--purple); }
.workflow-row[data-accent="blue"]   { border-left-color: var(--blue);   }
.workflow-row[data-accent="orange"] { border-left-color: var(--orange); }
.workflow-row[data-accent="green"]  { border-left-color: var(--green);  }
.workflow-row[data-accent="yellow"] { border-left-color: var(--yellow); }

/* Left column — number + week */
.workflow-row-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  border-right: 1px solid var(--border-subtle);
  padding-right: 24px;
}
.workflow-row-num {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--purple);
}
.workflow-row[data-accent="blue"]   .workflow-row-num { color: var(--blue); }
.workflow-row[data-accent="orange"] .workflow-row-num { color: var(--orange); }
.workflow-row[data-accent="green"]  .workflow-row-num { color: var(--green); }
.workflow-row[data-accent="yellow"] .workflow-row-num { color: var(--yellow); }

.workflow-row-week {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Right column — body content */
.workflow-row-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.workflow-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.workflow-row-head h3 {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  margin: 0;
}
.workflow-row-sessions {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: 6px;
}
.workflow-row-body > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.workflow-row-output {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #c4b8e0;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.workflow-row-output-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-right: 10px;
  border-right: 1px solid var(--border-subtle);
}

/* =============================================
   DELIVERABLES STRIP
   ============================================= */
.deliverables-block {
  margin-top: 56px;
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
}
.deliverables-title {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.deliverable-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.3;
  transition: border-color 0.2s, transform 0.2s;
}
.deliverable-pill:hover {
  border-color: rgba(122,31,232,0.45);
  transform: translateY(-2px);
}
.deliverable-pill .deliv-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.deliverables-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}

/* =============================================
   SHOWCASE STRIP (Demo Day chips)
   ============================================= */
.showcase-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.showcase-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.showcase-chip:hover {
  border-color: rgba(122,31,232,0.45);
  transform: translateY(-2px);
}
.showcase-chip-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.showcase-chip-text h4 {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
  line-height: 1.2;
}
.showcase-chip-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* =============================================
   CURRICULUM
   ============================================= */
.phase-tabs {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.phase-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 17px 24px;
  min-width: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.18s, transform 0.12s, background 0.18s;
}
.phase-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.phase-btn.active {
  background: var(--purple);
  border-color: transparent;
  opacity: 1;
}
.phase-num {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
.phase-btn.active .phase-num { color: var(--bg-primary); }
.phase-days {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.43;
}
.phase-btn.active .phase-days { color: rgba(11,9,20,0.75); }

.phase-content { }
.phase-content.hidden { display: none; }

.phase-header {
  text-align: center;
  margin-bottom: 40px;
}
.phase-title {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
}
.phase-subtitle {
  font-size: 20px;
  color: var(--text-muted);
}

.curriculum-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.curriculum-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s;
}
.curriculum-item:hover { border-color: rgba(122,31,232,0.45); }

.curriculum-topic-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.curriculum-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.day-badge {
  font-size: 14px;
  font-weight: 500;
  color: var(--purple);
  flex-shrink: 0;
  min-width: 52px;
}
.curriculum-topic {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.curriculum-footer {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 24px 32px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  line-height: 1.56;
}

/* =============================================
   PRICING
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  padding: 32px;
  position: relative;
}
.pricing-popular {
  border: 2px solid var(--purple);
  padding-top: 48px;
  margin-top: -16px;
}
.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(165deg, #5d00d2 0%, #7a1fe8 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 9999px;
  white-space: nowrap;
}

.pricing-info h3 {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-venue { font-size: 14px; color: var(--text-muted); margin-bottom: 4px; }
.pricing-time  { font-size: 14px; color: var(--text-dim);   margin-bottom: 24px; }

.pricing-amount { margin-bottom: 24px; }
.original-price {
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.current-price {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.11;
  margin-bottom: 8px;
}
.savings { font-size: 14px; font-weight: 500; color: var(--green); }

/* =============================================
   EVERY BATCH INCLUDES
   ============================================= */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.includes-card {
  padding: 32px;
  text-align: center;
}
.includes-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.includes-card h3 {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.includes-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =============================================
   WHO CAN JOIN
   ============================================= */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.who-card {
  padding: 24px;
  padding-top: 44px;
  position: relative;
}
.who-bar {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 20px;
  height: 3px;
  border-radius: 9999px;
}
.who-card h3 {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.who-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.43;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { text-align: center; }
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-inner h2 {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}
.cta-inner p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.56;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.43;
  margin-bottom: 4px;
}
.footer-time { color: var(--text-dim) !important; }
.footer-link { color: var(--blue) !important; }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 32px;
  text-align: center;
}
.footer-tagline {
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 14px;
  color: var(--text-dim);
}

/* =============================================
   RESPONSIVE — TABLET (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  .hero-section { padding-top: 96px; }

  .hero-title { font-size: 48px; }
  .hero-tagline { font-size: 20px; }
  .hero-desc { font-size: 16px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .features-grid  { grid-template-columns: 1fr; }
  .features-grid-2 { grid-template-columns: 1fr; max-width: 460px; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .includes-grid  { grid-template-columns: 1fr; }
  .who-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr; gap: 24px; }

  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-strip    { grid-template-columns: repeat(2, 1fr); }

  /* Workflow rows — collapse left column under body */
  .workflow-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 22px;
  }
  .workflow-row-left {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-right: 0;
    padding-bottom: 14px;
  }
  .workflow-row-num { font-size: 36px; }

  .deliverables-block { padding: 28px 20px; }
  .deliverables-title { font-size: 20px; }

  .pricing-popular { margin-top: 0; }

  .section-header h2 { font-size: 28px; }
  .section-header p  { font-size: 16px; }

  .phase-tabs { gap: 8px; }
  .phase-btn  { min-width: 100px; padding: 12px 16px; }

  .cta-inner h2 { font-size: 28px; }
}

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px 12px 14px;
  border-radius: 9999px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45), 0 4px 12px rgba(0,0,0,0.3);
  opacity: 1;
}
.wa-float svg { flex-shrink: 0; }

@media (max-width: 480px) {
  .wa-float { bottom: 20px; right: 16px; padding: 12px; }
  .wa-label { display: none; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .hero-section { padding-top: 80px; }
  .hero-title   { font-size: 36px; }
  .hero-tagline { font-size: 18px; }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btns .btn { justify-content: center; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .stat-num   { font-size: 28px; }
  .stat-label { font-size: 12px; }

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

  .showcase-strip    { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }

  .workflow-row { padding: 20px 18px; }
  .workflow-row-num { font-size: 32px; }
  .workflow-row-head h3 { font-size: 19px; }

  .section        { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

  .curriculum-topic { font-size: 16px; }

  .phase-btn { min-width: 88px; padding: 10px 12px; }
  .phase-num { font-size: 14px; }
  .phase-days { font-size: 12px; }

  .current-price { font-size: 28px; }

  .btn-xl {
    padding: 16px 24px;
    font-size: 16px;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 360px)
   ============================================= */
@media (max-width: 360px) {
  /* Prevent any element from causing horizontal scroll */
  html, body { overflow-x: hidden; }
  * { max-width: 100%; }

  .container { padding: 0 16px; }

  /* Hero */
  .hero-section  { padding-top: 72px; }
  .hero-title    { font-size: 30px; }
  .hero-tagline  { font-size: 16px; }
  .hero-desc     { font-size: 14px; }
  .hero-btns     { gap: 10px; }

  .badge         { font-size: 12px; padding: 7px 12px; }

  /* Stats */
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat-card     { padding: 16px 10px; }
  .stat-num      { font-size: 24px; }
  .stat-label    { font-size: 11px; }

  /* Section headers */
  .section-header h2 { font-size: 22px; }
  .section-header p  { font-size: 14px; }
  .section           { padding: 48px 0; }
  .section-header    { margin-bottom: 32px; }

  /* Phase tabs — 2 per row */
  .phase-tabs  { gap: 6px; }
  .phase-btn   { min-width: 0; flex: 1 1 calc(50% - 6px); padding: 10px 8px; }
  .phase-num   { font-size: 13px; }
  .phase-days  { font-size: 11px; }

  /* Curriculum */
  .curriculum-item      { padding: 14px 16px; gap: 12px; }
  .day-badge            { font-size: 12px; min-width: 44px; }
  .curriculum-topic     { font-size: 14px; }
  .curriculum-desc      { font-size: 12px; }
  .curriculum-footer    { padding: 16px; font-size: 14px; }

  /* Pricing */
  .pricing-card   { padding: 24px 20px; }
  .current-price  { font-size: 26px; }
  .original-price { font-size: 13px; }
  .savings        { font-size: 13px; }

  /* Includes */
  .includes-card  { padding: 24px 20px; }

  /* Who grid — single column */
  .who-grid  { grid-template-columns: 1fr; }
  .who-card  { padding: 20px 16px; padding-top: 36px; }

  /* Buttons */
  .btn-xl  { padding: 14px 20px; font-size: 15px; }
  .btn-lg  { padding: 14px 24px; font-size: 15px; }
  .btn-full { padding: 12px; font-size: 14px; }

  /* CTA */
  .cta-inner h2 { font-size: 22px; }
  .cta-inner p  { font-size: 14px; }

  /* Footer */
  .footer-col h4 { font-size: 14px; }
  .footer-col p  { font-size: 13px; }
  .footer-tagline { font-size: 13px; }
  .footer-copy    { font-size: 12px; }

  /* Nav */
  .nav-inner { padding: 12px 16px; }

  /* WhatsApp */
  .wa-float { bottom: 16px; right: 12px; padding: 10px; }
}

/* =============================================
   RESPONSIVE — TINY MOBILE (≤ 320px)
   ============================================= */
@media (max-width: 320px) {
  .container { padding: 0 12px; }

  .hero-title   { font-size: 26px; }
  .hero-tagline { font-size: 14px; }
  .hero-desc    { font-size: 13px; }

  .badge { font-size: 11px; padding: 6px 10px; gap: 6px; }

  .stat-num   { font-size: 20px; }
  .stat-label { font-size: 10px; }
  .stat-card  { padding: 12px 8px; }

  .section-header h2 { font-size: 20px; }

  /* Phase tabs — still 2 per row but tighter */
  .phase-btn  { padding: 8px 6px; }
  .phase-num  { font-size: 12px; }
  .phase-days { font-size: 10px; }

  .curriculum-item  { padding: 12px; gap: 10px; }
  .day-badge        { font-size: 11px; min-width: 38px; }
  .curriculum-topic { font-size: 13px; }
  .curriculum-desc  { font-size: 11px; }

  .current-price { font-size: 22px; }
  .pricing-card  { padding: 20px 14px; }

  .cta-inner h2 { font-size: 20px; }

  .btn-xl   { padding: 12px 16px; font-size: 14px; }
  .btn-full { font-size: 13px; }
}
