/* ========================================================
   ASPIRA DESIGN — DARK THEME CSS
   Exact colors extracted from Figma (node 51:4)
   Heading: Google Sans  |  Body: Inter
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  /* Dark backgrounds */
  --bg-base:          #030712;
  --bg-surface:       #101828;
  --bg-card:          #0d1117;
  --bg-elevated:      #1e2939;

  /* Brand */
  --blue:             #155dfc;
  --blue-light:       #2b7fff;
  --blue-lighter:     #51a2ff;
  --blue-dim:         rgba(21,93,252,0.2);
  --blue-dim-border:  rgba(21,93,252,0.5);
  --green-wa:         #00a63e;

  /* Gradient text */
  --grad-hero:   linear-gradient(90deg, rgb(43,127,255) 0%, rgb(173,70,255) 50%, rgb(246,51,154) 100%);
  --grad-nums:   linear-gradient(90deg, rgb(81,162,255) 0%, rgb(251,100,182) 100%);
  --grad-video-card: linear-gradient(119.36deg, rgba(21,93,252,0.2) 0%, rgba(230,0,118,0.2) 100%);

  /* Hero section background */
  --hero-bg: linear-gradient(141.54deg, rgba(22,36,86,0.4) 0%, rgb(3,7,18) 50%, rgba(81,4,36,0.4) 100%);

  /* Text */
  --text-white:   #ffffff;
  --text-primary: #d1d5dc;
  --text-muted:   #99a1af;
  --text-faint:   #6a7282;
  --text-blue:    #2b7fff;

  /* Borders */
  --border: #1e2939;

  /* Typography */
  --font-heading: 'Google Sans', 'DM Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --section-py:   80px;
  --container-w:  1009px;
  --container-px: 16px;

  /* Radius */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 9999px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-base);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
