/*
Theme Name:  Alined Academy Theme
Theme URI:   https://alinedacademy.com
Author:      Wisdom Muzambi
Author URI:  https://nexagrowth.com
Description: Custom WordPress theme for Alined Academy — Zimbabwean Tax & Financial Literacy training platform.
Version:     1.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alined-academy
Tags:        education, lms, one-page, responsive
*/

/* ============================================================
   ALINED ACADEMY — Manual Stylesheet
   ============================================================ */

/* ── 1. CSS Variables ──────────────────────────────────────── */
:root {
  --amber-50:   #fffbeb;
  --amber-100:  #fef3c7;
  --amber-300:  #fcd34d;
  --amber-400:  #fbbf24;
  --amber-500:  #f59e0b;
  --amber-600:  #d97706;
  --amber-700:  #b45309;

  --blue-100:   #dbeafe;
  --blue-200:   #bfdbfe;
  --blue-300:   #93c5fd;
  --blue-700:   #1d4ed8;
  --blue-800:   #1e40af;
  --blue-900:   #1e3a8a;

  --indigo-900: #312e81;

  --green-100:  #dcfce7;
  --green-400:  #4ade80;
  --green-500:  #22c55e;
  --green-600:  #16a34a;
  --green-700:  #15803d;

  --purple-100: #f3e8ff;
  --purple-400: #c084fc;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;

  --red-100:    #fee2e2;
  --indigo-100: #e0e7ff;
  --indigo-600: #4f46e5;

  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-600:   #4b5563;
  --gray-700:   #374151;
  --gray-800:   #1f2937;
  --gray-900:   #111827;

  --white:      #ffffff;

  --font: 'Inter', sans-serif;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg:  0 8px 25px rgba(0,0,0,0.12);
  --shadow-xl:  0 20px 50px rgba(0,0,0,0.18);
}

/* ── 2. Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── 3. Typography helpers ─────────────────────────────────── */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-500);
  display: block;
  margin-bottom: 0.75rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--amber-500), #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 4. Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--sm  { max-width: 640px;  margin: 0 auto; padding: 0 1.25rem; }
.container--md  { max-width: 800px;  margin: 0 auto; padding: 0 1.25rem; }
.container--lg  { max-width: 960px;  margin: 0 auto; padding: 0 1.25rem; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* ── 5. Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: var(--white);
  padding: 0.65rem 1.75rem;
  font-size: 0.9rem;
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--amber-600), var(--amber-700));
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(245,158,11,0.4);
}

.btn--primary-lg {
  padding: 0.9rem 2.5rem;
  font-size: 1.05rem;
}

.btn--primary-full {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn--ghost {
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-full);
}
.btn--ghost:hover { color: var(--gray-900); }

.btn--enroll-xs {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: var(--white);
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.2s;
}
.btn--enroll-xs:hover {
  background: linear-gradient(135deg, var(--amber-600), var(--amber-700));
  transform: translateY(-1px);
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.45); }
  50%       { box-shadow: 0 0 0 10px rgba(245,158,11,0); }
}
.pulse { animation: pulse-border 2s infinite; }

/* ── 6. NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.navbar__logo img {
  width: 200px;
  height: 45px;
  object-fit: cover;
  object-position: center;
}


.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar__links a,
.navbar__links .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.navbar__links a:hover,
.navbar__links .nav-link:hover { color: var(--amber-500); }

/* WordPress wp_nav_menu() resets */
.navbar__links ul,
.footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.navbar__links ul li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.navbar__links ul li a:hover { color: var(--amber-500); }

