/* ── TOKENS ── */
:root {
  --red: #b91c1c;
  --red-dark: #991b1b;
  --red-light: #dc2626;
  --red-bg: #fef2f2;
  --red-border: #fecaca;
  --bg: #ffffff;
  --bg-gray: #f8f9fa;
  --bg-dark: #111827;
  --surface: #ffffff;
  --border: #e5e7eb;
  --border-dark: #d1d5db;
  --text: #111827;
  --text-mid: #374151;
  --text-muted: #6b7280;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.1);
  --transition: .2s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── CONTAINER ── */
.container { width: min(1140px, 92%); margin: 0 auto; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', sans-serif; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
h5 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 16px; }
p { color: var(--text-mid); font-size: .95rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius);
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: .88rem; border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap; cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-dark); }
.btn-outline:hover { border-color: var(--text-muted); background: var(--bg-gray); }
.btn-ghost { background: transparent; color: var(--text-muted); border-color: transparent; }
.btn-ghost:hover { color: var(--text); background: var(--bg-gray); }
.btn-nav { background: var(--red); color: var(--white); padding: 9px 18px; font-size: .82rem; }
.btn-nav:hover { background: var(--red-dark); }
.btn-nav-ghost { background: transparent; color: var(--text-mid); border-color: var(--border-dark); }
.btn-nav-ghost:hover { background: var(--bg-gray); border-color: var(--text-muted); }
.btn-white { background: var(--white); color: var(--red); border-color: var(--white); font-weight: 700; }
.btn-white:hover { background: #f0f0f0; }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-sm { padding: 7px 14px; font-size: .8rem; }
.btn-full { width: 100%; justify-content: center; padding: 13px; font-size: .95rem; }

/* ── SECTIONS ── */
.section { padding: 88px 0; }
.section-gray { background: var(--bg-gray); }
.section-red { background: var(--red); }
.section-label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--red); margin-bottom: 10px;
}
.section-label.light { color: rgba(255,255,255,.75); }
.section-title { margin-bottom: 14px; }
.section-title.light { color: var(--white); }
.section-sub { color: var(--text-muted); max-width: 58ch; }
.section-sub.light { color: rgba(255,255,255,.8); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PILL ── */
.pill {
  display: inline-block; background: var(--red-bg);
  color: var(--red); border: 1px solid var(--red-border);
  border-radius: 999px; font-size: .72rem; font-weight: 700;
  padding: 5px 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 32px; }

.logo { display: flex; align-items: baseline; gap: 0; font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.05rem; }
.logo-daniel { color: var(--text); }
.logo-laban { color: var(--white); background: var(--red); padding: 2px 6px; margin-left: 3px; }
.logo-sub { font-size: .58rem; font-weight: 700; letter-spacing: .14em; color: var(--text-muted); margin-left: 8px; text-transform: uppercase; align-self: center; }
.logo-dark .logo-daniel { color: var(--text); }

.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--text-muted); font-size: .88rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 14px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s ease; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text-mid); padding: 11px 0; font-size: .95rem; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; margin-top: 10px; }

/* ── HERO ── */
.hero { background: var(--white); border-bottom: 1px solid var(--border); overflow: hidden; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 72px 0 64px; }
.hero-text { display: flex; flex-direction: column; }
.hero-text h1 { color: var(--text); margin-bottom: 16px; }
.hero-sub { font-size: .98rem; color: var(--text-muted); margin-bottom: 28px; max-width: 48ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.stat { padding: 14px 16px; border-right: 1px solid var(--border); background: var(--bg-gray); }
.stat:last-child { border-right: none; }
.stat strong { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--red); line-height: 1; margin-bottom: 3px; }
.stat span { font-size: .7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .07em; }
.hero-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image.no-img { background: var(--bg-gray); }
.hero-image-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--white); border-radius: var(--radius);
  padding: 10px 14px; display: flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; color: var(--text-mid);
  box-shadow: var(--shadow);
}
.hero-image-badge svg { color: var(--red); flex-shrink: 0; }

