/* ============================================================
   MOLAKISI — Centre Pédagogique d'Excellence & Hub d'Avenir
   Design: Coloré, dynamique, professionnel
   ============================================================ */

:root {
  /* MOLAKISI — UNIQUEMENT couleurs charte mockup */
  /* Teal/vert */
  --brand-teal-deep: #0b6b69;
  --brand-teal: #0f766e;
  --brand-teal-mid: #148f8c;
  --brand-teal-soft: #357e84;
  --brand-teal-light: #5aabb0;
  --brand-teal-pale: #b8e0dc;
  /* Orange logo (franc, pas rouge) */
  --brand-orange: #ff7a00;
  --brand-orange-dark: #e56e00;
  --brand-orange-soft: #ffb366;
  /* Navy logo */
  --brand-navy: #1a365d;
  --brand-navy-deep: #0f2744;
  /* Blanc */
  --brand-white: #ffffff;

  --primary: #0f766e;
  --primary-dark: #0b6b69;
  --primary-light: #5aabb0;
  --secondary: #ff7a00;
  --secondary-dark: #e56e00;
  --accent: #148f8c;
  --accent-2: #ff7a00;
  --success: #0f766e;
  --dark: #0f2744;
  --dark-2: #1a365d;
  --gray-900: #0f172a;
  --gray-800: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #eef6f5;
  --gray-50: #f4fbfa;
  --white: #ffffff;

  --gradient-hero: linear-gradient(135deg, #0b6b69 0%, #0f766e 40%, #148f8c 75%, #357e84 100%);
  --gradient-warm: linear-gradient(135deg, #ff7a00 0%, #ff9a33 100%);
  --gradient-cool: linear-gradient(135deg, #0f766e 0%, #0b6b69 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f4fbfa 100%);
  --shadow-sm: 0 1px 2px rgba(15, 39, 68, 0.05);
  --shadow: 0 4px 6px -1px rgba(15, 39, 68, 0.08), 0 2px 4px -2px rgba(15, 39, 68, 0.06);
  --shadow-md: 0 10px 25px -5px rgba(15, 39, 68, 0.1), 0 8px 10px -6px rgba(15, 39, 68, 0.08);
  --shadow-lg: 0 25px 50px -12px rgba(15, 39, 68, 0.18);
  --shadow-glow: 0 0 40px rgba(15, 118, 110, 0.3);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --container: 1180px;
  --header-h: 76px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::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-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(15, 118, 110, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 620px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-desc {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-warm);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--gray-700);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

/* logo base overridden in brand block */
.logo { display: flex; align-items: center; gap: 0.55rem; flex-shrink: 0; text-decoration: none; }

/* logo-mark in brand block */

/* logo span in brand block */

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gray-700);
  transition: all var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
  background: rgba(15, 118, 110, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  display: flex;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.lang-switch button {
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-500);
  transition: all var(--transition);
}

.lang-switch button.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gray-100);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background: var(--gradient-hero);
  overflow: hidden;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.35) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(20, 143, 140, 0.3) 0%, transparent 35%),
    radial-gradient(circle at 60% 70%, rgba(15, 118, 110, 0.25) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.3); }
  50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.1); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  color: #5eead4;
  background: none;
  -webkit-text-fill-color: #5eead4;
  text-shadow: 0 0 40px rgba(45, 212, 191, 0.45);
  display: inline-block;
  margin-top: 0.15em;
}

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
}

.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-warm);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.hero-card-header h4 {
  color: white;
  font-size: 1rem;
}

.hero-card-header p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.course-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.course-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: background var(--transition);
}

.course-item:hover {
  background: rgba(255, 255, 255, 0.18);
}

.course-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.course-icon.ai { background: rgba(15, 118, 110, 0.4); }
.course-icon.biz { background: rgba(249, 115, 22, 0.4); }
.course-icon.job { background: rgba(20, 143, 140, 0.4); }
.course-icon.code { background: rgba(16, 185, 129, 0.4); }

.course-item h5 {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}

.course-item p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.floating-badge {
  position: absolute;
  background: white;
  color: var(--dark);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
}

.floating-badge.top {
  top: -1rem;
  right: -0.5rem;
}

.floating-badge.bottom {
  bottom: 1rem;
  left: -1.5rem;
  animation-delay: -2s;
}

.floating-badge .emoji {
  font-size: 1.4rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Sections ---------- */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .section-desc {
  color: var(--gray-400);
}

.section-dark .section-label {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-light);
}

/* ---------- Vision ---------- */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.vision-content .section-desc {
  margin-bottom: 1.5rem;
}

.vision-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.vision-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.vision-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.vision-point h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.vision-point p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.vision-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gradient-hero);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.vision-visual-inner {
  text-align: center;
  color: white;
}