details summary { cursor: pointer; list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* Gradient text utility */
.grad-text {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-nums {
  background: var(--grad-nums);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LAYOUT ===== */
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 var(--container-px); }
.section { padding: var(--section-py) 0; }
.section-header { margin-bottom: 48px; }
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin: 0 auto; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  max-width: 672px;
  line-height: 1.65;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  border: 2px solid var(--blue);
  padding: 14px 28px;
  border-radius: var(--r-md);
  cursor: pointer;
  
}
.btn-primary:hover { background: #1a4fd8; border-color: #1a4fd8; transform: translateY(-1px); 
transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 10px 15px rgba(21,93,252,0.4), 0 4px 6px rgba(21,93,252,0.25);}
.btn-primary.btn-lg { font-size: 18px; padding: 16px 32px; }
.btn-primary.btn-block { width: 100%; justify-content: center; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: var(--green-wa);
  border: 2px solid var(--green-wa);
  padding: 16px 32px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #008f35; transform: translateY(-1px); }

/* ===== SCARCITY BAR ===== */
.scarcity-bar {
  background: rgba(3,7,18,0.97);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transform: translateY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
/* Hide scarcity bar when scrolled — JS adds this class */
.scarcity-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.scarcity-bar-inner {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.scarcity-bar-text { display: flex; align-items: center; gap: 6px; color: var(--text-primary); padding: 0 10px; font-size: 13px; }
.scarcity-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; display: inline-block; animation: pulse-dot 1.8s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(1.2)} }
.scarcity-bar-pill { display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 3px 10px; font-size: 12px; font-weight: 600; color: #fbbf24; }
.scarcity-bar-emi { color: var(--text-muted); font-size: 13px; }
.scarcity-bar-cta { margin-left: auto; background: var(--blue); color: #fff; font-weight: 700; font-size: 13px; padding: 6px 16px; border-radius: 6px; white-space: nowrap; transition: background 0.2s; }
.scarcity-bar-cta:hover { background: #1a4fd8; }

/* ===== HEADER ===== */
/* Header sits below scarcity bar (44px). When scarcity hides, header slides up too. */
.site-header {
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(3,7,18,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 65px;
  transition: top 0.3s ease;
}
/* When scarcity bar hides, header moves to top:0 */
body.scarcity-hidden .site-header { top: 0; }

/* Offset body so fixed header+bar don't cover content */
body { padding-top: 109px; } /* 44 scarcity + 65 header */
body.scarcity-hidden { padding-top: 65px; }
.site-header .container { height: 100%; display: flex; align-items: center; }
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { height: 32px; width: auto; }
.logo-fallback { font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: var(--text-white); }

/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 90px;
  text-align: center;
  position: relative;
  background: var(--hero-bg);
  overflow: hidden;
}
/* badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: rgba(30,41,57,0.5);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 32px;
}
.hero-badge svg { color: var(--blue-light); }
/* main heading */
.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-white);
  margin-bottom: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
/* "UX Design Job" — gradient inline span */
.hero-heading .grad-text { display: inline; }
/* "with AI Skills..." sub-line */
.hero-subline {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-top: 6px;
  letter-spacing: -0.02em;
}
.hero-subtext {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 24px auto 36px;
  line-height: 1.65;
}
.hero-cta-group { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(to bottom, var(--bg-surface), var(--bg-base));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 65px 0 48px;
}
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 16px 8px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-icon { width: 48px; height: 48px; background: var(--blue-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--blue-light); }
/* stat number uses .grad-nums span inside */
.stat-number { font-family: var(--font-body); font-weight: 700; font-size: 36px; line-height: 1; margin-bottom: 8px; }
.stat-label { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); }

/* ===== VIDEO TESTIMONIALS ===== */
.video-testimonials-section { background: linear-gradient(to bottom, var(--bg-base), var(--bg-surface)); }
.video-testimonials-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: start; }

.video-card-featured { border-radius: var(--r-lg); overflow: hidden; background: var(--grad-video-card); border: 1px solid var(--border); }
.video-wrapper { position: relative; aspect-ratio: 9/16; max-height: 520px; background: #000; overflow: hidden; }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-play-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; background: rgba(0,0,0,0.15); transition: background 0.2s; z-index: 2;
}
.video-play-overlay:hover { background: rgba(0,0,0,0.3); }
.video-play-btn { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; color: var(--blue); box-shadow: 0 4px 24px rgba(0,0,0,0.4); transition: transform 0.15s; }
.video-play-overlay:hover .video-play-btn { transform: scale(1.08); }
.video-play-label { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: #fff; background: rgba(0,0,0,0.5); padding: 5px 12px; border-radius: var(--r-pill); }
.video-card-info { padding: 20px 24px; border-top: 1px solid var(--border); }
.video-card-name { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--text-white); margin-bottom: 4px; }
.video-card-role { font-family: var(--font-body); font-size: 14px; color: var(--text-primary); margin-bottom: 12px; }
.video-card-meta { display: flex; align-items: center; gap: 12px; }
.video-company-chip { display: inline-block; font-family: var(--font-body); font-size: 12px; color: #fff; background: rgba(43,127,255,0.3); border: 1px solid rgba(81,162,255,0.5); border-radius: var(--r-pill); padding: 4px 12px; }
.video-salary { font-family: var(--font-body); font-size: 18px; font-weight: 700; }
.video-student-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== VIDEO MODAL ===== */
.video-modal-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.82); z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.video-modal-backdrop.active { display: flex; }
.video-modal-box { background: #000; border-radius: var(--r-xl); overflow: hidden; width: 100%; max-width: 380px; position: relative; box-shadow: 0 24px 64px rgba(0,0,0,0.7); }
.video-modal-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.12); border: none; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: background 0.2s; }
.video-modal-close:hover { background: rgba(255,255,255,0.22); }
.video-modal-iframe-wrap { aspect-ratio: 9/16; position: relative; }
.video-modal-iframe-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-modal-caption { padding: 14px 20px; font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.6); text-align: center; background: #0a0a0a; }

/* ===== STORY CARDS (placement section) ===== */
.stories-section { background: var(--bg-surface); }
.stories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.story-card:hover { border-color: rgba(43,127,255,0.4); box-shadow: 0 4px 24px rgba(21,93,252,0.15); transform: translateY(-3px); }
.story-avatar-wrap { width: 88px; height: 88px; border-radius: 50%; overflow: hidden; margin-bottom: 14px; background: var(--bg-elevated); flex-shrink: 0; }
.story-avatar { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder { width: 100%; height: 100%; background: var(--blue-dim); color: var(--blue-light); font-family: var(--font-heading); font-size: 24px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.story-name { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text-white); margin-bottom: 4px; }
.story-role { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.story-company-chip { display: inline-block; font-family: var(--font-body); font-size: 12px; color: #fff; background: rgba(43,127,255,0.3); border: 1px solid rgba(81,162,255,0.5); border-radius: var(--r-pill); padding: 4px 12px; margin-bottom: 10px; }
.story-salary { font-family: var(--font-body); font-size: 18px; font-weight: 700; }

/* ===== PARTNERS STRIP ===== */
.partners-strip { background: rgba(30,41,57,0.35); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px 28px; margin-top: 40px; }
.partners-strip-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--text-primary); }
.partners-strip-left { display: flex; align-items: center; gap: 8px; }
.partners-strip-count { font-size: 13px; color: var(--text-muted); }
.partner-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.partner-chip { display: inline-block; font-family: var(--font-body); font-size: 13px; color: var(--text-primary); background: rgba(30,41,57,0.7); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 5px 12px; }
.partner-chip-more { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--blue-light); padding: 5px 0; }

/* ===== ENROLL ===== */
.enroll-section { background: linear-gradient(to bottom, var(--bg-base), var(--bg-surface)); }
.enroll-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-xl); max-width: 640px; margin: 0 auto; }
.enroll-card-inner { padding: 48px 44px; }
.enroll-header { margin-bottom: 32px; text-align: center; }
/* Bigin overrides */
.enroll-form .wf-form-wrapper { display: flex; flex-direction: column; gap: 14px; }
.enroll-form .wf-row { margin: 0 !important; }
.enroll-form .wf-field { margin: 0 !important; }
.enroll-form .wf-field-inner { border: 1px solid var(--border) !important; border-radius: var(--r-md) !important; background: var(--bg-surface) !important; overflow: hidden; }
.enroll-form .wf-field-input { font-family: var(--font-body) !important; font-size: 15px !important; padding: 14px 16px !important; border: none !important; outline: none !important; width: 100% !important; background: transparent !important; color: var(--text-white) !important; }
.enroll-form .wf-field-input::placeholder { color: var(--text-faint) !important; }
.enroll-form .wform-btn-wrap { margin-top: 6px !important; }
.enroll-submit-btn { width: 100% !important; background: var(--blue) !important; color: #fff !important; border: 2px solid var(--blue) !important; border-radius: var(--r-md) !important; padding: 16px 24px !important; font-family: var(--font-body) !important; font-size: 16px !important; font-weight: 600 !important; cursor: pointer !important; box-shadow: 0 10px 15px rgba(21,93,252,0.35) !important; }
.enroll-submit-btn:hover { background: #1a4fd8 !important; }
.form-trust { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 16px; }
.form-trust-item { display: flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 13px; color: var(--text-muted); }
.form-trust-item svg { color: #22c55e; flex-shrink: 0; }
.form-guarantee { text-align: center; margin-top: 12px; font-family: var(--font-body); font-size: 13px; color: var(--text-muted); }

/* ===== PORTFOLIO ===== */
.portfolio-section { background: var(--bg-surface); }
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.portfolio-card { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); background: var(--bg-card); transition: border-color .2s, box-shadow .2s, transform .2s; }
.portfolio-card:hover { border-color: rgba(43,127,255,0.4); box-shadow: 0 4px 24px rgba(21,93,252,0.12); transform: translateY(-3px); }
.portfolio-img-wrap { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-elevated); }
.portfolio-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.portfolio-card:hover .portfolio-img-wrap img { transform: scale(1.04); }
.portfolio-info { padding: 14px 16px; }
.portfolio-title { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--text-white); margin-bottom: 4px; }
.portfolio-author { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); }
.portfolio-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.portfolio-behance-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--blue-light); transition: gap .2s; }
.portfolio-behance-link:hover { gap: 10px; }
.behance-strip { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 12px; }
.behance-stat { display: flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 13px; color: var(--text-muted); }
.behance-stat svg { color: var(--blue-light); flex-shrink: 0; }
.behance-stat strong { color: var(--text-white); font-weight: 700; }

