﻿:root {
  --bg: #f6f9f7;
  --surface: #ffffff;
  --surface-soft: #eef5f1;
  --ink: #0f211e;
  --muted: #52645f;
  --line: #d4e0da;
  --brand: #0d7b70;
  --brand-dark: #0a5f57;
  --brand-light: #138a7d;
  --accent: #f39c12;
  --accent-soft: #ffe7bf;
  --shadow: 0 14px 34px rgba(20, 51, 45, 0.11);
  --shadow-sm: 0 4px 12px rgba(20, 51, 45, 0.08);
  --shadow-lg: 0 24px 48px rgba(20, 51, 45, 0.15);
  --radius-btn: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --app-height: 100vh;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 88% 12%, #d9efe8 0%, transparent 30%),
    radial-gradient(circle at 12% 24%, #fdeed1 0%, transparent 22%),
    var(--bg);
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.15;
  z-index: -1;
}

.container { width: min(1140px, 92%); margin: auto; }

.header,
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 249, 247, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 123, 112, 0.14);
}

.top-strip {
  background: #113b35;
  color: #e8f4f1;
  font-size: 0.9rem;
}

.strip-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.strip-inner p { margin: 0; }
.strip-inner a { color: #fff; font-weight: 600; text-decoration: none; }
#batchCountdown { color: #ffe7a8; font-weight: 700; }

.nav-container,
.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
}

.logo,
.brand {
  text-decoration: none;
  color: var(--ink);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 1.34rem;
  letter-spacing: -0.02em;
}
.logo span,
.brand span { color: var(--brand); }

.nav { display: flex; flex-wrap: wrap; gap: 8px; }
.nav a {
  text-decoration: none;
  color: #243833;
  padding: 7px 10px;
  border-radius: 9px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav a:hover,
.nav a.active { 
  background: #e6f3ef; 
  color: #0b524a;
}

.nav a:hover::before,
.nav a.active::before {
  width: calc(100% - 20px);
}

.nav:hover a.active:not(:hover) {
  background: transparent;
  color: #243833;
}

.nav:hover a.active:not(:hover)::before {
  width: 0;
}

.mega-menu {
  position: static;
  display: inline-flex;
}
.mega-trigger::after {
  content: " \25BE";
  font-size: 0.78rem;
}
.mega-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(980px, calc(100vw - 28px));
  max-height: min(78vh, 640px);
  overflow: auto;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  z-index: 80;
  backdrop-filter: blur(10px);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.mega-catalog {
  grid-template-columns: 230px 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.mega-side {
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-right: 1px solid #d4e2dc;
  background: linear-gradient(180deg, #f4faf7 0%, #eef6f2 100%);
}

.mega-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  font-weight: 600;
  padding: 9px 10px;
  color: #2b4540;
}

.mega-cat::after {
  content: "\203A";
  font-size: 1rem;
  color: #688a83;
}

.mega-cat.active,
.mega-cat:hover {
  background: #deefe9;
  color: #114f46;
}

.mega-cat:focus-visible {
  outline: 2px solid rgba(17, 94, 82, 0.35);
  outline-offset: 1px;
}

.mega-main {
  padding: 14px 16px 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mega-main .mega-col {
  min-width: 0;
}

.mega-main .mega-col h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.mega-main .mega-col a {
  margin-bottom: 6px;
  padding: 7px 8px;
  border-radius: 8px;
  line-height: 1.35;
  word-break: break-word;
}

.mega-all {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.mega-all .btn-primary {
  min-height: 40px;
  padding: 9px 18px;
}

/* Hover bridge keeps mega menu open while moving cursor from trigger to panel. */
.mega-panel::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
}
.mega-col h4 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
}
.mega-col a {
  display: block;
  margin-bottom: 6px;
  border-radius: 8px;
  padding: 6px 8px;
}
.mega-menu:hover .mega-panel,
.mega-menu:focus-within .mega-panel,
.mega-menu.mega-open .mega-panel {
  display: grid;
}

.about-panel {
  width: min(360px, calc(100vw - 28px));
  padding: 0;
  display: none;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.about-menu-inner {
  display: grid;
  background: #ffffff;
}

.about-menu-inner a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px 22px;
  border-bottom: 1px solid #e6eeea;
  color: #183a35;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.about-menu-inner a:last-child {
  border-bottom: 0;
}

.about-menu-inner a:hover,
.about-menu-inner a:focus-visible {
  background: #eef6f3;
  color: #0d6c62;
  outline: none;
}

.about-trigger::after {
  content: " \25BE";
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  border: 1px solid #b7cbc6;
  border-radius: 9px;
  background: #fff;
  padding: 8px 12px;
  font-weight: 600;
}

.cta,
.btn,
.btn-primary,
.btn-outline {
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta::before,
.btn::before,
.btn-primary::before,
.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta,
.btn-primary {
  background: linear-gradient(135deg, #0f857a 0%, #0a655d 100%);
  color: #f8fffd;
  border: 1px solid #0a655d;
  box-shadow: var(--shadow);
}

.cta { padding: 10px 16px; }
.btn-outline {
  color: #123a34;
  border: 1px solid #94b4ad;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.cta:hover,
.btn:hover,
.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta:hover::before,
.btn:hover::before,
.btn-primary:hover::before,
.btn-outline:hover::before {
  opacity: 1;
}

.cta:focus-visible,
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(15, 133, 122, 0.28);
  outline-offset: 2px;
}

.cta:active,
.btn:active,
.btn-primary:active,
.btn-outline:active {
  transform: translateY(0);
}

.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  right: -120px;
  top: -110px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,123,112,.23), rgba(13,123,112,0) 70%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr 360px;
  gap: 24px;
  align-items: center;
}
.hero-dark .hero-grid {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-left h1,
.page-hero h1 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 3.9vw, 3.3rem);
}
.hero-eyebrow,
.eyebrow,
.kicker {
  margin: 0 0 14px;
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid #ffd59a;
  color: #865300;
  font-weight: 700;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-sub,
.page-hero p { color: #274741; max-width: 64ch; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -4px;
  margin-bottom: 16px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stats div {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
}
.stats h2 { margin: 0; font-family: "Sora", sans-serif; }
.stats p { margin: 4px 0 0; color: var(--muted); }

.hero-image img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-card,
.form-wrap,
.schedule-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.hero-card h3 { margin-top: 0; font-family: "Sora", sans-serif; }
.hero-card input,
.hero-card select,
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cad9d3;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fbfffd;
}
.form-step { display: none; }
.form-step.active { display: block; }
.form-step-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.form-next,
.form-prev { width: 100%; }

.section,
.page-hero { padding: 80px 0; }
.page-hero { padding-top: 60px; }
.section-soft {
  background: linear-gradient(180deg, #f9fcfb 0%, #f4faf7 100%);
  border-top: 1px solid rgba(13, 123, 112, 0.08);
  border-bottom: 1px solid rgba(13, 123, 112, 0.08);
}
.hero-dark {
  background: linear-gradient(135deg, #0a5f57 0%, #0d7b70 50%, #138a7d 100%);
  color: #eef8f5;
  padding: 80px 0 80px !important;
  position: relative;
  overflow: hidden;
}

.hero-dark::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.hero-dark::after {
  content: "";
  position: absolute;
  left: -280px;
  bottom: -180px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  z-index: 0;
  animation: float 7s ease-in-out infinite reverse;
}

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

.hero-dark .container { position: relative; z-index: 1; }
.hero-dark h1 { color: white; }
.hero-dark p { color: #c8ddd7; }
.eyebrow-light {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.3) !important;
  color: #e8f4f1 !important;
}
.hero-left { flex: 1; }
.hero-visual-badge {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.badge-circle { 
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.3));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.meta-card-light {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(255,255,255,0.25) !important;
  color: #eef8f5 !important;
}
.meta-card-light strong { color: #fff; }
.hero-trust {
  color: #a8d4cc;
  font-weight: 600;
  margin-top: 10px !important;
}
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
}
.section-soft { background: rgba(255,255,255,.5); }
.section { position: relative; }
.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13,123,112,0.23), transparent);
}
.section-title,
.section-head h2,
.section h2 {
  margin: 0 0 28px;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0a5f57 0%, #0d7b70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition);
}

.section-title:hover,
.section-head h2:hover,
.section h2:hover {
  -webkit-text-fill-color: #0d7b70;
}

.section-head { text-align: center; margin-bottom: 12px; }
.track-header { margin-bottom: 32px; }
.track-header h2 {
  margin: 0 0 12px;
  text-align: left;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--ink);
}
.track-header p { margin: 0; color: var(--muted); text-align: left; }

