/* ============================================================
   INTERSUPREME INNOVATION — Main Stylesheet
   Brand Colors:
     --navy:      #2B4A8C  (primary)
     --deep-navy: #1A2F5E  (dark)
     --sky:       #4A72C4  (links/highlights)
     --ice:       #D6E4F7  (light fills)
     --emerald:   #00C48C  (CTA accent)
     --amber:     #F4A726  (badges/energy)
     --bg:        #F4F6FA  (page bg)
   Fonts: Syne (headings) + DM Sans (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #2B4A8C;
  --deep-navy:  #1A2F5E;
  --sky:        #4A72C4;
  --ice:        #D6E4F7;
  --emerald:    #00C48C;
  --emerald-dk: #009E70;
  --amber:      #F4A726;
  --white:      #FFFFFF;
  --bg:         #F4F6FA;
  --bg-card:    #FFFFFF;
  --text-dark:  #0F1C35;
  --text-mid:   #3A4A6B;
  --text-muted: #6B7A99;
  --border:     rgba(43, 74, 140, 0.12);

  --font-head: 'Inter', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(26, 47, 94, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 47, 94, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 47, 94, 0.16);

  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- UTILS ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--ice);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-tag-white {
  color: var(--white);
  background: rgba(255,255,255,0.18);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
}

.body-text {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}
.btn-primary:hover {
  background: var(--emerald-dk);
  border-color: var(--emerald-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 196, 140, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-img {
  width: clamp(180px, 22vw, 280px);
  height: auto;
  display: block;
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--navy); background: var(--ice); }
.nav-links a.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
}
.nav-links a.nav-cta:hover { background: var(--deep-navy); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.nav-mobile a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-mid);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 60%, #3A5FA0 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto 0 max(24px, calc((100vw - 1180px) / 2 + 24px));
  animation: fadeUp 0.8s ease both;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(0, 196, 140, 0.15);
  border: 1px solid rgba(0, 196, 140, 0.3);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title-accent { color: var(--emerald); }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.hero-visual {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2 + 24px));
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}
.hero-orb-1 {
  width: 320px; height: 320px;
  background: var(--sky);
  top: 10%; left: 10%;
  animation: float1 6s ease-in-out infinite;
}
.hero-orb-2 {
  width: 200px; height: 200px;
  background: var(--emerald);
  bottom: 10%; right: 10%;
  animation: float2 5s ease-in-out infinite;
}

.hero-card-float {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--white);
  white-space: nowrap;
}
.hero-card-1 { top: 12%; left: 0; animation: float1 4s ease-in-out infinite; }
.hero-card-2 { top: 50%; right: -20px; animation: float2 5s ease-in-out infinite 1s; }
.hero-card-3 { bottom: 15%; left: 10%; animation: float1 4.5s ease-in-out infinite 0.5s; }
.hc-icon { font-size: 18px; }

/* ---- ABOUT ---- */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-card {
  background: var(--deep-navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.mission-icon { font-size: 36px; margin-bottom: 16px; }
.mission-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.mission-text { color: rgba(255,255,255,0.8); line-height: 1.7; }

/* ---- DIGITISATION ---- */
.digitisation {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 100%);
  color: var(--white);
}
.digitisation .section-title { color: var(--white); }
.digitisation .section-sub { color: rgba(255,255,255,0.75); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}
.service-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-featured {
  background: rgba(0, 196, 140, 0.12);
  border-color: rgba(0, 196, 140, 0.35);
}
.service-card-featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 24px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--emerald);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
}

.service-icon { font-size: 32px; margin-bottom: 16px; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.65; }
.service-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--emerald);
  text-decoration: none;
  transition: color var(--transition);
}
.service-link:hover { color: #3DFFC0; }

/* ---- TRAINING ---- */
.training { background: var(--bg); }

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.training-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.training-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.training-card-center {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.training-card-center h3,
.training-card-center .training-audience { color: var(--white) !important; }
.training-card-center p { color: rgba(255,255,255,0.78); }

.training-audience {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}
.training-icon { font-size: 40px; margin-bottom: 16px; }
.training-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.training-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.training-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--ice);
  padding: 5px 12px;
  border-radius: 999px;
}
.training-card-center .training-badge {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

.journey-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 52px;
  text-align: center;
}
.journey-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.journey-sub { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0 auto 36px; }