/* ===== MENTOR ===== */
.mentor-section { background: var(--bg-base); }
.mentor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mentor-image-wrap { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 1; background: var(--grad-video-card); border: 1px solid var(--border); }
.mentor-image { width: 100%; height: 100%; object-fit: cover; }
.mentor-image-badge { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(3,7,18,0.85); backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px 20px; }
.mentor-image-badge-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--text-white); margin-bottom: 4px; }
.mentor-image-badge-sub { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); }
.mentor-bullets { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.mentor-bullet { display: flex; align-items: flex-start; gap: 12px; font-family: var(--font-body); font-size: 15px; color: var(--text-primary); line-height: 1.6; }
.mentor-bullet-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--blue-dim); color: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.mentor-quote { background: rgba(30,41,57,0.5); border-left: 3px solid var(--blue); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 18px 20px; font-family: var(--font-body); font-size: 14px; font-style: italic; color: var(--text-primary); line-height: 1.7; }

/* ===== CLARITY ===== */
.clarity-section { background: var(--blue); padding: 56px 0; }
.clarity-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.clarity-title { font-family: var(--font-heading); font-size: clamp(22px,2.5vw,32px); font-weight: 700; color: #fff; margin-bottom: 10px; }
.clarity-desc { font-family: var(--font-body); font-size: 15px; color: rgba(255,255,255,0.75); max-width: 600px; line-height: 1.7; }
.clarity-btn { background: #fff; color: var(--blue); border-color: #fff; box-shadow: none; flex-shrink: 0; }
.clarity-btn:hover { background: rgba(255,255,255,.9); box-shadow: none; transform: none; }

/* ===== CURRICULUM ===== */
.curriculum-section { background: var(--bg-surface); }
.curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.curriculum-item { background: transparent; border-bottom: 1px solid var(--border); }
.curriculum-item:nth-child(odd) { border-right: 1px solid var(--border); }
.curriculum-item:nth-last-child(-n+2) { border-bottom: none; }
.curriculum-summary { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; transition: background .15s; }
.curriculum-summary:hover { background: rgba(30,41,57,0.5); }
.curriculum-module-wrap { display: flex; align-items: center; gap: 16px; }
.curriculum-module-num { width: 48px; height: 48px; border-radius: var(--r-md); background: var(--blue-dim); border: 1px solid var(--blue-dim-border); color: var(--blue-light); font-family: var(--font-body); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.curriculum-module-title { font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--text-white); }
.curriculum-chevron { flex-shrink: 0; transition: transform .2s; color: var(--text-muted); }
details[open] .curriculum-chevron { transform: rotate(180deg); }
.curriculum-content { padding: 0 24px 20px 88px; font-family: var(--font-body); font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.curriculum-cta { text-align: center; }
.curriculum-cta-note { margin-top: 12px; font-family: var(--font-body); font-size: 12px; color: var(--text-faint); }

/* ===== TOOLS ===== */
.tools-section { background: var(--bg-base); padding: var(--section-py) 0; }
.tools-ticker-wrap { overflow: hidden; margin: 40px 0 32px; position: relative; }
.tools-ticker-wrap::before, .tools-ticker-wrap::after { content:''; position: absolute; top:0; bottom:0; width:80px; z-index:2; pointer-events:none; }
.tools-ticker-wrap::before { left:0; background: linear-gradient(to right, var(--bg-base), transparent); }
.tools-ticker-wrap::after  { right:0; background: linear-gradient(to left, var(--bg-base), transparent); }
.tools-ticker-inner { display: flex; gap: 12px; width: max-content; animation: ticker-scroll 30s linear infinite; }
@keyframes ticker-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.tools-ticker:hover .tools-ticker-inner { animation-play-state: paused; }
.tool-chip { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--text-primary); background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 10px 18px; white-space: nowrap; }
.tools-bonus { display: flex; align-items: flex-start; gap: 12px; background: rgba(30,41,57,0.35); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px 24px; font-family: var(--font-body); font-size: 15px; color: var(--text-primary); line-height: 1.7; }
.tools-bonus svg { flex-shrink: 0; color: #fbbf24; margin-top: 2px; }
.tools-bonus strong { color: var(--text-white); }

/* ===== JOURNEY ===== */
.journey-section { background: var(--bg-surface); }
.journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.journey-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 24px; transition: border-color .2s, box-shadow .2s, transform .2s; }
.journey-card:hover { border-color: rgba(43,127,255,0.4); box-shadow: 0 4px 24px rgba(21,93,252,0.12); transform: translateY(-3px); }
.journey-phase { font-family: var(--font-body); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue-light); margin-bottom: 16px; }
.journey-icon { width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--blue-dim); color: var(--blue-light); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.journey-title { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--text-white); margin-bottom: 6px; }
.journey-duration { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--blue-light); background: var(--blue-dim); display: inline-block; padding: 2px 10px; border-radius: var(--r-pill); margin-bottom: 12px; }
.journey-desc { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.journey-cta { text-align: center; padding:40px 0; }
/* ===== PLACEMENT ===== */
.placement-section { background: var(--bg-base); }
.placement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.placement-label-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.placement-label-wrap svg { color: var(--blue-light); }
.placement-bullets { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.placement-bullet { display: flex; align-items: flex-start; gap: 12px; font-family: var(--font-body); font-size: 15px; color: var(--text-primary); line-height: 1.6; }
.placement-bullet svg { flex-shrink: 0; color: var(--blue-light); margin-top: 2px; }
.placement-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.placement-stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px 24px; text-align: center; transition: border-color .2s; }
.placement-stat-card:hover { border-color: rgba(43,127,255,0.4); }
.placement-stat-number { font-family: var(--font-body); font-size: clamp(28px,3vw,36px); font-weight: 700; margin-bottom: 8px; line-height: 1; }
.placement-stat-label { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* ===== FEES ===== */
.fees-section { background: var(--bg-surface); }
.fees-card-wrap { max-width: 672px; margin: 0 auto; }
.fees-card { border: 1px solid var(--border); border-radius: var(--r-xl); padding: 44px; background: var(--bg-card); }
.fees-emi-top { text-align: center; padding-bottom: 28px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.fees-start-label { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); margin-bottom: 6px; }
.fees-amount { font-family: var(--font-heading); font-size: clamp(32px,4vw,48px); font-weight: 800; color: var(--text-white); letter-spacing: -.03em; margin-bottom: 8px; }
.fees-emi-note { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); }
.fees-scholarship { display: flex; align-items: center; gap: 10px; background: rgba(251,191,36,.1); border: 1px solid rgba(251,191,36,.25); border-radius: var(--r-md); padding: 12px 16px; font-family: var(--font-body); font-size: 14px; color: #fbbf24; font-weight: 500; margin-bottom: 24px; }
.fees-scholarship svg { flex-shrink: 0; color: #fbbf24; }
.fees-includes { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.fees-include-item { display: flex; align-items: flex-start; gap: 12px; font-family: var(--font-body); font-size: 15px; color: var(--text-primary); }
.fees-include-item svg { flex-shrink: 0; color: var(--blue-light); margin-top: 2px; }
.fees-guarantee { text-align: center; margin-top: 16px; font-family: var(--font-body); font-size: 13px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-base); }
.faq-section-title { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--text-white); margin-bottom: 20px; }
.faq-group { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); background: var(--bg-card); }
.faq-item:last-child { border-bottom: none; }
.faq-summary { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; font-family: var(--font-heading); font-size: 16px; font-weight: 600; color: var(--text-white); gap: 16px; transition: background .15s; }
.faq-summary:hover { background: rgba(30,41,57,0.5); }
.faq-chevron { flex-shrink: 0; transition: transform .25s; color: var(--text-muted); }
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-content { padding: 0 24px 20px; font-family: var(--font-body); font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.faq-contact { text-align: center; margin-top: 40px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; }
.faq-contact-text { font-family: var(--font-body); font-size: 16px; color: var(--text-primary); margin-bottom: 14px; font-weight: 500; }
.faq-contact-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--blue-light); border: 2px solid rgba(43,127,255,0.4); padding: 12px 24px; border-radius: var(--r-md); transition: background .15s, border-color .15s; }
.faq-contact-link:hover { background: var(--blue-dim); border-color: var(--blue-light); }