.course-controls-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
}

.course-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-pills,
.sort-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill,
.sort-btn {
  border: 1px solid #bfd3cb;
  background: #ffffff;
  color: #1f4b43;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.filter-pill::before,
.sort-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(13, 123, 112, 0.1), rgba(13, 123, 112, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.filter-pill:hover,
.sort-btn:hover {
  border-color: #1f7669;
  background: #e7f4f0;
  color: #0f5f54;
  box-shadow: 0 4px 12px rgba(31, 118, 105, 0.15);
}

.filter-pill:hover::before,
.sort-btn:hover::before {
  opacity: 1;
}

.filter-pill.active,
.sort-btn.active {
  border-color: #1f7669;
  background: linear-gradient(135deg, #1f7669 0%, #15635c 100%);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.filter-pill.active::before,
.sort-btn.active::before {
  opacity: 1;
}

.sort-cta span {
  font-size: 0.82rem;
  color: #607772;
  font-weight: 700;
}

.best-role-chip {
  border-color: #c8dde0;
  background: #eef7f8;
  color: #2d5f67;
}

.course-card-item.is-hidden {
  display: none;
}

.logos { padding: 34px 0 44px; }
.logos h3 { margin: 0 0 18px; text-align: center; font-family: "Sora", sans-serif; }

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 auto 18px;
}

.proof-pill {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #cfded7;
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
}

.proof-pill strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  color: #1e4f46;
}

.proof-pill span {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: #5f746e;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 14px;
}
.logo-pill {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 8px;
  padding: 14px 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: #1b433d;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
  color: #1b433d;
}

.logo-pill:nth-child(1) { background: #f8fcfa; border-color: #cfe2d9; }
.logo-pill:nth-child(2) { background: #f7fbfd; border-color: #cfdeeb; }
.logo-pill:nth-child(3) { background: #fbfafd; border-color: #ddd5ec; }
.logo-pill:nth-child(4) { background: #fdfaf7; border-color: #ecdccf; }
.logo-pill:nth-child(5) { background: #f7fcfb; border-color: #cfe7df; }

.logo-pill:hover {
  transform: translateY(-3px);
  border-color: #b6cec5;
  box-shadow: 0 10px 20px rgba(23, 61, 54, 0.12);
}

.logo-pill:focus-visible {
  outline: 3px solid rgba(38, 130, 115, 0.35);
  outline-offset: 2px;
}

.logo-pill-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1d7468, #34a193);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(24, 84, 73, 0.2);
  transition: transform .2s ease;
}

.logo-pill:nth-child(1) .logo-pill-icon { background: linear-gradient(135deg, #1d7468, #34a193); }
.logo-pill:nth-child(2) .logo-pill-icon { background: linear-gradient(135deg, #1f5f8d, #3d8fbe); }
.logo-pill:nth-child(3) .logo-pill-icon { background: linear-gradient(135deg, #64428b, #9268b8); }
.logo-pill:nth-child(4) .logo-pill-icon { background: linear-gradient(135deg, #8b5a2d, #c1864c); }
.logo-pill:nth-child(5) .logo-pill-icon { background: linear-gradient(135deg, #1b7463, #2f9f87); }

.logo-pill:hover .logo-pill-icon {
  transform: scale(1.08) rotate(-4deg);
}

.logo-pill-icon svg {
  width: 20px;
  height: 20px;
}

.logo-pill-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  line-height: 1.25;
  font-weight: 700;
  color: #1f4740;
}

.logo-pill-sub {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.42;
  color: #617670;
}

.logos-cta {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.grid-3,
.grid-4,
.courses,
.path-grid,
.testimonials,
.features,
.footer-inner,
.footer-grid {
  display: grid;
  gap: 18px;
}

.grid-3,
.grid-4,
.path-grid,
.courses,
.testimonials,
.features,
.portal-grid {
  align-items: stretch;
}
.grid-3,
.courses,
.testimonials,
.features,
.footer-inner,
.footer-grid { grid-template-columns: repeat(3,1fr); }

.footer .footer-inner > div:nth-child(2) p,
.footer .footer-grid > div:nth-child(2) p {
  margin: 0;
}

.footer .footer-inner > div:nth-child(2) p a,
.footer .footer-grid > div:nth-child(2) p a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer .footer-inner > div:nth-child(2) p a:last-child,
.footer .footer-grid > div:nth-child(2) p a:last-child {
  margin-bottom: 0;
}

.footer .footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer .footer-link-list a {
  text-decoration: none;
}

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

.card,
.course,
.path-item,
.testimonial,
.features div,
.meta-card,
.table-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.grid-3 > .card,
.grid-3 > .course,
.grid-3 > .path-item,
.grid-3 > .testimonial,
.grid-4 > .card,
.grid-4 > .course,
.grid-4 > .path-item,
.grid-4 > .testimonial,
.path-grid > .path-item,
.courses > .course,
.testimonials > .testimonial,
.features > div,
.portal-grid > .portal-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.grid-3 > .card > a:last-child,
.grid-3 > .course > a:last-child,
.grid-3 > .path-item > a:last-child,
.grid-3 > .testimonial > a:last-child,
.grid-4 > .card > a:last-child,
.grid-4 > .course > a:last-child,
.grid-4 > .path-item > a:last-child,
.grid-4 > .testimonial > a:last-child,
.path-grid > .path-item > a:last-child,
.courses > .course > a:last-child,
.testimonials > .testimonial > a:last-child,
.features > div > a:last-child {
  margin-top: auto;
  align-self: flex-start;
}

.card:hover,
.course:hover,
.path-item:hover,
.testimonial:hover,
.features div:hover {
  border-color: rgba(13, 123, 112, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.card,
.course,
.path-item,
.testimonial,
.features div { padding: 16px; }
.card h3,
.course h3,
.path-item h3,
.features h3,
.testimonial h4 {
  margin: 0 0 6px;
  font-family: "Sora", sans-serif;
}
.card p,
.course p,
.path-item p,
.features p,
.testimonial p,
.muted,
.notice { color: var(--muted); }

.course img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  margin-bottom: 10px;
  background: transparent;
  padding: 14px;
  border: 0;
}
.course a { text-decoration: none; color: var(--brand-dark); font-weight: 700; }
.course .course-wa {
  margin-top: 10px;
  width: 100%;
  font-weight: 600;
}
.badge,
.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e6f3ef;
  color: #0f6359;
  font-size: .78rem;
  font-weight: 700;
}
.chip { background: #f0f6f3; color: #3f5751; }
.course-meta { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 7px; }

#case-studies .case-grid {
  align-items: stretch;
}

#case-studies .case-study-card {
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 28px rgba(18, 45, 39, 0.1);
  border-color: #ceddd7;
  position: relative;
  overflow: hidden;
}

#case-studies .case-study-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #1f6a5f, #3ea392);
}

#case-studies .case-study-card .badge {
  margin-bottom: 12px;
}

#case-studies .case-gain {
  position: absolute;
  top: 14px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e8f6f1;
  border: 1px solid #bcdad0;
  color: #0d6f62;
  font-size: 0.78rem;
  font-weight: 800;
}

#case-studies .case-lines {
  display: grid;
  gap: 8px;
  margin: 14px 0 4px;
}

#case-studies .case-lines p {
  margin: 0;
}

#case-studies .case-lines strong {
  color: #4d5d59;
}

.case-study-card .case-profile {
  margin: 8px 0 4px;
}

.case-study-card .case-name {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: #102824;
  font-size: 0.98rem;
}

.case-study-card .case-role {
  margin: 2px 0 0;
  color: #546762;
  font-size: 0.86rem;
}

.case-study-card .case-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 6px;
}

.case-study-card .case-badges .chip {
  font-size: 0.72rem;
  padding: 3px 9px;
}

#case-studies .case-link {
  margin-top: auto;
}

#case-studies .case-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

#courses .section-lead {
  max-width: 760px;
  margin: -8px auto 24px;
  text-align: center;
  color: #4a5b57;
  font-size: 1.02rem;
}

#courses .courses {
  gap: 20px;
}

#courses .course {
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid #d5e2dc;
  box-shadow: 0 12px 28px rgba(18, 45, 39, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
  position: relative;
}

#courses .course::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #1f6a5f, #3ea392);
}

#courses .course:nth-child(1)::before { background: linear-gradient(90deg, #0c5a52, #1f8f81); }
#courses .course:nth-child(2)::before { background: linear-gradient(90deg, #0e5a86, #2b86b8); }
#courses .course:nth-child(3)::before { background: linear-gradient(90deg, #7a5115, #b67b2a); }
#courses .course:nth-child(4)::before { background: linear-gradient(90deg, #36598d, #6383b8); }
#courses .course:nth-child(5)::before { background: linear-gradient(90deg, #5b3b79, #8a5aaa); }
#courses .course:nth-child(6)::before { background: linear-gradient(90deg, #0a5c60, #2a8c92); }
#courses .course:nth-child(7)::before { background: linear-gradient(90deg, #304a70, #5575a6); }
#courses .course:nth-child(8)::before { background: linear-gradient(90deg, #7a4a18, #c27a2a); }
#courses .course:nth-child(9)::before { background: linear-gradient(90deg, #1e5b77, #2f84ac); }

#courses .course:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(18, 45, 39, 0.12);
  border-color: #bfd3c9;
}

#courses .course img {
  height: 172px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: #f2f7f4;
  border: 1px solid #d8e4de;
  padding: 0;
  margin-bottom: 14px;
}

#courses .course h3 {
  padding: 0 4px;
  margin-bottom: 9px;
  font-size: 1.06rem;
  line-height: 1.35;
  letter-spacing: 0.1px;
}

#courses .course p {
  padding: 0 4px;
  margin-bottom: 10px;
  min-height: 44px;
  color: #516763;
}