.vision-visual-inner .big-emoji {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.vision-visual-inner h3 {
  color: white;
  margin-bottom: 0.75rem;
}

.vision-visual-inner p {
  opacity: 0.85;
  max-width: 280px;
  margin-inline: auto;
}

/* ---------- Pillars ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-accent, var(--primary));
  opacity: 0;
  transition: opacity var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-card:nth-child(1) { --card-accent: #0f766e; }
.pillar-card:nth-child(2) { --card-accent: #ff7a00; }
.pillar-card:nth-child(3) { --card-accent: #148f8c; }
.pillar-card:nth-child(4) { --card-accent: #0b6b69; }
.pillar-card:nth-child(5) { --card-accent: #ff7a00; }

.pillar-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--card-accent, var(--primary));
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 1.15rem;
  background: color-mix(in srgb, var(--card-accent, var(--primary)) 12%, white);
}

.pillar-card h3 {
  margin-bottom: 0.65rem;
}

.pillar-card > p {
  color: var(--gray-600);
  font-size: 0.92rem;
  margin-bottom: 1.15rem;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--gray-700);
}

.pillar-list li::before {
  content: "✓";
  color: var(--card-accent, var(--primary));
  font-weight: 700;
  flex-shrink: 0;
}

.pillar-card.wide {
  grid-column: span 1;
}

/* ---------- Stats bar ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  margin-top: -3rem;
  position: relative;
  z-index: 5;
  border: 1px solid var(--gray-100);
}

.stat-item {
  text-align: center;
  padding: 0.5rem;
}

.stat-item .stat-num {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* ---------- Programs / Formations ---------- */
.programs-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

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

.program-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.program-thumb {
  height: 160px;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  position: relative;
  background: var(--gradient-hero);
}

.program-thumb.ai { background: linear-gradient(135deg, #0b6b69, #148f8c); }
.program-thumb.biz { background: linear-gradient(135deg, #e56e00, #ff7a00); }
.program-thumb.job { background: linear-gradient(135deg, #0f766e, #5aabb0); }
.program-thumb.code { background: linear-gradient(135deg, #0b6b69, #357e84); }
.program-thumb.edu { background: linear-gradient(135deg, #0f766e, #ff7a00); }
.program-thumb.lang { background: linear-gradient(135deg, #0b6b69, #148f8c); }

.program-thumb .thumb-emoji {
  font-size: 3rem;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  opacity: 0.9;
}

.program-tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
}

.program-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.program-body > p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1.15rem;
  flex: 1;
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.program-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.program-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.program-price {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
}

.program-price small {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stars {
  color: #ff7a00;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.author-avatar.o { background: var(--gradient-warm); }
.author-avatar.c { background: var(--gradient-cool); }

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---------- Partners ---------- */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}

.partner-logo {
  padding: 1rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-500);
  min-width: 140px;
  text-align: center;
  transition: all var(--transition);
}

.partner-logo:hover {
  color: var(--primary);
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: var(--gray-100);
}

.blog-thumb.t1 { background: linear-gradient(135deg, #eef6f5, #b8e0dc); }
.blog-thumb.t2 { background: linear-gradient(135deg, #ffedd5, #fed7aa); }
.blog-thumb.t3 { background: linear-gradient(135deg, #eef6f5, #b8e0dc); }

.blog-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.blog-cat {
  color: var(--primary);
  font-weight: 700;
}

.blog-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.blog-card:hover h3 {
  color: var(--primary);
}

.blog-body > p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1.15rem;
  flex: 1;
}

.blog-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-link:hover {
  gap: 0.6rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 1.1rem;
  color: var(--gray-600);
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.35rem 1.25rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -100px;
  right: -50px;
}

.newsletter h2 {
  color: white;
  margin-bottom: 0.65rem;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}

.newsletter-form input {
  flex: 1;
  padding: 0.95rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  text-align: center;
  padding: 4.5rem 2rem;
  background: var(--dark);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(15, 118, 110, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(249, 115, 22, 0.3) 0%, transparent 45%);
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--gray-400);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  background: var(--gradient-hero);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(249, 115, 22, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(20, 143, 140, 0.25) 0%, transparent 35%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: white;
  margin-bottom: 0.85rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  max-width: 600px;
  margin-inline: auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb .sep {
  opacity: 0.5;
}

/* ---------- About page extras ---------- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gray-200);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid white;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.25);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.timeline-item h3 {
  margin-bottom: 0.4rem;
}

.timeline-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

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

.value-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
}

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

.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--gradient-hero);
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
}

.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.contact-info-card a:hover {
  color: var(--primary);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  margin-bottom: 0.35rem;
}

.contact-form-wrap > p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--gray-50);
  color: var(--dark);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.form-check input {
  margin-top: 0.2rem;
  accent-color: var(--primary);
}

/* ---------- Inscription form page ---------- */
.enroll-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.enroll-benefits {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
}

.enroll-benefits h3 {
  margin-bottom: 1.25rem;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.benefit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.benefit-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.enroll-highlight {
  background: var(--gradient-hero);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: white;
}

.enroll-highlight h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.enroll-highlight p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 1rem;
  color: white;
}

.footer-brand .logo span {
  -webkit-text-fill-color: white;
  background: none;
  color: white;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 300px;
}

.socials {
  display: flex;
  gap: 0.6rem;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  transition: all var(--transition);
}

.socials a:hover {
  background: var(--primary);
}

.footer h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 1.15rem;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: white;
}

/* ---------- Toast / alerts ---------- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.35s ease;
  max-width: 360px;
  font-size: 0.92rem;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.success {
  border-left: 4px solid var(--success);
}

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 900;
  font-size: 1.2rem;
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid,
  .vision-grid,
  .contact-grid,
  .enroll-layout,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .pillars-grid,
  .programs-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    max-width: 480px;
    margin-inline: auto;
  }

  .floating-badge.bottom {
    left: 0;
  }

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

@media (max-width: 768px) {
  :root {
    --header-h: 68px;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    padding: 0.85rem 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .btn {
    display: none;
  }

  .pillars-grid,
  .programs-grid,
  .testimonials-grid,
  .blog-grid,
  .values-grid,
  .team-grid,
  .footer-grid,
  .stats-bar,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 2rem);
    padding-bottom: 3rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .section {
    padding: 3.5rem 0;
  }

  .floating-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .logo span {
    font-size: 1.1rem;
  }
}


/* ---------- Pricing model ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  background: var(--gradient-hero);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}

.pricing-card.featured h3,
.pricing-card.featured p {
  color: white;
}

.pricing-card.featured p {
  opacity: 0.9;
}

.pricing-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.75rem;
  color: #ff7a00;
}

.pricing-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.pricing-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
}

.pricing-note {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.15);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
}

.founder-tag {
  margin-top: 1.25rem !important;
  font-size: 0.85rem !important;
  font-weight: 600;
  opacity: 0.9 !important;
  letter-spacing: 0.02em;
}

.founder-spotlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.founder-avatar {
  width: 110px;
  height: 110px;
  border-radius: 28px;
  background: var(--gradient-hero);
  display: grid;
  place-items: center;
  color: white;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.35);
}

.founder-spotlight h2 {
  margin-bottom: 0.75rem;
}

.team-card.founder-card {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}

.team-card.founder-card .team-avatar {
  box-shadow: 0 8px 24px rgba(15, 118, 110, 0.35);
}

.program-price {
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .founder-spotlight {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-avatar {
    margin-inline: auto;
  }
}


/* ---------- Track details (subscription copy) ---------- */
.tracks-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.track-detail {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-left: 5px solid var(--primary);
}

.track-detail:hover {
  box-shadow: var(--shadow-md);
}

.track-detail[data-track="lang"] { border-left-color: #0f766e; }
.track-detail[data-track="oratory"] { border-left-color: #ff7a00; }
.track-detail[data-track="ai"] { border-left-color: #148f8c; }
.track-detail[data-track="biz"] { border-left-color: #ff7a00; }
.track-detail[data-track="job"] { border-left-color: #0b6b69; }
.track-detail[data-track="edu"] { border-left-color: #357e84; }

.track-detail-header {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}

.track-detail-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.85rem;
  flex-shrink: 0;
  background: rgba(15, 118, 110, 0.1);
}

.track-accent-lang { background: rgba(15, 118, 110, 0.12); }
.track-accent-oratory { background: rgba(15, 118, 110, 0.12); }
.track-accent-ai { background: rgba(15, 118, 110, 0.12); }
.track-accent-biz { background: rgba(249, 115, 22, 0.12); }
.track-accent-job { background: rgba(20, 143, 140, 0.12); }
.track-accent-edu { background: rgba(16, 185, 129, 0.12); }

.track-detail-heading .program-tag {
  display: inline-block;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.track-detail-heading h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.3;
}

.track-lead {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 500;
}

.track-body {
  color: var(--gray-600);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.track-body p {
  margin-bottom: 0.95rem;
}

.track-body p:last-child {
  margin-bottom: 0;
}

.track-cta-line {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(15, 118, 110, 0.06);
  border-radius: 10px;
  border-left: 3px solid var(--secondary);
}

.track-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Teacher opportunity ---------- */
.teacher-banner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #0f2744 45%, #0f766e 100%);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.teacher-banner::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.2);
  top: -80px;
  right: -40px;
}

.teacher-banner-content {
  position: relative;
  z-index: 1;
}

.teacher-banner .section-label {
  background: rgba(255, 122, 0, 0.15);
  color: #ff7a00;
}

.teacher-banner h2 {
  color: white;
  margin-bottom: 1rem;
}

.teacher-banner-content > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 1.35rem;
  max-width: 640px;
  line-height: 1.7;
}

.teacher-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.25rem;
  margin-bottom: 1.75rem;
}

.teacher-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.teacher-perks li::before {
  content: "★";
  color: #ff7a00;
  flex-shrink: 0;
}

.teacher-banner-visual {
  position: relative;
  z-index: 1;
  text-align: center;
}

.teacher-badge-big {
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 4rem;
  backdrop-filter: blur(8px);
  animation: float 4s ease-in-out infinite;
}

.teacher-banner-visual p {
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.enroll-teacher-note {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(249, 115, 22, 0.08));
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.25rem;
}

.enroll-teacher-note strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
  font-size: 0.98rem;
}

.enroll-teacher-note p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin: 0;
}

@media (max-width: 1024px) {
  .teacher-banner {
    grid-template-columns: 1fr;
  }
  .teacher-banner-visual {
    order: -1;
  }
  .teacher-badge-big {
    width: 100px;
    height: 100px;
    font-size: 2.8rem;
  }
  .teacher-perks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .track-detail {
    padding: 1.35rem;
  }
  .track-detail-header {
    flex-direction: column;
  }
  .teacher-banner {
    padding: 1.75rem 1.35rem;
  }
}


/* ---------- Learning modes ---------- */
.hero-mode-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.hero-mode-badges > span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
}

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

.mode-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.mode-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.mode-card.featured-mode {
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #ffffff 0%, #eef6f5 100%);
}

.mode-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.mode-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.mode-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1.15rem;
  line-height: 1.65;
}

.mode-pill {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .modes-grid {
    grid-template-columns: 1fr;
  }
}


/* ---------- Accelerated free courses ---------- */
.accel-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 40%, #eef6f5 100%);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
}

.accel-banner h2 {
  margin-bottom: 0.65rem;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accel-banner > div > p {
  color: var(--gray-700);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.65;
}

.accel-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.accel-points li {
  background: white;
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.accel-points li::before {
  content: "⚡";
  flex-shrink: 0;
}

.program-price {
  font-size: 0.92rem;
  color: var(--success);
}

@media (max-width: 768px) {
  .accel-banner {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .accel-points {
    grid-template-columns: 1fr;
  }
}


/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.35rem;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #25d366;
  color: white !important;
  padding: 0.75rem 1.05rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
  background: #1ebe57;
}

.wa-icon { font-size: 1.15rem; line-height: 1; }

@media (max-width: 480px) {
  .whatsapp-float .wa-text { display: none; }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    right: 1rem;
    bottom: 5.25rem;
  }
  .wa-icon { font-size: 1.4rem; }
}

/* Skip link accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}


/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin: 2rem 0 0.65rem;
  color: var(--primary-dark);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}


/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 960;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.08);
}

.mobile-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: var(--container);
  margin: 0 auto;
}

.mobile-cta-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mobile-cta-text strong {
  font-size: 0.88rem;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-cta-text span {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 600;
}

@media (max-width: 768px) {
  .mobile-cta { display: block; }
  .whatsapp-float { bottom: 5.75rem; }
  .back-top { bottom: 5.75rem; right: 4.75rem; }
  body { padding-bottom: 4.5rem; }
}

/* Print */
@media print {
  .header, .whatsapp-float, .back-top, .mobile-cta, .menu-toggle { display: none !important; }
  body { padding: 0; }
  a[href]::after { content: ""; }
}


.enroll-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.enroll-step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}
.enroll-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-hero);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.enroll-step p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .enroll-steps { grid-template-columns: 1fr 1fr; }
}


/* ---------- Diploma banner ---------- */
.diploma-banner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, #ecfdf5 0%, #eef6f5 45%, #f4fbfa 100%);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.diploma-banner::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.08);
  right: -60px;
  top: -60px;
}

.diploma-visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.diploma-seal {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 4rem;
  background: white;
  border: 4px solid #10b981;
  box-shadow:
    0 0 0 8px rgba(16, 185, 129, 0.15),
    0 15px 40px rgba(15, 23, 42, 0.12);
  animation: float 4s ease-in-out infinite;
}

.diploma-content {
  position: relative;
  z-index: 1;
}

.diploma-content .section-label {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.diploma-content h2 {
  margin-bottom: 0.85rem;
}

.diploma-content > p {
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 560px;
}

.diploma-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin-bottom: 1.15rem;
}

.diploma-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-800);
}

.diploma-points li::before {
  content: "🎓";
  flex-shrink: 0;
}

.diploma-note {
  font-weight: 700;
  color: #047857;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .diploma-banner {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.35rem;
    text-align: center;
  }
  .diploma-content > p {
    margin-inline: auto;
  }
  .diploma-points {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .diploma-seal {
    width: 110px;
    height: 110px;
    font-size: 2.8rem;
  }
}


/* Diploma photo */
.diploma-photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
  background: var(--gray-100);
}

.diploma-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.diploma-photo-wrap:hover .diploma-photo {
  transform: scale(1.04);
}

.diploma-photo-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.88rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.diploma-photo-badge span {
  font-size: 1.25rem;
}

.diploma-photo-badge strong {
  font-weight: 700;
  line-height: 1.3;
}

.diploma-visual .diploma-seal {
  display: none;
}

.enroll-grad-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.35rem;
  box-shadow: var(--shadow);
}

.enroll-grad-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.enroll-grad-photo span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(15,23,42,0.88));
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .diploma-photo {
    aspect-ratio: 16/11;
  }
}


/* ============================================================
   Student portal — library & videos
   ============================================================ */
.portal-body { background: #f8fafc; }
.portal-main { padding-top: var(--header-h); min-height: 100vh; }

.login-section { padding-top: calc(var(--header-h) + 2.5rem); }
.login-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}
.login-intro h1 { margin-bottom: 1rem; }
.login-perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.login-perks li {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}
.login-help { color: var(--gray-600); margin-bottom: 1rem; max-width: 480px; }

.login-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.login-card h2 { margin-bottom: 0.35rem; }
.login-card > p { color: var(--gray-600); font-size: 0.92rem; margin-bottom: 1.25rem; }
.login-error {
  background: #fff7ed;
  color: #0b6b69;
  border: 1px solid #ffd4a8;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.login-demo {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--gray-200);
  text-align: center;
}
.login-demo p { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 0.5rem; }
.login-demo-pass { margin-top: 0.5rem; font-size: 0.82rem; color: var(--gray-500); }
.login-demo-pass code {
  background: var(--gray-100);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  color: var(--primary);
  font-weight: 700;
}
.login-wa { margin-top: 1rem; text-align: center; font-size: 0.88rem; }
.login-wa a { color: #128c7e; font-weight: 600; }

.portal-hero {
  background: linear-gradient(135deg, #0f2744 0%, #0f766e 50%, #0d9488 100%);
  color: white;
  padding: 2.5rem 0 1.5rem;
}
.portal-hero h1 { color: white; margin-bottom: 0.5rem; }
.portal-hero p { color: rgba(255,255,255,0.88); max-width: 560px; }
.portal-hero .section-label {
  background: rgba(255,255,255,0.14);
  color: #ffb366;
}
.portal-hero-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.portal-user-card {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 0.9rem 1.1rem;
  backdrop-filter: blur(8px);
  min-width: 220px;
}
.portal-avatar {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center; font-size: 1.4rem;
}
.portal-user-card strong { display: block; color: white; text-transform: capitalize; }
.portal-user-card span { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.8); }
.portal-user-card small { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.65); }

.portal-tabs { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.portal-tab {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.portal-tab:hover, .portal-tab.active {
  background: white;
  color: var(--primary);
}

.student-chip {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  text-transform: capitalize;
}

.portal-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}
.portal-search {
  min-width: min(100%, 280px);
  padding: 0.7rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  background: white;
  color: var(--dark);
}
.portal-search:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110,0.12);
}
.portal-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray-500);
  padding: 2rem;
}

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

.ebook-card, .video-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.ebook-card:hover, .video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ebook-cover {
  height: 130px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #eef6f5, #e6f5f4);
}
.ebook-body, .video-body { padding: 1.15rem; display: flex; flex-direction: column; flex: 1; }
.ebook-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 0.45rem;
}
.ebook-body h3, .video-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.ebook-body > p, .video-body > p {
  color: var(--gray-600);
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
  flex: 1;
}
.ebook-meta {
  display: flex;
  gap: 0.85rem;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-bottom: 0.9rem;
  font-weight: 600;
}

/* Reader modal */
.reader-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.reader-modal[hidden] { display: none !important; }
.reader-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
}
.reader-panel {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(90vh, 900px);
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.reader-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.reader-top h2 { font-size: 1.05rem; }
.reader-close {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gray-200); font-size: 1.4rem; line-height: 1;
  color: var(--dark);
}
.reader-close:hover { background: var(--gray-300); }
.reader-scroll {
  padding: 1.5rem;
  overflow: auto;
}
.reader-hero {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-100);
}
.reader-cover {
  width: 84px; height: 84px; border-radius: 18px;
  display: grid; place-items: center; font-size: 2.4rem;
  background: linear-gradient(135deg, #eef6f5, #e6f5f4);
  flex-shrink: 0;
}
.reader-kicker { font-size: 0.8rem; color: var(--primary); font-weight: 700; margin-bottom: 0.35rem; }
.reader-author { color: var(--gray-500); font-size: 0.9rem; margin-top: 0.25rem; }
.reader-chapter { margin-bottom: 1.35rem; }
.reader-chapter h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.reader-chapter p, .reader-chapter li { color: var(--gray-700); line-height: 1.75; margin-bottom: 0.65rem; }
.reader-chapter ul { padding-left: 1.2rem; list-style: disc; }
.reader-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }

/* Videos */
.video-thumb {
  position: relative;
  height: 160px;
  width: 100%;
  background: linear-gradient(135deg, #0f172a, #0f2744 60%, #0d9488);
  display: grid;
  place-items: center;
  cursor: pointer;
  border: none;
  color: white;
}
.video-thumb-emoji { font-size: 3rem; opacity: 0.9; }
.video-play {
  position: absolute;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  display: grid; place-items: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.video-card:hover .video-play { transform: scale(1.08); }
.video-duration {
  position: absolute;
  right: 0.65rem; bottom: 0.65rem;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.video-player-panel {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.video-player-panel[hidden] { display: none !important; }
.video-stage { background: #0b1220; min-height: 320px; }
.video-stage-inner {
  position: relative;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.video-stage-bg {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 6rem; opacity: 0.25;
}
.video-stage-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: white; text-align: center; gap: 0.5rem;
  padding: 1rem; z-index: 1;
}
.video-big-play {
  width: 72px; height: 72px; border-radius: 50%;
  background: white; color: var(--primary);
  font-size: 1.4rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  margin-bottom: 0.5rem;
}
.video-stage-center small { opacity: 0.7; font-size: 0.8rem; max-width: 280px; }
.video-progress {
  height: 4px; background: rgba(255,255,255,0.15); position: relative; z-index: 2;
}
.video-progress i {
  display: block; height: 100%;
  background: linear-gradient(90deg, #f97316, #0f766e);
}
.video-controls-bar {
  display: flex; gap: 0.85rem; align-items: center;
  padding: 0.65rem 0.85rem;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  position: relative; z-index: 2;
}
.video-controls-bar button {
  color: white; font-size: 0.9rem; width: 28px;
}
.video-meta { padding: 1.35rem; }
.video-meta h2 { font-size: 1.2rem; margin: 0.4rem 0 0.65rem; }
.video-meta > p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.65; }
.video-meta-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  align-items: center; justify-content: space-between;
  font-weight: 600; color: var(--gray-600); font-size: 0.9rem;
}

/* Home student access band */
.student-access {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, #0f2744, #0f766e 55%, #0d9488);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  color: white;
  box-shadow: var(--shadow-lg);
}
.student-access h2 { color: white; margin-bottom: 0.65rem; }
.student-access p { color: rgba(255,255,255,0.88); margin-bottom: 1.25rem; max-width: 480px; }
.student-access-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.student-access-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.student-mini-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 1.15rem;
  text-align: center;
  color: white;
  transition: all var(--transition);
}
.student-mini-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}
.student-mini-card .ico { font-size: 1.8rem; margin-bottom: 0.45rem; }
.student-mini-card strong { display: block; font-size: 0.92rem; }

@media (max-width: 1024px) {
  .login-grid, .video-player-panel, .student-access { grid-template-columns: 1fr; }
  .ebooks-grid, .videos-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ebooks-grid, .videos-grid, .student-access-cards { grid-template-columns: 1fr; }
  .student-chip span { display: none; }
  .portal-toolbar { flex-direction: column; align-items: stretch; }
  .portal-search { min-width: 0; width: 100%; }
}


.reader-pdf-wrap { margin-bottom: 1.25rem; }
.reader-pdf {
  width: 100%;
  height: min(65vh, 640px);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--gray-100);
  margin-bottom: 0.75rem;
}
.video-iframe {
  width: 100%;
  height: min(52vh, 420px);
  border: 0;
  display: block;
  background: #000;
}

.price-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 0.25rem;
}
.price-badge.free { background: rgba(16,185,129,0.15); color: #047857; }
.price-badge.paid { background: rgba(249,115,22,0.15); color: #c2410c; }
.ebook-card.is-locked, .video-card.is-locked { opacity: 0.72; }


/* ---------- Brand logo (vivid, crisp) ---------- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}
.logo-img {
  height: 52px;
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
  display: block;
  image-rendering: auto;
  -webkit-user-drag: none;
}
.logo-img.sm { height: 42px; max-width: 160px; }
.logo-img.lg { height: 72px; max-width: 280px; }

.header .logo-img {
  height: 54px;
  max-width: 230px;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-flex;
}
.footer-brand .logo-img {
  height: 56px;
  max-width: 240px;
}

/* Fallback mark if image missing */
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f766e, #0d9488);
  display: none; /* real logo used */
  place-items: center;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.35);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .logo-img, .header .logo-img {
    height: 44px;
    max-width: 170px;
  }
  .footer-brand .logo-img {
    height: 48px;
  }
}