/* ===== FINAL CTA ===== */
.final-cta-section { background: var(--bg-surface); padding: 80px 0; border-top: 1px solid var(--border); }
.final-cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.final-cta-title { font-family: var(--font-heading); font-size: clamp(28px,3.5vw,42px); font-weight: 800; color: var(--text-white); margin-bottom: 16px; letter-spacing: -.03em; }
.final-cta-desc { font-family: var(--font-body); font-size: 16px; color: var(--text-muted); margin-bottom: 36px; line-height: 1.7; }
.final-cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer { background: var(--bg-base); border-top: 1px solid var(--border); padding: 48px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { height: 28px; width: auto; margin-bottom: 10px; }
.footer-brand-name { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.footer-tagline { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.footer-col-title { font-family: var(--font-body); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-family: var(--font-body); font-size: 14px; color: var(--text-muted); transition: color .15s; }
.footer-link:hover { color: var(--text-white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-top: 1px solid var(--border); font-family: var(--font-body); font-size: 13px; color: var(--text-muted); }

/* ===== STICKY BAR ===== */
.sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: var(--bg-surface); border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,0.4); padding: 10px var(--container-px); }
.sticky-bar.visible { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.sticky-bar-text { font-family: var(--font-body); font-size: 13px; color: var(--text-primary); }
.sticky-bar-actions { display: flex; align-items: center; gap: 8px; }
.sticky-btn-primary { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: #fff; background: var(--blue); padding: 10px 20px; border-radius: var(--r-md); transition: background .15s; white-space: nowrap; }
.sticky-btn-primary:hover { background: #1a4fd8; }
.sticky-btn-outline { display: flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--text-primary); border: 1.5px solid var(--border); padding: 9px 16px; border-radius: var(--r-md); white-space: nowrap; transition: border-color .15s; }
.sticky-btn-outline svg { width: 14px; height: 14px; }
.sticky-btn-outline:hover { border-color: var(--text-muted); }

/* ===== FLOATING WA ===== */
.wa-float { position: fixed; bottom: 80px; right: 20px; z-index: 997; display: flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 12px 18px 12px 14px; border-radius: 40px; box-shadow: 0 4px 20px rgba(37,211,102,0.35); font-family: var(--font-body); font-size: 14px; font-weight: 600; transition: transform .15s, box-shadow .15s; }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-float:hover { transform: scale(1.04); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.wa-float-label { white-space: nowrap; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ===== HERO BADGE ROTATION ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: rgba(30,41,57,0.5);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 32px;
  min-width: 280px;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.hero-badge-icon { font-size: 15px; }
#hero-badge-text { transition: opacity 0.25s ease; }

/* ===== 4-VIDEO ROW ===== */
.videos-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.vcard {
  display: flex;
  flex-direction: column;
  background: var(--grad-video-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.vcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(21,93,252,0.2);
}

.vcard-frame {
  position: relative;
  aspect-ratio: 9/16;
  background: #000;
  overflow: hidden;
  flex-shrink: 0;
}
.vcard-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none; /* prevent iframe stealing click; overlay handles it */
}
.vcard-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 20px;
  cursor: pointer;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 50%);
  transition: background 0.2s;
  z-index: 2;
}
.vcard-overlay:hover { background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%); }

.vcard-play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  margin-bottom: 10px;
  transition: transform 0.15s, background 0.15s;
}
.vcard-overlay:hover .vcard-play-btn { transform: scale(1.08); background: #fff; }

.vcard-sound-hint {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.45);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.vcard-info {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
}
.vcard-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3px;
}
.vcard-role {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}
.vcard-company { color: var(--blue-light); font-weight: 600; }

/* Mobile swipe dots */
.vdots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.vdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.vdot.active { background: var(--blue-light); transform: scale(1.3); }

/* ===== COMPANY LOGO MARQUEE ===== */
.company-marquee-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 16px;
}
.company-marquee-wrap::before,
.company-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.company-marquee-wrap::before { left: 0; background: linear-gradient(to right, rgba(16,24,40,0.9), transparent); }
.company-marquee-wrap::after  { right: 0; background: linear-gradient(to left, rgba(16,24,40,0.9), transparent); }

.company-marquee-inner {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: cmarquee 28s linear infinite;
  align-items: center;
}
.company-marquee:hover .company-marquee-inner { animation-play-state: paused; }

@keyframes cmarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.clogo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(30,41,57,0.6);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 16px;
  white-space: nowrap;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}