#courses .course-meta {
  padding: 0 4px;
  margin-top: 8px;
  margin-bottom: 12px;
}

#courses .course .chip {
  border: 1px solid #dbe8e2;
  background: #f5faf7;
  color: #355a52;
}

#courses .course > a:not(.course-wa) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 4px;
  width: calc(100% - 8px);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #1f6a5f;
  background: #1f6a5f;
  color: #ffffff;
  font-weight: 700;
}

#courses .course > a:not(.course-wa):hover {
  background: #18574f;
  border-color: #18574f;
}

#courses .course .course-wa {
  margin-left: 4px;
  margin-right: 4px;
  width: calc(100% - 8px);
  margin-top: 8px;
}

.path-item strong {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e2f2ee;
  color: #0f675d;
  margin-bottom: 8px;
}

.learning-path-section {
  position: relative;
  overflow: hidden;
}

.learning-path-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(19, 138, 125, 0.1), transparent 24%),
    radial-gradient(circle at 86% 28%, rgba(243, 156, 18, 0.12), transparent 20%);
  pointer-events: none;
}

.learning-path-section .container {
  position: relative;
  z-index: 1;
}

.learning-path-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.learning-path-eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #cfe0da;
  background: rgba(255, 255, 255, 0.85);
  color: #165f55;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.learning-path-lead {
  max-width: 740px;
  margin: -12px auto 0;
  color: #546864;
  font-size: 1.02rem;
}