.footer__nav ul {
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.footer__nav ul li a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.2s;
}
.footer__nav ul li a:hover { color: var(--white); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar__hamburger {
  display: none;
  padding: 0.4rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.navbar__hamburger:hover { background: var(--gray-100); }
.navbar__hamburger svg { width: 20px; height: 20px; color: var(--gray-700); }
.navbar__hamburger .icon-close { display: none; }

.navbar__drawer {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.navbar__drawer.open { max-height: 400px; }
.navbar__drawer-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.navbar__drawer a,
.navbar__drawer ul li a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: background 0.2s, color 0.2s;
}
.navbar__drawer a:hover,
.navbar__drawer ul li a:hover {
  background: var(--amber-50);
  color: var(--amber-600);
}
.navbar__drawer ul { list-style: none; padding: 0; margin: 0; }
.navbar__drawer-divider {
  border-top: 1px solid var(--gray-100);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}
.navbar__drawer .btn--primary {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-md);
}

/* ── 7. HERO ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(to bottom, var(--amber-50), var(--white));
  padding: 4rem 1.25rem 3.5rem;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber-700);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}
.hero__badge svg { width: 14px; height: 14px; }

.hero__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__body {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero__body strong { color: var(--gray-800); }

.hero__cohort-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, var(--blue-900), var(--indigo-900));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  margin-top: 0.25rem;
}
.hero__cohort-badge svg { width: 16px; height: 16px; color: var(--amber-300); flex-shrink: 0; }

/* ── 8. STATS BAR ──────────────────────────────────────────── */
.stats {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 2.25rem 1.25rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.stats__item { text-align: center; }

.stats__number {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--amber-500);
  line-height: 1;
}
.stats__number sup { font-size: 1.25rem; }

.stats__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.stats__logos-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
  margin-bottom: 0.4rem;
}
.stats__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.badge {
  font-size: 0.7rem;
  font-weight: 900;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
}
.badge--amber  { background: var(--amber-100);  color: var(--amber-700); }
.badge--blue   { background: var(--blue-100);   color: var(--blue-700); }
.badge--green  { background: var(--green-100);  color: var(--green-700); }
.badge--gray   { background: var(--gray-100);   color: var(--gray-500); }
.badge--open   { background: var(--green-100);  color: var(--green-700); }