.clogo-item:hover {
  border-color: rgba(43,127,255,0.4);
  box-shadow: 0 2px 12px rgba(21,93,252,0.12);
}
.clogo-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}
.clogo-item span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  :root { --section-py: 56px; }
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4),.stat-item:nth-child(5) { border-top: 1px solid var(--border); }
  .videos-row { grid-template-columns: repeat(2, 1fr); }
  .vdots { display: none; }
  .stories-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .curriculum-grid { grid-template-columns: 1fr; }
  .curriculum-item:nth-child(odd) { border-right: none; }
  .curriculum-item:last-child { border-bottom: none; }
  .mentor-grid { grid-template-columns: 1fr; gap: 32px; }
  .mentor-image-wrap { max-width: 400px; margin: 0 auto; }
  .placement-grid { grid-template-columns: 1fr; gap: 40px; }
  .journey-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .clarity-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  :root { --section-py: 48px; --container-px: 16px; }

  /* Scarcity bar: smaller text on mobile */
  .scarcity-bar-pill { font-size: 11px; padding: 2px 8px; }
  .scarcity-bar-text { font-size: 12px; padding: 0 6px; }
  .scarcity-bar-cta { font-size: 12px; padding: 5px 12px; }

  /* Hero */
  .hero-section { padding: 56px 0 64px; min-height: auto; }
  .hero-badge { font-size: 13px; padding: 7px 14px; min-width: unset; max-width: 100%; }
  .hero-heading { font-size: clamp(32px, 8vw, 48px); }
  .hero-subline { font-size: clamp(18px, 5vw, 28px); }
  .hero-subtext { font-size: 15px; margin: 18px auto 28px; }
  .hero-cta-group { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-whatsapp { justify-content: center; font-size: 15px; padding: 14px 20px; }

  /* Stats: 2 col */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: none; }
  .stat-item:nth-child(5) { border-top: none; }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: 28px; }

  /* Video swipe on mobile */
  .video-testimonials-section .section-header { padding: 0 var(--container-px); }
  .videos-row {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    scrollbar-width: none;
    margin-bottom: 0;
    margin-left: calc(-1 * var(--container-px));
    margin-right: calc(-1 * var(--container-px));
    padding: 0 var(--container-px) 8px;
  }
  .videos-row::-webkit-scrollbar { display: none; }
  .vcard { flex: 0 0 72vw; max-width: 260px; scroll-snap-align: start; }
  .vdots { display: flex; }

  /* Story cards */
  .stories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .story-avatar-wrap { width: 64px; height: 64px; }
  .story-name { font-size: 14px; }
  .story-salary { font-size: 15px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Enroll form */
  .enroll-card-inner { padding: 24px 16px; }
  .section-subtitle { font-size: 15px; }

  /* Curriculum */
  .curriculum-content { padding: 0 16px 16px 72px; }
  .curriculum-module-num { width: 40px; height: 40px; font-size: 12px; }
  .curriculum-module-title { font-size: 14px; }

  /* Journey */
  .journey-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Placement */
  .placement-stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .placement-stat-card { padding: 20px 12px; }
  .placement-stat-number { font-size: 24px; }

  /* Fees */
  .fees-card { padding: 24px 16px; }
  .fees-amount { font-size: 32px; }

  /* FAQ */
  .faq-summary { font-size: 14px; padding: 16px; }
  .faq-content { font-size: 14px; padding: 0 16px 16px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; font-size: 12px; }

  /* Final CTA */
  .final-cta-title { font-size: 26px; }
  .final-cta-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .final-cta-btns a { justify-content: center; font-size: 15px; }

  /* Sticky bar */
  .sticky-bar.visible { flex-wrap: nowrap; padding: 8px 12px; gap: 8px; }
  .sticky-bar-text { font-size: 12px; }
  .sticky-btn-primary { font-size: 13px; padding: 9px 14px; }
  .sticky-btn-outline { font-size: 12px; padding: 8px 12px; }

  /* WhatsApp float */
  .wa-float-label { display: none; }
  .wa-float { /*padding: 12px; */border-radius: 50%; width: 52px; height: 52px; bottom: 72px; right: 12px; }
}