.learning-path-grid {
  gap: 22px;
}

.learning-path-grid .path-card {
  position: relative;
  padding: 24px 22px 22px;
  border-radius: 22px;
  border: 1px solid rgba(160, 187, 178, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 250, 248, 0.98) 100%);
  box-shadow: 0 20px 44px rgba(16, 43, 38, 0.1);
  overflow: hidden;
}

.learning-path-grid .path-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #0e6d63, #2ba18f);
}

.learning-path-grid .path-card:nth-child(2)::before {
  background: linear-gradient(90deg, #0f6c77, #3e98a7);
}

.learning-path-grid .path-card:nth-child(3)::before {
  background: linear-gradient(90deg, #8a5d1f, #d39a39);
}

.learning-path-grid .path-card:nth-child(4)::before {
  background: linear-gradient(90deg, #224f74, #4d7ea9);
}

.path-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.learning-path-grid .path-step {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #eff7f4, #deefe9);
  border: 1px solid #d2e4de;
  color: #113d37;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.path-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(13, 123, 112, 0.34), rgba(13, 123, 112, 0));
}

.learning-path-grid .path-kicker {
  margin: 0 0 10px;
  color: #0d6c62;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.learning-path-grid .path-card h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.learning-path-grid .path-card > p:not(.path-kicker) {
  margin: 0 0 18px;
  color: #556965;
  font-size: 0.98rem;
  line-height: 1.72;
}

.path-points {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.path-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #25433e;
  font-size: 0.92rem;
  font-weight: 600;
}

.path-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #0e7b70, #31a08f);
  box-shadow: 0 0 0 5px rgba(13, 123, 112, 0.08);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.meta-card {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-card strong { font-family: "Sora", sans-serif; }
.meta-card span { color: var(--muted); font-size: .9rem; }
.meta-card-light span { color: #ffffff; font-size: .9rem; }

.steps-grid .step-card span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #08584f;
  background: #dcf1eb;
  margin-bottom: 10px;
}

.dark {
  background: linear-gradient(130deg,#0f3732,#0d2925);
  color: #eef8f5;
}
.dark .features div {
  background: rgba(255,255,255,.05);
  border-color: rgba(214,234,227,.22);
}
.dark .features p { color: #c8ddd7; }

.why-grid div { background: var(--surface-soft); }

.compare-head {
  max-width: 860px;
  margin: 0 auto 26px;
  text-align: center;
}

.compare-eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #d4e3dc;
  background: rgba(255, 255, 255, 0.82);
  color: #165d54;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-lead {
  max-width: 760px;
  margin: -10px auto 0;
  color: #576b66;
  font-size: 1rem;
}

.compare-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.compare-highlight {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #d5e3dd;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(244,249,247,0.96) 100%);
  box-shadow: 0 12px 28px rgba(18, 45, 39, 0.08);
}

.compare-highlight strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  color: #163d38;
}

.compare-highlight span {
  color: #5b6f6a;
  line-height: 1.65;
  font-size: 0.94rem;
}

.compare-table-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #d3e1db;
  box-shadow: 0 18px 36px rgba(18, 45, 39, 0.08);
}

.compare-table {
  min-width: 820px;
}

.compare-table th,
.compare-table td {
  padding: 20px 18px;
  vertical-align: top;
}

.compare-table th {
  background: linear-gradient(180deg, #eef6f3 0%, #e7f1ed 100%);
  color: #183d38;
  font-size: 1.02rem;
}

.compare-table td {
  background: rgba(255, 255, 255, 0.95);
  color: #334744;
  line-height: 1.65;
}

.compare-table tbody tr td:first-child {
  width: 22%;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: #1b3e39;
}

.compare-table tbody tr td:nth-child(2) {
  color: #114e46;
  font-weight: 600;
}

.compare-table tbody tr:hover td {
  background: #f7fbf9;
}

.corporate-hero {
  position: relative;
  overflow: hidden;
}

.corporate-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(243, 156, 18, 0.12), transparent 22%),
    radial-gradient(circle at 88% 22%, rgba(19, 138, 125, 0.1), transparent 24%);
  pointer-events: none;
}

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

.corporate-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: center;
}

.corporate-hero-copy p {
  max-width: 60ch;
}

.corporate-trust {
  margin-top: 8px;
}

.corporate-trust .chip {
  background: rgba(255,255,255,0.82);
  border: 1px solid #d6e4de;
  color: #18423c;
}

.corporate-hero-card,
.corporate-value-card,
.corporate-framework-card,
.corporate-info-card,
.corporate-proof-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(245,250,248,0.98) 100%);
  border: 1px solid #d6e2dc;
  border-radius: 20px;
  box-shadow: 0 18px 38px rgba(18, 45, 39, 0.08);
}

.corporate-hero-card {
  padding: 24px;
}

.corporate-hero-card h3,
.corporate-dark-panel h3,
.corporate-value-card h3,
.corporate-framework-card h3,
.corporate-proof-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

.corporate-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.corporate-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #38524d;
  line-height: 1.6;
}

.corporate-check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.5em;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d7b70, #2c9c8b);
  box-shadow: 0 0 0 5px rgba(13, 123, 112, 0.08);
}

.corporate-meta {
  margin-top: 18px;
}

.corporate-value-grid,
.corporate-framework-grid,
.corporate-proof-grid {
  display: grid;
  gap: 18px;
}

.corporate-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.corporate-value-card {
  padding: 22px;
}

.corporate-value-card p,
.corporate-proof-card p {
  margin: 0;
  color: #5a6d69;
  line-height: 1.72;
}

.corporate-framework-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.corporate-framework-card {
  position: relative;
  padding: 24px 20px 22px;
  overflow: hidden;
}

.corporate-framework-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #0d7b70, #2ba18f);
}

.corporate-framework-card span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 16px;
  border: 1px solid #d3e5de;
  background: #eaf4f1;
  color: #163f39;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.corporate-framework-card p,