/* ── COURSES ── */
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.course-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--border-dark); }
.featured-card { border-color: var(--red); box-shadow: 0 0 0 2px var(--red-border), var(--shadow); }
.featured-card:hover { box-shadow: 0 0 0 2px var(--red), var(--shadow-lg); }
.course-img { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-gray); flex-shrink: 0; }
.course-img.no-img { background: linear-gradient(135deg, #f3f4f6, #e5e7eb); }
.course-img img { transition: transform .4s ease; }
.course-card:hover .course-img img { transform: scale(1.04); }
.course-badge {
  position: absolute; top: 10px; right: 10px; z-index: 1;
  font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}
.course-badge.free { background: #052e16; color: #86efac; }
.course-badge.paid { background: var(--red); color: var(--white); }
.course-badge.soon { background: rgba(0,0,0,.55); color: rgba(255,255,255,.8); }
.course-body { padding: 18px 20px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.course-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font-size: .7rem; font-weight: 600; padding: 3px 9px; border-radius: 999px; background: var(--bg-gray); color: var(--text-muted); border: 1px solid var(--border); }
.course-body h3 { color: var(--text); line-height: 1.35; }
.course-body p { font-size: .87rem; flex: 1; }
.course-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--border); }
.course-price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .9rem; color: var(--text); }
.course-price.free-label { color: #15803d; }
.course-price.muted { color: var(--text-muted); font-weight: 500; font-size: .82rem; }

/* ── WHY DLA ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: border-color var(--transition), box-shadow var(--transition); }
.why-card:hover { border-color: var(--red-border); box-shadow: var(--shadow); }
.why-icon { width: 48px; height: 48px; background: var(--red-bg); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--red); flex-shrink: 0; }
.why-card h4 { color: var(--text); margin-bottom: 8px; }
.why-card p { font-size: .87rem; }

/* ── OUTCOMES ── */
.outcomes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; margin-bottom: 48px; }
.outcome-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow-sm); }
.outcome-icon { width: 56px; height: 56px; background: var(--red-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--red); }
.outcome-card h4 { color: var(--text); margin-bottom: 8px; }
.outcome-card p { font-size: .86rem; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.quote-icon { color: var(--red); opacity: .25; margin-bottom: 12px; }
.testimonial p { font-size: .92rem; color: var(--text-mid); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.testimonial footer { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--border); padding-top: 12px; }
.testimonial strong { font-size: .85rem; color: var(--text); font-style: normal; }
.testimonial span { font-size: .78rem; color: var(--text-muted); font-style: normal; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.about-img { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.about-img img { border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/5; width: 100%; box-shadow: var(--shadow-lg); }
.about-img.no-img { background: var(--bg-gray); border-radius: var(--radius-lg); aspect-ratio: 4/5; }
.about-img-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--red); color: var(--white);
  border-radius: var(--radius); padding: 14px 18px; text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge strong { display: block; font-size: 1.7rem; font-weight: 800; font-family: 'Space Grotesk', sans-serif; line-height: 1; }
.about-img-badge span { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; opacity: .85; }
.about-text { display: flex; flex-direction: column; gap: 14px; }
.about-facts { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 6px 0; }
.about-facts li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--text-mid); }
.about-facts li svg { color: var(--red); flex-shrink: 0; }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