/* ===== 360px ===== */
@media (max-width: 360px) {
  :root { --section-py: 40px; --container-px: 12px; }

  /* Scarcity: hide pill to save space */
  .scarcity-bar-pill { display: none; }
  .scarcity-bar-inner { justify-content: space-between; }
  .scarcity-bar-text { font-size: 11px; }
  .scarcity-bar-cta { font-size: 11px; padding: 5px 10px; margin-left: 0; }

  /* Hero */
  .hero-section { padding: 44px 0 52px; }
  .hero-heading { font-size: 30px; }
  .hero-subline { font-size: 17px; }
  .hero-subtext { font-size: 14px; }
  .hero-badge { font-size: 12px; padding: 6px 12px; }
  .btn-primary.btn-lg, .btn-whatsapp { font-size: 14px; padding: 13px 16px; }

  /* Stats */
  .stat-number { font-size: 24px; }
  .stat-label { font-size: 12px; }
  .stat-icon { width: 40px; height: 40px; }

  /* Videos: 80vw card */
  .vcard { flex: 0 0 82vw; max-width: none; }

  /* Story cards: single col */
  .stories-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }

  /* Enroll */
  .enroll-card-inner { padding: 20px 12px; }
  .section-title { font-size: 22px; }

  /* Curriculum */
  .curriculum-summary { padding: 14px 12px; }
  .curriculum-content { padding: 0 12px 14px 60px; }
  .curriculum-module-num { width: 36px; height: 36px; font-size: 11px; }
  .curriculum-module-title { font-size: 13px; }

  /* Placement stats: single col on tiny screens */
  .placement-stats-grid { grid-template-columns: 1fr 1fr; }

  /* Fees */
  .fees-card { padding: 20px 12px; }
  .fees-amount { font-size: 28px; }
  .fees-includes { gap: 10px; }
  .fees-include-item { font-size: 13px; }

  /* Footer */
  .footer-tagline { font-size: 12px; }
  .footer-bottom { font-size: 11px; }

  /* FAQ */
  .faq-summary { font-size: 13px; padding: 14px 12px; gap: 10px; }
  .faq-content { font-size: 13px; padding: 0 12px 14px; }

  /* Sticky bar: stack on tiny */
  .sticky-bar.visible { flex-direction: column; gap: 6px; align-items: stretch; padding: 8px 12px; }
  .sticky-bar-text { text-align: center; }
  .sticky-bar-actions { justify-content: center; gap: 6px; }
  .sticky-btn-primary { font-size: 13px; text-align: center; }
  .sticky-btn-outline { justify-content: center; }

  /* WA float */
  .wa-float { right: 8px; bottom: auto; top: auto; }
}