/* ── 9. MARQUEE TICKER ─────────────────────────────────────── */
.ticker {
  background: var(--amber-500);
  padding: 0.6rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: flex;
  animation: marquee 18s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker__items {
  display: inline-flex;
  gap: 2rem;
  padding: 0 1rem;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
}

/* ── 10. TABS SECTION ──────────────────────────────────────── */
.tabs-section {
  background: var(--gray-50);
  padding: 4rem 1.25rem;
  text-align: center;
}

.tabs-section__title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.tab-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tab-btn {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
  transition: all 0.2s;
  cursor: pointer;
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--amber-500);
  color: var(--white);
  border-color: var(--amber-400);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.tab-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.tab-card__icon--amber  { background: var(--amber-100); }
.tab-card__icon--blue   { background: var(--blue-100); }
.tab-card__icon--purple { background: var(--purple-100); }

.tab-card__title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.tab-card__body {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.pill {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}
.pill--amber  { background: #fffbeb; color: var(--amber-700); }
.pill--blue   { background: #eff6ff; color: var(--blue-700); }
.pill--purple { background: #faf5ff; color: var(--purple-700); }

/* ── 11. QUOTE BANNER ──────────────────────────────────────── */
.quote-banner {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800), var(--indigo-900));
  padding: 3.5rem 1.25rem;
  text-align: center;
}

.quote-banner__emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.quote-banner__text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.quote-banner__text .highlight { color: var(--amber-300); }

.quote-banner__attr {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue-300);
}

/* ── 12. CTA STRIP ─────────────────────────────────────────── */
.cta-strip {
  background: var(--white);
  padding: 2rem 1.25rem;
  text-align: center;
}

/* ── 13. FOR WHO ───────────────────────────────────────────── */
.audience {
  background: var(--gray-50);
  padding: 4rem 1.25rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header__title {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.2;
}
.section-header__sub {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.card__icon--amber  { background: var(--amber-100); }
.card__icon--blue   { background: var(--blue-100); }
.card__icon--green  { background: var(--green-100); }
.card__icon--purple { background: var(--purple-100); }
.card__icon--red    { background: var(--red-100); }
.card__icon--indigo { background: var(--indigo-100); }

.card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}
.card__body {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── 14. CURRICULUM ────────────────────────────────────────── */
.curriculum {
  background: var(--white);
  padding: 4rem 1.25rem;
}

.topic-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.topic-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}
.topic-pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--green  { background: var(--green-400); }
.dot--blue   { background: #60a5fa; }
.dot--purple { background: var(--purple-400); }

.part-header {
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.part-header--green  { background: linear-gradient(135deg, #10b981, #059669); }
.part-header--blue   { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.part-header--purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }

.part-header__num {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-weight: 900;
  font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.part-header__title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--white);
}
.part-header__sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.1rem;
}

.modules-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.module-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.module-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.module-card--full { grid-column: 1 / -1; }

.module-card__badge {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.badge--mod-green  { background: var(--green-100);  color: var(--green-600); }
.badge--mod-blue   { background: var(--blue-100);   color: var(--blue-700); }
.badge--mod-purple { background: var(--purple-100); color: var(--purple-600); }

.module-card__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}
.module-card__body {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.module-card__activity {
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.activity--green  { color: var(--green-600); }
.activity--blue   { color: var(--blue-700); }
.activity--purple { color: var(--purple-600); }

/* ── 15. BENEFITS ──────────────────────────────────────────── */
.benefits {
  background: var(--gray-50);
  padding: 4rem 1.25rem;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.benefit-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.benefit-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.4rem;
}
.benefit-card__body {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── 16. COHORT DATES ──────────────────────────────────────── */
.cohorts {
  background: var(--white);
  padding: 4rem 1.25rem;
}

.cohort-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cohort-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: var(--radius-xl);
  padding: 1rem 1.25rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.cohort-row--open {
  background: #fffbeb;
  border: 2px solid var(--amber-400);
}

.cohort-row__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cohort-date-box {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cohort-date-box--amber { background: var(--amber-500); color: var(--white); }
.cohort-date-box--gray  { background: var(--gray-100);  color: var(--gray-500); }
.cohort-date-box__month { font-size: 0.6rem;  font-weight: 700; line-height: 1; }
.cohort-date-box__day   { font-size: 1.15rem; font-weight: 900; line-height: 1; }

.cohort-row__title {
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--gray-900);
}
.cohort-row__sub {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 0.1rem;
}

.cohort-row__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cohorts__note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-400);
}
.cohorts__note a {
  color: var(--amber-500);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── 17. ENROLLMENT SECTION ────────────────────────────────── */
.enroll-section {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-800), var(--indigo-900));
  padding: 4rem 1.25rem;
  text-align: center;
}

.enroll-section__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-300);
  display: block;
  margin-bottom: 0.75rem;
}

.enroll-section__title {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.enroll-section__sub {
  font-size: 0.95rem;
  color: var(--blue-200);
  margin-bottom: 2rem;
}

.price-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.price-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.price-card__price {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-card__sub {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.checklist {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}
.checklist__icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-600);
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}
.payment-badge {
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
}

.enroll-section__link {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue-300);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.enroll-section__link:hover { color: var(--white); }

/* ── 18. FOOTER ────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  padding: 2.5rem 1.25rem;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1152px;
  margin: 0 auto;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__logo-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: var(--amber-500);
  color: var(--white);
  font-weight: 900;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer__brand-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}
.footer__brand-sub {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 0.1rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.footer__nav a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--white); }

.footer__copy {
  font-size: 0.72rem;
  color: var(--gray-600);
  text-align: right;
  line-height: 1.6;
}

/* ── 19. FLOATING WHATSAPP ─────────────────────────────────── */
#wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: transform 0.2s, opacity 0.4s, visibility 0.4s;
}
#wa-float.visible { opacity: 1; visibility: visible; }
#wa-float:hover   { transform: scale(1.1); }
#wa-float svg     { width: 28px; height: 28px; color: var(--white); }

/* ── 20. INNER PAGE CONTENT ────────────────────────────────── */
.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.page-content h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}
.page-content p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── 21. WOOCOMMERCE OVERRIDES ─────────────────────────────── */
.woocommerce-page .page-content,
.woocommerce { max-width: 1100px; margin: 0 auto; padding: 3rem 1.25rem; }

/* ── 22. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__drawer { display: block; }

  .hero { padding: 3rem 1.25rem 2.5rem; }
  .hero__title { font-size: 1.9rem; }
  .hero__body  { font-size: 0.95rem; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  .tab-card { flex-direction: column; }

  .quote-banner__text { font-size: 1.05rem; }

  .cards-4 { grid-template-columns: repeat(2, 1fr); }

  .modules-2 { grid-template-columns: 1fr; }
  .module-card--full { grid-column: auto; }

  .cards-3 { grid-template-columns: repeat(2, 1fr); }

  .cohort-row { flex-direction: column; align-items: flex-start; }
  .cohort-row__right { align-self: flex-start; }

  .enroll-section__title { font-size: 1.75rem; }
  .price-card__price { font-size: 3.5rem; }

  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__copy  { text-align: center; }
  .footer__nav   { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.6rem; }
  .cards-4 { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stats__number { font-size: 2.25rem; }
  .btn--primary-lg { padding: 0.8rem 1.75rem; font-size: 0.95rem; }
  .price-card { padding: 1.5rem; }
  .price-card__price { font-size: 3rem; }
  .part-header { padding: 0.85rem 1rem; }
  .part-header__title { font-size: 0.95rem; }
}