.corporate-info-card p {
  margin: 0;
  color: #5b6f6a;
  line-height: 1.72;
}

.corporate-solution-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.corporate-dark-panel {
  padding: 26px 24px;
  border-radius: 22px;
  background: linear-gradient(145deg, #123c36 0%, #0d2e2a 100%);
  color: #ecf8f4;
  box-shadow: 0 20px 44px rgba(12, 34, 30, 0.22);
}

.corporate-dark-panel .corporate-check-list li {
  color: #d1e6df;
}

.panel-kicker {
  margin: 0 0 10px;
  color: #a8d6cc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.corporate-info-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.corporate-info-card {
  padding: 22px;
}

.corporate-info-card h4 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  color: #183f39;
}

.corporate-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.corporate-proof-card {
  padding: 22px;
}

.corporate-cta-band {
  max-width: 980px;
}

.corporate-cta-band .hero-buttons {
  justify-content: center;
  margin-top: 18px;
}

.faq-page-hero {
  position: relative;
  overflow: hidden;
}

.faq-page-highlights {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-category-card,
.faq-side-panel,
.faq-block {
  border: 1px solid #d7e2dd;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(245,250,248,0.98) 100%);
  box-shadow: 0 18px 38px rgba(18, 45, 39, 0.08);
}

.faq-category-card {
  padding: 22px;
}

.faq-category-card h3,
.faq-block h3,
.faq-side-panel h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

.faq-category-card p {
  margin: 0;
  color: #5b6f6a;
  line-height: 1.72;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: start;
}

.faq-side-panel {
  padding: 26px 24px;
  position: sticky;
  top: 102px;
}

.faq-content-stack {
  display: grid;
  gap: 18px;
}

.faq-block {
  padding: 24px;
}

.faq-block .faq-accordion {
  margin-top: 14px;
}

.faq-block .faq-accordion details {
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(18, 45, 39, 0.06);
}

.faq-block .faq-accordion details[open] {
  border-color: rgba(13, 123, 112, 0.24);
  background: #fbfffd;
}

.faq-block .faq-accordion summary {
  font-size: 1rem;
  line-height: 1.5;
}

.faq-block .faq-accordion p {
  line-height: 1.75;
}

.contact-page-hero {
  position: relative;
  overflow: hidden;
}

.contact-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(243, 156, 18, 0.11), transparent 22%),
    radial-gradient(circle at 88% 22%, rgba(19, 138, 125, 0.1), transparent 24%);
  pointer-events: none;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: center;
}

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

.contact-trust .chip {
  background: rgba(255,255,255,0.84);
  border: 1px solid #d4e2dc;
  color: #173f39;
}

.contact-hero-panel,
.contact-benefit-card {
  border: 1px solid #d6e2dc;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(245,250,248,0.98) 100%);
  box-shadow: 0 18px 38px rgba(18, 45, 39, 0.08);
}

.contact-hero-panel {
  padding: 24px;
}

.contact-hero-panel h3,
.contact-benefit-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

.contact-form-shell {
  border-radius: 22px;
  box-shadow: 0 20px 42px rgba(18, 45, 39, 0.1);
}

.contact-form-head {
  margin-bottom: 16px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.contact-form-note {
  margin: 0;
  color: #5f7470;
  font-size: 0.92rem;
}

.contact-info-stack {
  display: grid;
  gap: 16px;
}

.contact-info-card {
  border-radius: 18px;
}

.contact-info-card-accent {
  background: linear-gradient(180deg, #f7fcfa 0%, #eef8f4 100%);
  border-color: rgba(13, 123, 112, 0.22);
}

.contact-info-card p,
.contact-benefit-card p {
  margin: 0;
  color: #5b6f6a;
  line-height: 1.72;
}

.contact-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-benefit-card {
  padding: 22px;
}

.about-page-hero {
  position: relative;
  overflow: hidden;
}

.about-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(243, 156, 18, 0.12), transparent 24%),
    radial-gradient(circle at 86% 22%, rgba(19, 138, 125, 0.1), transparent 24%);
  pointer-events: none;
}

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

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: center;
}

.about-hero-panel,
.about-story-card,
.about-value-card,
.about-presence-card,
.about-overview-visual {
  border: 1px solid #d7e2dd;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(245,250,248,0.98) 100%);
  box-shadow: 0 18px 38px rgba(18, 45, 39, 0.08);
}

.about-hero-panel {
  padding: 24px;
}

.about-meta {
  margin-top: 18px;
}

.about-anchor-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-anchor-nav a {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #cfe0da;
  background: rgba(255,255,255,0.92);
  color: #18413b;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}

.about-anchor-nav a:hover {
  background: #eaf5f1;
  border-color: #b9d5cb;
  color: #0e675d;
}

.about-overview-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.about-overview-visual {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-overview-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(19, 138, 125, 0.12), transparent 46%),
    linear-gradient(135deg, rgba(19, 138, 125, 0.04), rgba(243, 156, 18, 0.08));
}

.about-orbit {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(13, 123, 112, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle, rgba(255,255,255,0.96), rgba(232,244,240,0.8));
  box-shadow: inset 0 0 0 18px rgba(13, 123, 112, 0.03);
}

.about-orbit::before,
.about-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(13, 123, 112, 0.16);
}

.about-orbit::before {
  inset: -18px;
}

.about-orbit::after {
  inset: -36px;
}

.about-orbit-core {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f857a, #0a655d);
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 28px rgba(13, 123, 112, 0.2);
}

.about-overview-copy h2 {
  margin: 0 0 12px;
  text-align: left;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  color: var(--ink);
}

.about-overview-copy p {
  margin: 0 0 14px;
  color: #566a65;
  line-height: 1.8;
}

.about-story-grid,
.about-values-grid,
.about-presence-grid {
  display: grid;
  gap: 18px;
}

.about-story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-story-card,
.about-value-card,
.about-presence-card {
  padding: 24px;
}

.about-story-card span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 15px;
  background: #eaf4f1;
  border: 1px solid #d2e3dd;
  color: #143f39;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.about-story-card h3,
.about-value-card h3,
.about-presence-card h3,
.about-hero-panel h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.02em;
}

.about-story-card p,
.about-value-card p,
.about-presence-card p {
  margin: 0;
  color: #5a6e69;
  line-height: 1.76;
}