/* ===== 320px ===== */
@media (max-width: 320px) {
  :root { --section-py: 36px; --container-px: 10px; }

  /* Scarcity: ultra compact */
  .scarcity-bar-pill { display: none; }
  .scarcity-bar-text { font-size: 10px; }
  .scarcity-bar-cta { font-size: 10px; padding: 4px 8px; }

  /* Hero */
  .hero-heading { font-size: 26px; letter-spacing: -0.02em; }
  .hero-subline { font-size: 15px; }
  .hero-subtext { font-size: 13px; }
  .hero-badge { font-size: 11px; padding: 5px 10px; }
  .btn-primary.btn-lg, .btn-whatsapp { font-size: 13px; padding: 12px 14px; }
  .hero-cta-group { gap: 8px; }

  /* Stats */
  .stat-number { font-size: 22px; }
  .stat-icon { width: 36px; height: 36px; }
  .stat-icon svg { width: 18px; height: 18px; }

  /* Videos */
  .vcard { flex: 0 0 88vw; }

  /* Layouts */
  .stories-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; }

  /* Section headers */
  .section-title { font-size: 20px; }
  .section-subtitle { font-size: 13px; }
  .section-label { font-size: 11px; }

  /* Curriculum */
  .curriculum-summary { padding: 12px 10px; gap: 8px; }
  .curriculum-module-num { width: 32px; height: 32px; font-size: 10px; border-radius: 8px; }
  .curriculum-module-title { font-size: 12px; }
  .curriculum-content { padding: 0 10px 12px 50px; font-size: 12px; }

  /* Fees */
  .fees-amount { font-size: 26px; }
  .fees-card { padding: 18px 10px; }
  .fees-include-item { font-size: 12px; }

  /* Enroll */
  .enroll-card-inner { padding: 18px 10px; }

  /* FAQ */
  .faq-summary { font-size: 12px; padding: 12px 10px; }
  .faq-content { font-size: 12px; padding: 0 10px 12px; }

  /* Footer */
  .footer-inner { gap: 20px; }

  /* Sticky bar */
  .sticky-bar.visible { flex-direction: column; padding: 6px 10px; gap: 6px; }
  .sticky-btn-primary { font-size: 12px; padding: 8px 12px; }
  .sticky-btn-outline { font-size: 12px; padding: 7px 10px; }
  .sticky-bar-text { font-size: 11px; }

  /* WA float */
  .wa-float { width: 46px; height: 46px; right: 6px; }
  .wa-float svg { width: 18px; height: 18px; }
}