/* Full-width accelerated courses banner in hero */
.hero-accel-banner {
  display: block;
  width: 100%;
  max-width: none;
  margin: 1.15rem 0 1.35rem;
  padding: 0.95rem 1.25rem;
  text-align: center;
  font-size: clamp(1.05rem, 2.8vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f2744;
  background: linear-gradient(90deg, #ff7a00 0%, #ffb366 35%, #5eead4 70%, #0d9488 100%);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.35);
  border: 2px solid rgba(255,255,255,0.55);
  line-height: 1.25;
}

.hero-tagline-teal {
  display: block;
  margin: 0.85rem 0 0.35rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 800;
  color: #5eead4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badge {
  display: none; /* replaced by full-width accel banner */
}

.hero h1 {
  margin-bottom: 0.35rem;
}

.hero-lead {
  margin-top: 0.5rem;
}

/* Stronger teal presence in hero overlays */
.hero::before {
  background:
    radial-gradient(circle at 18% 75%, rgba(255, 122, 0, 0.28) 0%, transparent 42%),
    radial-gradient(circle at 85% 20%, rgba(45, 212, 191, 0.35) 0%, transparent 38%),
    radial-gradient(circle at 55% 60%, rgba(13, 148, 136, 0.3) 0%, transparent 45%) !important;
}

.section-label {
  color: var(--brand-teal-dark);
  background: rgba(13, 148, 136, 0.12);
}
.section-label::before {
  background: var(--brand-orange);
}

.btn-primary {
  background: var(--gradient-warm);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.45);
}

.nav a:hover,
.nav a.active {
  color: var(--brand-teal-dark);
  background: rgba(13, 148, 136, 0.1);
}

.lang-switch button.active {
  color: var(--brand-teal-dark);
}

.author-avatar {
  background: var(--gradient-cool);
}
.author-avatar.o { background: var(--gradient-warm); }
.author-avatar.c { background: var(--gradient-cool); }

.course-icon.ai { background: rgba(13, 148, 136, 0.45) !important; }
.course-icon.biz { background: rgba(255, 122, 0, 0.4) !important; }
.course-icon.job { background: rgba(15, 118, 110, 0.35) !important; }
.course-icon.code { background: rgba(45, 212, 191, 0.4) !important; }

.hero-card-avatar {
  background: var(--gradient-warm) !important;
}

.floating-badge {
  border-left: 4px solid var(--brand-teal);
}

.track-detail[data-track="ai"] { border-left-color: #148f8c; }
.track-detail[data-track="oratory"] { border-left-color: #ff7a00; }
.track-detail[data-track="lang"] { border-left-color: #0f766e; }
.track-detail[data-track="biz"] { border-left-color: #ff7a00; }
.track-detail[data-track="job"] { border-left-color: #0b6b69; }
.track-detail[data-track="edu"] { border-left-color: #357e84; }

.track-accent-ai { background: rgba(13, 148, 136, 0.15) !important; }
.track-accent-oratory { background: rgba(15, 118, 110, 0.15) !important; }
.track-accent-lang { background: rgba(20, 184, 166, 0.15) !important; }
.track-accent-biz { background: rgba(255, 122, 0, 0.15) !important; }
.track-accent-job { background: rgba(15, 118, 110, 0.15) !important; }
.track-accent-edu { background: rgba(11, 107, 105, 0.15) !important; }

.teacher-banner {
  background: linear-gradient(135deg, #0f2744 0%, #0f766e 50%, #0d9488 100%) !important;
}
.student-access {
  background: linear-gradient(135deg, #0f2744, #0f766e 55%, #14b8a6) !important;
}
.portal-hero {
  background: linear-gradient(135deg, #0f2744 0%, #0f766e 50%, #0d9488 100%) !important;
}
.page-hero {
  background: var(--gradient-hero) !important;
}
.newsletter {
  background: var(--gradient-hero) !important;
}
.cta-banner {
  background: var(--dark) !important;
}
.cta-banner::before {
  background:
    radial-gradient(circle at 30% 50%, rgba(13, 148, 136, 0.45) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 122, 0, 0.28) 0%, transparent 45%) !important;
}

.blog-thumb.t1 { background: linear-gradient(135deg, #ccfbf1, #99f6e4) !important; }
.blog-thumb.t2 { background: linear-gradient(135deg, #ffedd5, #fed7aa) !important; }
.blog-thumb.t3 { background: linear-gradient(135deg, #eef6f5, #b8e0dc) !important; }

.accel-banner {
  background: linear-gradient(135deg, #fff7ed 0%, #ccfbf1 45%, #f0fdfa 100%) !important;
  border-color: rgba(13, 148, 136, 0.3) !important;
}
.accel-banner h2 {
  background: linear-gradient(90deg, #0f766e, #ff7a00) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.diploma-banner {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdfa 50%, #fff7ed 100%) !important;
  border-color: rgba(13, 148, 136, 0.28) !important;
}

.pricing-card.featured {
  background: var(--gradient-hero) !important;
}

@media (max-width: 768px) {
  .hero-accel-banner {
    font-size: 1.05rem;
    padding: 0.85rem 0.75rem;
    letter-spacing: 0.04em;
  }
}


/* Hero spacing — teal tagline, title, full-width accel banner */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero-tagline-teal {
  order: 0;
  margin: 0 0 0.35rem !important;
  color: #5eead4 !important;
  text-shadow: 0 2px 18px rgba(45, 212, 191, 0.35);
}
.hero-content > h1 {
  order: 1;
  margin: 0.25rem 0 0 !important;
}
.hero-content > h1 .highlight {
  display: block;
  margin-top: 0.45rem !important;
  margin-bottom: 0.15rem;
  color: #5eead4 !important;
  -webkit-text-fill-color: #5eead4 !important;
  background: none !important;
  font-size: 1.05em;
}
.hero-accel-banner {
  order: 2;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  margin: 1.35rem 0 1.15rem !important;
  align-self: stretch;
}
.hero-lead { order: 3; }
.hero-cta { order: 4; }
.hero-mode-badges { order: 5; }
.hero-stats { order: 6; }

/* Kill any remaining purple-looking gradients on cards */
.team-avatar,
.hero-card-avatar {
  background: linear-gradient(135deg, #ff7a00, #ff9f1a) !important;
}


/* ============================================================
   CHARTE STRICTE MOLAKISI — teal, orange, navy, blanc UNIQUEMENT
   ============================================================ */
:root {
  --accent-2: #ff7a00 !important;
}

.hero {
  background: linear-gradient(135deg, #0b6b69 0%, #0f766e 45%, #148f8c 100%) !important;
}
.hero::before {
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 122, 0, 0.28) 0%, transparent 42%),
    radial-gradient(circle at 85% 18%, rgba(180, 224, 220, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(11, 107, 105, 0.25) 0%, transparent 50%) !important;
}

.hero-tagline-teal {
  color: #b8e0dc !important;
  text-shadow: 0 2px 16px rgba(11, 107, 105, 0.35);
}
.hero h1 .highlight,
.hero-content > h1 .highlight {
  color: #b8e0dc !important;
  -webkit-text-fill-color: #b8e0dc !important;
  background: none !important;
  text-shadow: 0 0 28px rgba(184, 224, 220, 0.35);
}

.hero-accel-banner {
  background: linear-gradient(90deg, #ff7a00 0%, #ffb366 40%, #b8e0dc 72%, #0f766e 100%) !important;
  color: #0f2744 !important;
  border-color: rgba(255,255,255,0.65) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7a00, #ff9a33) !important;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.35) !important;
}
.btn-outline {
  color: #0f766e !important;
  border-color: #0f766e !important;
}
.btn-outline:hover {
  background: #0f766e !important;
  color: #fff !important;
}

.section-label {
  color: #0b6b69 !important;
  background: rgba(15, 118, 110, 0.12) !important;
}
.section-label::before { background: #ff7a00 !important; }

.nav a:hover, .nav a.active {
  color: #0b6b69 !important;
  background: rgba(15, 118, 110, 0.1) !important;
}
.lang-switch button.active { color: #0b6b69 !important; }

.course-icon.ai { background: rgba(15, 118, 110, 0.45) !important; }
.course-icon.biz { background: rgba(255, 122, 0, 0.4) !important; }
.course-icon.job { background: rgba(20, 143, 140, 0.4) !important; }
.course-icon.code { background: rgba(53, 126, 132, 0.45) !important; }

.hero-card-avatar,
.team-avatar,
.author-avatar {
  background: linear-gradient(135deg, #0f766e, #148f8c) !important;
}
.author-avatar.o { background: linear-gradient(135deg, #ff7a00, #ff9a33) !important; }
.author-avatar.c { background: linear-gradient(135deg, #0b6b69, #357e84) !important; }

.track-detail[data-track="lang"] { border-left-color: #0f766e !important; }
.track-detail[data-track="oratory"] { border-left-color: #ff7a00 !important; }
.track-detail[data-track="ai"] { border-left-color: #148f8c !important; }
.track-detail[data-track="biz"] { border-left-color: #ff7a00 !important; }
.track-detail[data-track="job"] { border-left-color: #0b6b69 !important; }
.track-detail[data-track="edu"] { border-left-color: #357e84 !important; }

.track-accent-lang { background: rgba(15, 118, 110, 0.14) !important; }
.track-accent-oratory { background: rgba(255, 122, 0, 0.14) !important; }
.track-accent-ai { background: rgba(20, 143, 140, 0.14) !important; }
.track-accent-biz { background: rgba(255, 122, 0, 0.14) !important; }
.track-accent-job { background: rgba(11, 107, 105, 0.14) !important; }
.track-accent-edu { background: rgba(53, 126, 132, 0.14) !important; }

.program-thumb.ai { background: linear-gradient(135deg, #0b6b69, #148f8c) !important; }
.program-thumb.biz { background: linear-gradient(135deg, #e56e00, #ff7a00) !important; }
.program-thumb.job { background: linear-gradient(135deg, #0f766e, #5aabb0) !important; }
.program-thumb.code { background: linear-gradient(135deg, #0b6b69, #357e84) !important; }
.program-thumb.edu { background: linear-gradient(135deg, #0f766e, #ff7a00) !important; }
.program-thumb.lang { background: linear-gradient(135deg, #0b6b69, #148f8c) !important; }

.blog-thumb.t1 { background: linear-gradient(135deg, #eef6f5, #b8e0dc) !important; }
.blog-thumb.t2 { background: linear-gradient(135deg, #fff7ed, #ffd4a8) !important; }
.blog-thumb.t3 { background: linear-gradient(135deg, #e6f5f4, #a8d5d2) !important; }

.page-hero,
.portal-hero,
.newsletter,
.pricing-card.featured {
  background: linear-gradient(135deg, #0b6b69 0%, #0f766e 50%, #148f8c 100%) !important;
}
.teacher-banner,
.student-access {
  background: linear-gradient(135deg, #0f2744 0%, #0b6b69 45%, #0f766e 100%) !important;
}
.cta-banner {
  background: #0f2744 !important;
}
.cta-banner::before {
  background:
    radial-gradient(circle at 30% 50%, rgba(15, 118, 110, 0.45) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 122, 0, 0.25) 0%, transparent 45%) !important;
}

.accel-banner {
  background: linear-gradient(135deg, #fff7ed 0%, #eef6f5 50%, #f4fbfa 100%) !important;
  border-color: rgba(15, 118, 110, 0.28) !important;
}
.accel-banner h2 {
  background: linear-gradient(90deg, #0b6b69, #ff7a00) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.diploma-banner {
  background: linear-gradient(135deg, #eef6f5 0%, #f4fbfa 55%, #fff7ed 100%) !important;
  border-color: rgba(15, 118, 110, 0.28) !important;
}
.diploma-seal {
  border-color: #0f766e !important;
  box-shadow: 0 0 0 8px rgba(15, 118, 110, 0.15), 0 15px 40px rgba(15, 39, 68, 0.12) !important;
}
.diploma-note { color: #0b6b69 !important; }

.price-badge.free { background: rgba(15, 118, 110, 0.15) !important; color: #0b6b69 !important; }
.price-badge.paid { background: rgba(255, 122, 0, 0.15) !important; color: #e56e00 !important; }

.whatsapp-float {
  /* WhatsApp green is product UI — keep functional but close to teal brand */
  background: #0f766e !important;
  box-shadow: 0 10px 25px rgba(15, 118, 110, 0.4) !important;
}
.whatsapp-float:hover { background: #0b6b69 !important; }

.faq-item.active { border-color: #5aabb0 !important; }
.faq-item.active .faq-icon { background: #0f766e !important; }

.stat-item .stat-num,
.program-price {
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: #0f766e !important;
}
.stat-item .stat-num {
  background: linear-gradient(135deg, #0b6b69, #ff7a00) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.back-top { background: #0f766e !important; }
.back-top:hover { background: #0b6b69 !important; }

.login-error,
.flash.err {
  background: rgba(255, 122, 0, 0.1) !important;
  border-color: rgba(255, 122, 0, 0.35) !important;
  color: #e56e00 !important;
}


/* ==== CACHE BUST BRAND FORCE v5 — teal only, no purple ==== */
html body .hero,
html body section.hero,
.hero {
  background: #0f766e !important;
  background-image: linear-gradient(145deg, #0b6b69 0%, #0f766e 38%, #148f8c 100%) !important;
  background-color: #0f766e !important;
}
html body .hero::before {
  background:
    radial-gradient(circle at 18% 78%, rgba(255, 122, 0, 0.30) 0%, transparent 42%),
    radial-gradient(circle at 88% 16%, rgba(184, 224, 220, 0.28) 0%, transparent 38%),
    radial-gradient(circle at 50% 55%, rgba(11, 107, 105, 0.22) 0%, transparent 48%) !important;
}
html body .page-hero,
html body .portal-hero,
html body .newsletter,
html body .pricing-card.featured {
  background: linear-gradient(145deg, #0b6b69 0%, #0f766e 50%, #148f8c 100%) !important;
}
html body .teacher-banner,
html body .student-access,
html body .cta-banner {
  background: #0f2744 !important;
}
html body .cta-banner::before {
  background:
    radial-gradient(circle at 30% 50%, rgba(15, 118, 110, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 72% 50%, rgba(255, 122, 0, 0.28) 0%, transparent 45%) !important;
}
html body .hero-accel-banner {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 1.25rem 0 1.1rem !important;
  padding: 1rem 1.1rem !important;
  text-align: center !important;
  font-size: clamp(1.1rem, 3vw, 1.6rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  color: #0f2744 !important;
  background: linear-gradient(90deg, #ff7a00 0%, #ffb366 38%, #b8e0dc 70%, #0f766e 100%) !important;
  border-radius: 14px !important;
  border: 2px solid rgba(255,255,255,0.7) !important;
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.35) !important;
}
html body .hero-tagline-teal {
  color: #b8e0dc !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin: 0 0 0.5rem !important;
}
html body .hero h1 .highlight {
  color: #b8e0dc !important;
  -webkit-text-fill-color: #b8e0dc !important;
  background: none !important;
  background-image: none !important;
}
html body .btn-primary {
  background: linear-gradient(135deg, #ff7a00, #ff9a33) !important;
  border-color: transparent !important;
}
html body .whatsapp-float {
  background: #0f766e !important;
}
html body .reader-cover,
html body .ebook-cover {
  background: linear-gradient(135deg, #eef6f5, #b8e0dc) !important;
}
html body .video-thumb {
  background: linear-gradient(135deg, #0f2744, #0b6b69 55%, #0f766e) !important;
}


/* Logo size v5 — bigger + teal logo asset */
html body .header .logo-img,
html body .logo-img {
  height: 68px !important;
  max-width: min(280px, 70vw) !important;
  width: auto !important;
}
html body .footer-brand .logo-img {
  height: 72px !important;
  max-width: 300px !important;
}
@media (max-width: 480px) {
  html body .header .logo-img,
  html body .logo-img {
    height: 54px !important;
    max-width: 200px !important;
  }
}