.about-values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-presence-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-section-head {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.why-section-eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: #eef6f2;
  border: 1px solid #d0e1da;
  color: #145c53;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-section-lead {
  margin: -10px auto 0;
  max-width: 720px;
  color: #586d68;
  font-size: 1rem;
}

.why-link-grid {
  align-items: stretch;
}

.why-feature-card {
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #d4e2dc;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,250,248,0.98) 100%);
  box-shadow: 0 14px 34px rgba(20, 51, 45, 0.09);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.why-feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #0f857a, #2ea392);
}

.why-feature-card:nth-child(2)::before {
  background: linear-gradient(90deg, #0f6f7a, #3c97a5);
}

.why-feature-card:nth-child(3)::before {
  background: linear-gradient(90deg, #886021, #cb9537);
}

.why-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(13, 123, 112, 0.3);
  box-shadow: 0 18px 40px rgba(20, 51, 45, 0.14);
}

.why-feature-card:focus-visible {
  outline: 3px solid rgba(15, 133, 122, 0.26);
  outline-offset: 3px;
}

.why-feature-index {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #e7f2ee;
  border: 1px solid #d2e4de;
  color: #153f39;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.why-feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.why-feature-card p {
  margin: 0 0 16px;
  color: #556864;
  line-height: 1.7;
}

.why-feature-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #0d6c62;
}

.why-feature-link::after {
  content: "\2192";
  transition: transform 0.2s ease;
}

.why-feature-card:hover .why-feature-link::after {
  transform: translateX(4px);
}