.journey-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.journey-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  min-width: 100px;
}
.jstep-highlight {
  background: var(--navy);
  border-color: var(--navy);
}
.jstep-highlight .jstep-num,
.jstep-highlight .jstep-label { color: var(--white); }
.jstep-num {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.jstep-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.journey-arrow {
  font-size: 22px;
  color: var(--text-muted);
  font-weight: 300;
}

/* ---- WHY ---- */
.why {
  background: linear-gradient(135deg, #EFF4FF 0%, #F4F6FA 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-icon { font-size: 32px; margin-bottom: 16px; }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.why-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.stat-card-accent {
  background: var(--navy);
  border-color: var(--navy);
}
.stat-card-accent .stat-number,
.stat-card-accent .stat-label,
.stat-card-accent .stat-note { color: var(--white); }
.stat-card-accent .stat-note { color: rgba(255,255,255,0.65); }

.stat-number {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.stat-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- PARTNERS ---- */
.partners { background: var(--white); }

.partner-types {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}
.partner-pill {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  background: var(--ice);
  border: 1px solid rgba(43,74,140,0.15);
  padding: 10px 20px;
  border-radius: 999px;
  transition: all var(--transition);
  cursor: default;
}
.partner-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ---- CONTACT ---- */
.contact {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 100%);
  color: var(--white);
}
.contact .section-title { color: var(--white); }
.contact .body-text { color: rgba(255,255,255,0.78); }
.contact-email { font-size: 15px; color: rgba(255,255,255,0.7); margin-top: 8px; }
.contact-email a { color: var(--emerald); text-decoration: none; }
.contact-email a:hover { text-decoration: underline; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.cta-card-alt {
  background: rgba(0,196,140,0.1);
  border-color: rgba(0,196,140,0.3);
}
.cta-card-icon { font-size: 28px; margin-bottom: 12px; }
.cta-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 20px;
}
.cta-card .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.cta-card .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--deep-navy);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  width: clamp(160px, 20vw, 260px);
  height: auto;
  margin-bottom: 12px;
  display: block;
  color: var(--white);
}

.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 8px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--emerald); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(14px); }
}

.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: 900px) {
  .services-grid,
  .training-grid,
  .stats-grid { grid-template-columns: 1fr; }

  .about-grid,
  .contact-grid,
  .footer-inner { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }

  .footer-links { grid-template-columns: 1fr 1fr; }

  .hero-visual { display: none; }
  .hero-content { margin: 0 auto; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin: 0 auto 40px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .journey-section { padding: 36px 24px; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .footer-links { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { gap: 40px; }
  .journey-steps { gap: 8px; }
  .journey-arrow { font-size: 16px; }
}

/* ============================================================
   MBESAAI TRAINING PAGE
   ============================================================ */

/* ---- TRAINING HERO ---- */
.t-hero {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 60%, #3A5FA0 100%);
  padding: 140px 24px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.t-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.t-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.t-hero-brand {
  font-family: var(--font-head);
  font-size: clamp(56px, 10vw, 108px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.t-hero-brand span { color: var(--emerald); }
.t-hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}
.t-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 40px;
}
.t-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.t-hero-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.t-hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ---- ORG GRID ---- */
.org-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.org-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.org-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.org-card-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.org-card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ---- TRACKS TABS ---- */
.tracks-section { background: var(--bg); padding: 88px 0; }
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab-btn {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tab-btn:hover { border-color: var(--navy); color: var(--navy); }
.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
}
.tab-icon { font-size: 20px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---- PANEL COMPONENTS ---- */
.panel-hero {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 52px;
  margin-bottom: 24px;
}
.panel-audience-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 12px;
}
.panel-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.panel-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 680px;
}
.panel-who {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.panel-who-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.audience-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.audience-pill {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--ice);
  color: var(--navy);
  border: 1px solid rgba(43,74,140,0.15);
}
.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.panel-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.panel-box-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.panel-box-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; }
.panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.panel-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.55;
}
.panel-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  margin-top: 6px;
  flex-shrink: 0;
}
.panel-quote {
  background: rgba(0, 196, 140, 0.08);
  border: 1px solid rgba(0, 196, 140, 0.25);
  border-left: 4px solid var(--emerald);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  margin-top: 20px;
}

/* ---- OUTCOMES ---- */
.outcomes-list { display: flex; flex-direction: column; gap: 12px; }
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.outcome-num {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  background: var(--navy);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.outcome-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.outcome-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ---- PRACTICE CARDS ---- */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.practice-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ---- TAKEAWAY ---- */
.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.takeaway-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.takeaway-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--ice);
  line-height: 1;
  margin-bottom: 12px;
}
.takeaway-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.45;
}

/* ---- OUTCOME TRIO ---- */
.outcome-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* ---- TRAINING CONTACT ---- */
.t-contact {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 100%);
  padding: 96px 0;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.contact-info-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}
.contact-info-icon { font-size: 30px; margin-bottom: 16px; }
.contact-info-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 10px;
}
.contact-info-value { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7; }
.contact-info-value a { color: var(--white); text-decoration: none; }
.contact-info-value a:hover { color: var(--emerald); text-decoration: underline; }

/* ---- NAV ACTIVE STATE (training page) ---- */
.nav-links a.nav-active { color: var(--navy); background: var(--ice); }

/* ---- TRAINING PAGE RESPONSIVE ---- */
@media (max-width: 900px) {
  .org-grid { grid-template-columns: repeat(2, 1fr); }
  .panel-grid { grid-template-columns: 1fr; }
  .takeaway-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .outcome-trio { grid-template-columns: 1fr; }
  .panel-hero { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .practice-grid { grid-template-columns: 1fr; }
  .org-grid { grid-template-columns: 1fr 1fr; }
  .t-hero { padding: 120px 24px 64px; }
  .panel-box { padding: 24px 20px; }
}