/* ── ENROLL STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.step { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); padding: 24px; }
.step-icon { width: 44px; height: 44px; background: rgba(255,255,255,.15); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--white); margin-bottom: 14px; }
.step-num { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 800; color: rgba(255,255,255,.18); line-height: 1; margin-bottom: 10px; }
.step h4 { color: var(--white); margin-bottom: 8px; }
.step p { font-size: .87rem; color: rgba(255,255,255,.72); }
.step p strong { color: var(--white); }
.enroll-cta { display: flex; gap: 14px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info h2 { color: var(--text); }
.contact-details { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px; border-radius: var(--radius); background: var(--bg-gray); border: 1px solid var(--border); transition: border-color var(--transition); }
a.contact-item:hover { border-color: var(--red); background: var(--red-bg); }
.contact-icon { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon.whatsapp { background: #dcfce7; color: #16a34a; }
.contact-icon.phone { background: var(--red-bg); color: var(--red); }
.contact-icon.location { background: #eff6ff; color: #2563eb; }
.contact-icon.email { background: #f5f3ff; color: #7c3aed; }
.contact-item strong { display: block; font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.contact-item span { font-size: .87rem; color: var(--text-muted); }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 18px; box-shadow: var(--shadow); }
.contact-form h3 { color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text-mid); }
.req { color: var(--red); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-gray); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 13px; color: var(--text);
  font-size: .9rem; font-family: 'Inter', sans-serif;
  transition: border-color var(--transition); outline: none; resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); background: var(--white); box-shadow: 0 0 0 3px var(--red-border); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-color: var(--bg-gray); padding-right: 34px; cursor: pointer; }
.form-feedback { font-size: .85rem; min-height: 18px; text-align: center; border-radius: 6px; padding: 0; }
.form-feedback.success { color: #15803d; background: #f0fdf4; padding: 10px; }
.form-feedback.error { color: #dc2626; background: var(--red-bg); padding: 10px; }

/* ── FOOTER ── */
.footer { background: var(--bg-dark); padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .logo { color: var(--white); }
.footer-brand .logo-laban { background: var(--red); color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,.4); }
.footer-brand p { font-size: .87rem; color: rgba(255,255,255,.5); max-width: 32ch; }
.footer h5 { color: rgba(255,255,255,.35); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .87rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 8px; background: #15803d; color: var(--white); padding: 9px 16px; border-radius: var(--radius); font-size: .83rem; font-weight: 600; transition: background var(--transition); width: fit-content; }
.whatsapp-btn:hover { background: #166534; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 48px; }
  .hero-image { max-width: 560px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { max-width: 380px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── PATHWAY SECTION ── */
.pathway-section { background: var(--bg-dark); }

/* Banner */
.pathway-banner {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.pathway-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pathway-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,.92) 45%, rgba(185,28,28,.35) 100%);
}
.pathway-banner-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
}
.pill-light {
  background: rgba(185,28,28,.25);
  color: #fca5a5;
  border: 1px solid rgba(185,28,28,.4);
}
.pathway-banner-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 18px 0 14px;
}
.pathway-banner-content > .container > p,
.pathway-banner-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
}

/* Progress bar */
.pathway-progress {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 480px;
}
.pathway-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.pp-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  transition: all .3s;
}
.pathway-progress-step.active .pp-num {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.pp-label {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}
.pp-dur {
  font-size: .68rem;
  color: rgba(255,255,255,.35);
}
.pathway-progress-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,.15);
  margin: 0 10px;
  margin-bottom: 28px;
}

/* Cards wrap */
.pathway-cards-wrap {
  padding-bottom: 80px;
}
.pathway-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -60px;
}

/* Individual card */
.pcard {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.18); }
.pcard-featured {
  box-shadow: 0 0 0 3px var(--red), var(--shadow-lg);
}
.pcard-featured:hover { box-shadow: 0 0 0 3px var(--red), 0 20px 60px rgba(0,0,0,.2); }

/* Card image */
.pcard-img {
  position: relative;
  height: 200px;
  background: #1f2937;
  overflow: hidden;
}
.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pcard-img-fallback {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}
.pcard-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 60%);
}
.pcard-badges {
  position: absolute;
  bottom: 14px;
  left: 16px;
  display: flex;
  gap: 8px;
}
.pcard-level {
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.pcard-tag {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.2);
}

/* Card body */
.pcard-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.pcard-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.pcard-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.pcard-body > p {
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}
.pcard-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pcard-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.pcard-highlight svg {
  flex-shrink: 0;
  color: var(--red);
  margin-top: 1px;
}
.pcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.pcard-price-main {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}
.pcard-price-sub {
  font-size: .73rem;
  color: var(--text-muted);
  display: block;
  margin-top: 1px;
}

/* Grand total strip */
.pathway-total-strip {
  margin-top: 48px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.pts-left { flex: 1; }
.pts-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
}
.pts-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.pts-stat:first-child { padding-left: 0; }
.pts-stat strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.pts-stat span {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}
.pts-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
}
.pts-left > p {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  max-width: 500px;
}
.pts-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.pts-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.pts-total span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.pts-total strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.pts-total small {
  font-size: .7rem;
  color: rgba(255,255,255,.35);
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .courses-grid, .why-grid, .outcomes-grid, .steps-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .pathway-cards { grid-template-columns: 1fr; margin-top: 24px; }
  .pathway-progress { max-width: 100%; }
  .pathway-total-strip { flex-direction: column; align-items: flex-start; gap: 28px; padding: 28px 24px; }
  .pts-right { align-items: flex-start; width: 100%; }
  .pts-stats { gap: 0; flex-wrap: wrap; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 22px; }
  .hero-content { padding: 44px 0 40px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions, .enroll-cta, .about-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .enroll-cta .btn { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}