.why-section-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.cta-section,
.cta-band {
  text-align: center;
  background: linear-gradient(115deg,#e7f6f2,#fff0d9);
  border: 1px solid #d5e4de;
  border-radius: 18px;
  padding: 38px 20px;
}
.cta-section { padding: 66px 0; border: none; border-radius: 0; }
.cta-section h2,
.cta-band h2 { margin: 0 0 10px; font-family: "Sora", sans-serif; }

.cta-section .container {
  text-align: center;
}

.cta-section .hero-buttons {
  justify-content: center;
  margin: 18px 0 10px;
}

.cta-section .muted {
  margin: 0;
}

.contact-layout,
.schedule-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}
.field label { display: block; font-weight: 600; margin-bottom: 6px; }
.field textarea { min-height: 120px; resize: vertical; }
.notice { display: none; margin-top: 10px; }
.notice-pending { color: #2f4f4a; }
.notice-success { color: #0b6b53; }
.notice-error { color: #a11f2f; }
.list-check { padding-left: 18px; margin: 0; }

.table-wrap { overflow: auto; }
table { width: 100%; border-collapse: collapse; min-width: 740px; }
th, td { text-align: left; padding: 12px; border-bottom: 1px solid #e1ebe7; }
th { background: #eff6f3; font-family: "Sora", sans-serif; }
.status-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
}
.status-open { background: #dff5ea; color: #0c6a52; }
.status-fast { background: #ffe9c8; color: #8d4f00; }
.status-few { background: #ffe0e0; color: #8f2b2b; }

.footer {
  background: linear-gradient(180deg, #11231f 0%, #0d1b18 100%);
  color: #d7e6e0;
  padding: 54px 0;
  border-top: 1px solid rgba(13, 123, 112, 0.15);
}

.footer h3 { 
  color: #f5fbf9; 
  margin-top: 0; 
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer a { 
  color: #d7e6e0; 
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: #a8dcd1;
}

.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-link-list li {
  margin: 0;
}

.footer-link-list a {
  display: inline-block;
}

.footer small { color: #b5c8c1; }
.footer-legal {
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(215, 230, 224, 0.15);
}
.footer-legal h3 {
  margin-bottom: 8px;
}
.footer-legal p {
  margin: 0 0 10px;
  color: #d7e6e0;
}
.footer-legal ul {
  margin: 0 0 10px;
  padding-left: 20px;
}
.footer-legal li {
  margin-bottom: 8px;
  color: #d7e6e0;
}
.footer-legal a {
  color: #a8dcd1;
  font-weight: 700;
}
.footer-legal-note {
  margin-bottom: 0;
}

.whatsapp,
.whatsapp-float {
  display: none !important;
}

/* .site-chatbot {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
} */

.chatbot-panel {
  width: min(360px, calc(100vw - 24px));
  max-height: calc(var(--app-height) - 104px);
  max-height: min(680px, calc(100dvh - 104px));
  border-radius: 24px;
  border: 1px solid #d8e6e0;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,249,247,0.98) 100%);
  box-shadow: 0 24px 60px rgba(14, 38, 33, 0.18);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  transform-origin: bottom right;
  transition: opacity .22s ease, transform .22s ease;
}

.chatbot-panel[hidden] {
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
}

.chatbot-header {
  padding: 16px 16px 14px;
  background: linear-gradient(135deg, #123c36 0%, #0d6b61 100%);
  color: #f4fffb;
}

.chatbot-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chatbot-header h3 {
  margin: 0 0 4px;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  color: #ffffff;
}

.chatbot-header p {
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: 0.9rem;
  line-height: 1.55;
}

.chatbot-body {
  padding: 14px;
  min-height: 0;
  overflow-y: auto;
}

.chatbot-messages {
  display: grid;
  gap: 10px;
  max-height: min(300px, 34dvh);
  overflow-y: auto;
  padding-right: 4px;
}

.chatbot-message {
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.chatbot-message.bot {
  justify-self: start;
  background: #eef6f2;
  border: 1px solid #d6e6de;
  color: #1f3d38;
}

.chatbot-message.user {
  justify-self: end;
  background: linear-gradient(135deg, #1b7d70 0%, #12665d 100%);
  color: #ffffff;
}

.chatbot-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chatbot-support-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.chatbot-support-link {
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid #d5e3dd;
  background: #ffffff;
  color: #16453e;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.chatbot-support-link:hover {
  background: #eef6f2;
  border-color: #c2d8cf;
}

.chatbot-chip {
  border: 1px solid #cfe1da;
  background: #ffffff;
  color: #16453e;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.chatbot-chip:hover {
  background: #eaf5f1;
  border-color: #b7d7cc;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid #e1ebe7;
  background: rgba(255,255,255,0.88);
}

.chatbot-form input {
  width: 100%;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid #cadad3;
  background: #fbfffd;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 16px;
  color: #173b35;
}

.chatbot-form button {
  min-width: 92px;
}

.chatbot-launcher {
  min-height: 64px;
  max-width: min(100%, 260px);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(135deg, #183f39 0%, #0f5f55 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(12, 47, 41, 0.28);
  padding: 10px 16px 10px 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.chatbot-launcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(12, 47, 41, 0.34);
}

.chatbot-launcher-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.chatbot-launcher-icon svg {
  width: 22px;
  height: 22px;
}

.chatbot-launcher-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.05;
}

.chatbot-launcher-text strong {
  font-size: 0.9rem;
}

.chatbot-launcher-text span {
  margin-top: 4px;
  color: rgba(255,255,255,0.82);
  font-size: 0.68rem;
  font-weight: 600;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 10px;
  margin-bottom: 18px;
}
.catalog-toolbar input,
.catalog-toolbar select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cad9d3;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.program-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.program-detail-page .program-hero-shell {
  background: linear-gradient(115deg, #edf8f4, #f8f2e4);
  border-bottom: 1px solid #d8e6e0;
}

.program-detail-page .program-track-switch {
  margin: 14px 0 10px;
}

.program-detail-page .program-hero-actions {
  margin: 18px 0 0;
}

.program-detail-page .program-value-grid {
  align-items: stretch;
}

.program-detail-page .program-value-card {
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.program-detail-page .program-value-card h3 {
  margin-bottom: 10px;
}

.program-detail-page .program-value-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}
.program-card h3 { margin: 8px 0 6px; font-size: 1.03rem; }
.program-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.program-card a { margin-top: 10px; display: inline-flex; font-weight: 700; color: var(--brand-dark); text-decoration: none; }
.program-card .program-link-btn {
  margin-top: 10px;
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  color: var(--brand-dark);
  cursor: pointer;
}

.program-card .program-link-btn:hover,
.program-card .program-link-btn:focus-visible {
  text-decoration: underline;
}

.footer [data-legal-global='1'] .legal-nav-btn {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.programs-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
  align-items: start;
}
.programs-sidebar {
  position: sticky;
  top: 98px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 22px rgba(27, 52, 46, 0.08);
}
.programs-sidebar h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
}
.programs-sidebar a {
  display: block;
  text-decoration: none;
  color: #18433d;
  font-weight: 600;
  margin: 0 0 8px;
}
.programs-side-cta {
  margin-top: 12px;
  border-top: 1px solid #e3ece8;
  padding-top: 12px;
}
.programs-side-cta p {
  margin: 0 0 10px;
  color: var(--muted);
}

.faq-accordion {
  display: grid;
  gap: 10px;
}
.faq-accordion details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
.faq-accordion summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion p {
  margin: 10px 0 0;
  color: var(--muted);
}

.cert-accordion {
  margin-top: 14px;
}
.cert-accordion summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(27, 52, 46, 0.08);
  padding: 14px 16px;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cert-accordion summary::-webkit-details-marker { display: none; }
.cert-accordion summary::after {
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
  color: #145c53;
}
.cert-accordion[open] summary::after { content: "-"; }
.cert-accordion-body {
  margin-top: 12px;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.roadmap-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}
.roadmap-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(27, 52, 46, 0.08);
  padding: 0;
}
.roadmap-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px;
}
.roadmap-item summary::-webkit-details-marker { display: none; }
.roadmap-item summary .roadmap-title {
  display: block;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
}
.roadmap-item summary p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
}
.roadmap-body {
  display: none;
  border-top: 1px solid #e1ebe7;
  padding: 14px;
}
.roadmap-body p {
  margin: 0 0 10px;
  color: var(--muted);
}
.roadmap-body p:last-child {
  margin-bottom: 0;
}
.roadmap-item[open] .roadmap-body {
  display: block;
}

.video-slider {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 12px;
}
.video-track {
  position: relative;
  min-height: 360px;
}
.video-slide {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.video-slide.active { display: block; }
.video-slide iframe {
  width: 100%;
  height: clamp(220px, 36vw, 410px);
  border: 0;
  border-radius: 10px;
}
.video-slide p {
  margin: 10px 0 2px;
  color: var(--muted);
}
.video-nav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #a8c1ba;
  background: #fff;
  color: #114b44;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.video-nav:hover { background: #ecf7f3; }
.mentor-card { min-height: 230px; }
.mentor-card .muted { margin-top: 0; }

.bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.portal-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-intro {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.portal-intro h2 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  letter-spacing: -0.02em;
}

.portal-intro p {
  margin: 0;
  color: var(--muted);
}

.category-portal-page .portal-hero-copy {
  max-width: 840px;
  text-align: center;
}

.category-portal-page .portal-hero-copy p {
  margin-left: auto;
  margin-right: auto;
}

.portal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 18px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.portal-card::before {
     z-index: 0;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13, 123, 112, 0.06), rgba(13, 123, 112, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 123, 112, 0.28);
  box-shadow: var(--shadow);
}

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

.portal-level {
  margin: 8px 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #0f6359;
}

.portal-mark {
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid #bcd6cf;
  background: #f3faf7;
  color: #165f55;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  position: absolute;
  top: 14px;
  right: 14px;
  
}

.portal-card h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.portal-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.portal-card a {
  text-decoration: none;
  font-weight: 700;
  color: #f7fffd;
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0f857a 0%, #0a655d 100%);
  border: 1px solid #0a655d;
  box-shadow: 0 8px 18px rgba(13, 123, 112, 0.22);
  transition: var(--transition);
  margin-top: auto;
  align-self: flex-start;
}

.portal-card a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.portal-card .badge,
.portal-card h3,
.portal-card p,
.portal-level {
  position: relative;
  z-index: 1;
}

.portal-card .badge {
  align-self: flex-start;
  max-width: max-content;
}

.portal-card-highlight {
  border-color: rgba(13, 123, 112, 0.38);
  background: linear-gradient(180deg, #f9fffd 0%, #f2fbf8 100%);
}

.portal-card-highlight a {
  color: #f7fffd;
}

/* Keep Level 1-4 portal cards perfectly aligned despite different text lengths. */
#portal-depth .portal-card {
  height: 100%;
}

#portal-depth .portal-card h3 {
  min-height: 2.6em;
}

#portal-depth .portal-card > p:not(.portal-level) {
  min-height: 5.2em;
}

.aws-ladder-grid .portal-card h3 {
  min-height: 2.5em;
}

.aws-ladder-grid .portal-card > p:not(.portal-level) {
  min-height: 4.8em;
}

.aws-ladder-grid .portal-card a {
  width: 100%;
  justify-content: center;
}

.reveal { opacity: 1; transform: translateY(0); transition: .5s ease; pointer-events: auto; }
.reveal.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

@media (max-width: 1120px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-dark .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual-badge { min-height: 280px; }
  .hero-card { grid-column: 1 / -1; }
  .grid-4,
  .path-grid,
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
  .portal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portal-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .learning-path-grid .path-card h3 { font-size: 1.45rem; }
  .corporate-value-grid,
  .corporate-framework-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-page-highlights,
  .faq-category-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-benefit-grid { grid-template-columns: 1fr 1fr; }
  .about-story-grid,
  .about-values-grid,
  .about-presence-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .topbar-inner,
  .nav-container { min-height: auto; padding: 12px 0; flex-wrap: wrap; }
  .menu-toggle { display: inline-flex; }
  .desktop-cta,
  .cta { display: none; }
  .nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition: max-height .25s ease, opacity .22s ease, transform .22s ease;
  }
  .nav.open {
    max-height: 760px;
    opacity: 1;
    transform: translateY(0);
  }
  .mega-menu { display: block; }
  .mega-panel {
    position: static;
    width: 100%;
    margin-top: 6px;
    left: 0;
    right: auto;
    transform: none;
    max-height: none;
    overflow: visible;
    box-shadow: none;
    grid-template-columns: 1fr;
    display: none;
  }
  .about-panel {
    width: 100%;
  }
  .about-menu-inner a {
    min-height: 50px;
    padding: 13px 14px;
    font-size: 0.95rem;
  }
  .mega-panel::before { display: none; }
  .mega-catalog { grid-template-columns: 1fr; }
  .mega-side {
    border-right: 0;
    border-bottom: 1px solid #d4e2dc;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .mega-main {
    grid-template-columns: 1fr;
    padding: 10px 12px 12px;
  }
  .mega-all { justify-content: flex-start; }
  .mega-menu.mega-open .mega-panel { display: grid; }
  .portal-grid { grid-template-columns: 1fr; }

  .hero-grid,
  .corporate-hero-grid,
  .grid-3,
  .grid-4,
  .programs-layout,
  .program-grid,
  .courses,
  .testimonials,
  .features,
  .footer-inner,
  .footer-grid,
  .hero-meta,
  .contact-layout,
  .schedule-layout { grid-template-columns: 1fr; }

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

  .logo-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 1fr);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .logo-row::-webkit-scrollbar { height: 8px; }
  .logo-row::-webkit-scrollbar-thumb {
    background: #c2d6cd;
    border-radius: 999px;
  }

  .logo-pill {
    scroll-snap-align: start;
    min-height: 160px;
  }

  .logos-cta {
    justify-content: flex-start;
  }

  .catalog-toolbar { grid-template-columns: 1fr; }
  .hero-trust { margin-top: 0; }
  .corporate-value-grid,
  .corporate-framework-grid,
  .corporate-proof-grid,
  .corporate-info-stack,
  .corporate-solution-layout,
  .faq-layout,
  .faq-page-highlights,
  .faq-category-grid,
  .contact-hero-grid,
  .contact-benefit-grid,
  .contact-form-grid,
  .about-hero-grid,
  .about-overview-grid,
  .about-story-grid,
  .about-values-grid,
  .about-presence-grid { grid-template-columns: 1fr; }
  .video-slider { grid-template-columns: 1fr; }
  .video-nav {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    font-size: 22px;
  }
  .programs-sidebar { position: static; }
  .faq-side-panel { position: static; }
  .learning-path-head {
    max-width: 100%;
    margin-bottom: 24px;
  }
  .learning-path-grid {
    gap: 16px;
  }
  .why-section-actions {
    justify-content: flex-start;
  }
  .compare-highlights {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 68px 0 52px;
  }

  .hero-card,
  .form-wrap,
  .schedule-panel {
    padding: 18px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .logo,
  .brand {
    font-size: 1.1rem;
  }

  .menu-toggle {
    padding: 7px 10px;
    font-size: 0.92rem;
  }

  .hero-visual-badge { min-height: 240px; }
  .badge-circle { max-width: 220px; }
  .hero-buttons {
    gap: 8px;
    flex-direction: column;
  }
  .btn-primary,
  .btn-outline,
  .btn-secondary { font-size: 0.9rem; padding: 10px 14px; }
  .stats,
  .grid-4,
  .path-grid,
  .roadmap-grid,
  .roadmap-grid-3 { grid-template-columns: 1fr; }
  .section,
  .page-hero { padding: 56px 0; }
  .strip-inner { flex-direction: column; justify-content: center; padding: 8px 0; }

  .hero-left h1,
  .page-hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero-sub,
  .page-hero p {
    max-width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline,
  .form-step-actions .btn-primary,
  .form-step-actions .btn-outline {
    width: 100%;
  }

  #courses .section-lead {
    margin: -4px auto 18px;
    font-size: 0.95rem;
  }

  .course-controls {
    align-items: flex-start;
  }

  #courses .course p { min-height: 0; }
  .corporate-hero-card,
  .corporate-value-card,
  .corporate-framework-card,
  .corporate-dark-panel,
  .corporate-info-card,
  .corporate-proof-card,
  .faq-side-panel,
  .faq-block,
  .faq-category-card,
  .contact-hero-panel,
  .contact-benefit-card,
  .about-hero-panel,
  .about-story-card,
  .about-value-card,
  .about-presence-card {
    padding-left: 18px;
    padding-right: 18px;
  }
  .learning-path-grid .path-card {
    padding: 20px 18px;
    border-radius: 18px;
  }
  .learning-path-grid .path-card h3 {
    font-size: 1.35rem;
  }
  .learning-path-lead {
    font-size: 0.96rem;
  }
  .learning-path-grid .path-step {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }
  .site-chatbot {
    right: 12px;
    left: 12px;
    bottom: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    align-items: stretch;
  }
  .chatbot-panel {
    width: 100%;
    max-height: calc(var(--app-height) - 110px - env(safe-area-inset-bottom, 0px));
    max-height: min(78dvh, 620px);
    border-radius: 20px;
  }
  .chatbot-launcher {
    align-self: stretch;
    width: 100%;
    max-width: none;
    justify-content: center;
  }
  .chatbot-launcher-text {
    align-items: flex-start;
  }
  .chatbot-support-actions { grid-template-columns: 1fr; }
  .chatbot-form {
    grid-template-columns: 1fr;
  }
  .chatbot-form button {
    width: 100%;
    min-width: 0;
  }
  .chatbot-chip {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }
}
