/* ============================================================
   MAC25AI — Complete Stylesheet
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: #F7F9FC;
  color: #111827;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Root Variables --- */
:root {
  --bg: #F7F9FC;
  --bg2: #EEF2F9;
  --bg3: #FFFFFF;
  --dark: #080C14;
  --dark2: #0D1321;
  --card-dark: #101828;
  --blue: #2563EB;
  --blue2: #1D4ED8;
  --blue-light: #EFF4FF;
  --cyan: #06B6D4;
  --text: #111827;
  --muted: #6B7280;
  --dim: #9CA3AF;
  --white: #F8FAFC;
  --border: #E5E9F0;
  --border-dark: rgba(37,99,235,0.18);
  --gold: #F59E0B;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.18;
  color: var(--text);
}
.light-section h1,
.light-section h2,
.light-section h3 { color: var(--text); }
.dark-section h1,
.dark-section h2,
.dark-section h3 { color: var(--white); }

p { color: var(--muted); line-height: 1.75; }
.dark-section p { color: rgba(248,250,252,0.62); }

/* --- Section Labels --- */
.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
}
.dark-section .section-label { color: var(--cyan); }

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(8,12,20,0.10); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 68px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-brand { display: flex; flex-direction: column; gap: 1px; }
.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--blue);
  letter-spacing: -0.5px;
  line-height: 1;
}
.brand-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 1.8px;
  color: var(--dim);
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.855rem;
  color: var(--muted);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  font-weight: 400;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-light); }
.nav-links a.active { color: var(--blue); font-weight: 500; }

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.855rem;
  font-weight: 500;
  background: var(--blue);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  margin-left: 0.75rem;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue2); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: transparent;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--blue); }
.mobile-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
}
.mobile-menu .nav-cta {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  padding: 0.75rem 2rem;
}

/* ============================================================
   HERO — FULL HEIGHT (index)
   ============================================================ */
.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}
.hero-full .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-full .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,12,20,0.82);
  z-index: 1;
}
.hero-full .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0 3rem;
}
.hero-full .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-label {
  font-size: 0.68rem;
  letter-spacing: 2.8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-h1 .blue { color: var(--blue); }

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(248,250,252,0.62);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  background: var(--blue);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 7px;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid var(--blue);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--blue2);
  border-color: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}
.btn-secondary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  background: transparent;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 7px;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all var(--transition);
  display: inline-block;
}
.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-blue {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  background: var(--blue);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 7px;
  font-size: 0.9rem;
  border: 2px solid var(--blue);
  display: inline-block;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-blue:hover {
  background: var(--blue2);
  border-color: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}
.btn-white {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  background: #fff;
  color: var(--dark);
  padding: 0.8rem 1.8rem;
  border-radius: 7px;
  font-size: 0.9rem;
  border: 2px solid #fff;
  display: inline-block;
  transition: all var(--transition);
}
.btn-white:hover { background: var(--bg2); transform: translateY(-2px); }

.btn-green {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  background: #25D366;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 7px;
  font-size: 0.9rem;
  border: 2px solid #25D366;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
}
.btn-green:hover { background: #1ebe5d; border-color: #1ebe5d; transform: translateY(-2px); }

.hero-trust {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--dim);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-trust span { opacity: 0.45; }

/* Stat cards in hero */
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-stat-card {
  background: rgba(13,19,33,0.8);
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.hero-stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(248,250,252,0.55);
  line-height: 1.35;
}

/* ============================================================
   HERO — INNER PAGES (55vh)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,19,33,0.72);
  z-index: 1;
}
.page-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 3rem 0 3.5rem;
}
.breadcrumb {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(248,250,252,0.5);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.breadcrumb a { color: rgba(248,250,252,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.4; }
.page-hero-label {
  font-size: 0.68rem;
  letter-spacing: 2.8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.12;
}
.page-hero p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(248,250,252,0.62);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================================
   SECTIONS — GENERAL
   ============================================================ */
section { position: relative; }

.section-white { background: #fff; }
.section-light { background: var(--bg2); }
.section-dark { background: var(--dark); }
.section-dark2 { background: var(--dark2); }
.section-navy { background: var(--dark2); }
.section-blue { background: var(--blue); }

.section-pad { padding: 5.5rem 0; }
.section-pad-lg { padding: 7rem 0; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.85rem;
  color: inherit;
}
.section-header p {
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
}
.dark-section .section-header h2 { color: var(--white); }
.dark-section .section-header p { color: rgba(248,250,252,0.55); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark2);
  padding: 3.5rem 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.75rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(248,250,252,0.5);
  letter-spacing: 0.5px;
}

/* ============================================================
   SERVICE CARDS (4-up strip)
   ============================================================ */
.services-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(37,99,235,0.12);
}
.service-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-card .learn-more {
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 500;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.service-card .learn-more:hover { gap: 0.55rem; }

.services-link {
  text-align: center;
  margin-top: 2.5rem;
}
.services-link a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--blue);
  font-weight: 500;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.services-link a:hover { gap: 0.6rem; }

/* ============================================================
   INDUSTRY PILLS
   ============================================================ */
.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.industry-pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  transition: all var(--transition);
  cursor: pointer;
}
.industry-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}

/* ============================================================
   TRAINING HIGHLIGHT
   ============================================================ */
.training-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.training-stat-big {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 7rem;
  color: var(--blue);
  line-height: 0.9;
  margin-bottom: 0.75rem;
}
.training-stat-desc {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.session-list { display: flex; flex-direction: column; gap: 0.85rem; }
.session-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
}
.session-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.session-info {}
.session-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.3;
}
.session-type {
  font-size: 0.76rem;
  color: var(--blue);
  margin-top: 2px;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 1px);
  right: calc(12.5% + 1px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.25rem;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--blue);
  letter-spacing: 1.5px;
  background: #fff;
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border: 1.5px solid var(--blue);
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.section-light .step-number { background: var(--bg2); }
.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.855rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--dark2);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner.blue-bg { background: var(--blue); }
.cta-banner h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff;
  margin-bottom: 0.85rem;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(248,250,252,0.65);
  margin-bottom: 2rem;
}

/* ============================================================
   SERVICE DETAIL SECTIONS (services.html)
   ============================================================ */
.service-detail {
  padding: 5.5rem 0;
}
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-detail-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(8,12,20,0.12);
}
.service-detail-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-detail-img:hover img { transform: scale(1.04); }
.service-detail-label {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.service-detail h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
  color: var(--text);
}
.service-detail p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.detail-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.detail-list {
  margin-bottom: 1.5rem;
}
.detail-list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.detail-list li::before {
  content: '·';
  color: var(--blue);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: -1px;
}

/* ============================================================
   AUDIENCE CARDS (training.html)
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.audience-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(37,99,235,0.10);
  border-color: var(--blue);
}
.audience-emoji { font-size: 2rem; margin-bottom: 0.85rem; display: block; }
.audience-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.audience-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   TOPIC TAGS
   ============================================================ */
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.topic-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--blue);
  background: var(--blue-light);
  border: 1.5px solid rgba(37,99,235,0.2);
  border-radius: 50px;
  padding: 0.5rem 1.15rem;
  font-weight: 500;
  transition: all var(--transition);
}
.topic-tag:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ============================================================
   FORMAT CARDS (training.html)
   ============================================================ */
.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.format-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.format-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(8,12,20,0.08);
}
.format-icon { font-size: 1.75rem; margin-bottom: 1rem; display: block; }
.format-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.format-card p { font-size: 0.855rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   PAST SESSIONS LIST (training.html)
   ============================================================ */
.sessions-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 780px;
  margin: 0 auto;
}
.session-row {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: background var(--transition);
}
.session-row:hover { background: rgba(255,255,255,0.08); }
.session-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--blue);
  padding-top: 3px;
}
.session-row-info {}
.session-row-inst {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.93rem;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.session-row-topic {
  font-size: 0.81rem;
  color: rgba(248,250,252,0.5);
}
.session-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--cyan);
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 50px;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
  align-self: start;
}

/* ============================================================
   PROCESS INVITE (training.html)
   ============================================================ */
.invite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.invite-steps { display: flex; flex-direction: column; gap: 1rem; }
.invite-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.invite-step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.invite-step-text {
  font-size: 0.9rem;
  color: var(--muted);
  padding-top: 0.3rem;
  line-height: 1.55;
}
.invite-contact { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: var(--blue-light);
  border-radius: 10px;
}
.contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-item-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 0.15rem;
}
.contact-item-val {
  font-size: 0.9rem;
  color: var(--text);
}

/* ============================================================
   INDUSTRY SECTIONS (industries.html)
   ============================================================ */
.industry-section {
  padding: 4.5rem 0;
}
.industry-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}
.industry-icon-wrap {
  font-size: 3.5rem;
  line-height: 1;
}
.industry-content h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.industry-content p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.use-cases {
  margin-bottom: 1.5rem;
}
.use-cases li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.use-cases li::before {
  content: '·';
  color: var(--blue);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.industry-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--blue);
  font-weight: 500;
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.industry-link:hover { gap: 0.6rem; }

/* ============================================================
   ABOUT — CREDENTIAL CARDS
   ============================================================ */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.cred-card {
  background: var(--blue-light);
  border: 1.5px solid rgba(37,99,235,0.15);
  border-radius: 12px;
  padding: 1.5rem;
}
.cred-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--blue);
  margin-bottom: 0.25rem;
}
.cred-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

/* About two-col story */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-story p { margin-bottom: 1.25rem; font-size: 0.97rem; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  padding: 2rem 1.75rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover {
  box-shadow: 0 12px 36px rgba(8,12,20,0.08);
  transform: translateY(-3px);
}
.value-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.value-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* Ethics */
.ethics-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--blue-light);
  border: 1.5px solid rgba(37,99,235,0.15);
  border-radius: 14px;
  padding: 2.5rem 2.5rem;
  text-align: center;
}
.ethics-box p {
  font-size: 0.97rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}
.ethics-list { text-align: left; margin: 0 auto; display: inline-block; }
.ethics-list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.ethics-list li::before {
  content: '·';
  color: var(--blue);
  font-weight: 700;
  font-size: 1rem;
}
.ethics-note {
  font-size: 0.875rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 1.25rem;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-details {}
.contact-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  font-size: 1.1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-body {}
.contact-item-type {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 0.15rem;
}
.contact-item-value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 400;
}
.next-steps { margin-top: 2.5rem; }
.next-steps h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 1rem;
}
.next-step-list { display: flex; flex-direction: column; gap: 0.75rem; }
.next-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.next-step-n {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 50%;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Form card */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(8,12,20,0.08);
}
.form-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}
.form-note {
  font-size: 0.78rem;
  color: var(--dim);
  text-align: center;
  margin-top: 0.75rem;
  font-style: italic;
}
.form-error {
  font-size: 0.76rem;
  color: #ef4444;
  margin-top: 0.2rem;
  display: none;
}
.form-error.show { display: block; }
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success h3 { color: #16a34a; font-size: 1.2rem; margin-bottom: 0.75rem; }
.form-success p { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(248,250,252,0.55);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}
.footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 0.25rem;
}
.footer-brand-tag {
  font-size: 0.72rem;
  color: var(--dim);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer-brand-desc {
  font-size: 0.845rem;
  color: rgba(248,250,252,0.4);
  line-height: 1.75;
}
.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dim);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  font-size: 0.845rem;
  color: rgba(248,250,252,0.45);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-links a:hover { color: rgba(248,250,252,0.85); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}
.footer-contact-item .ico { font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span {
  font-size: 0.845rem;
  color: rgba(248,250,252,0.45);
  line-height: 1.5;
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  margin-top: 0.5rem;
  transition: background var(--transition);
}
.footer-wa:hover { background: #1ebe5d; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom span {
  font-size: 0.78rem;
  color: rgba(248,250,252,0.28);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}
.wa-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float a:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
}
.wa-float svg { width: 26px; height: 26px; fill: #fff; }
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  white-space: nowrap;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.wa-float a:hover .wa-tooltip { opacity: 1; }
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   VALUE CARDS (3-up on training intro)
   ============================================================ */
.value-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ============================================================
   BOTTOM NOTE (industries.html)
   ============================================================ */
.bottom-note {
  background: var(--dark2);
  padding: 5rem 0;
  text-align: center;
}
.bottom-note h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 0.85rem;
}
.bottom-note p {
  font-size: 0.97rem;
  color: rgba(248,250,252,0.55);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PAGE TRANSITION
   ============================================================ */
@keyframes pageIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
main { animation: pageIn 0.4s ease both; }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero-full .container { grid-template-columns: 1fr; }
  .hero-stats-grid { display: none; }
  .services-strip { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .about-story { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .training-highlight { grid-template-columns: 1fr; gap: 2.5rem; }
  .invite-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-strip { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-inner.reverse { direction: ltr; }
  .section-pad { padding: 3.75rem 0; }
  .section-pad-lg { padding: 4.5rem 0; }
  .format-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value-cards-3 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .industry-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .services-strip { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; gap: 0.75rem; }
  .hero-h1 { font-size: 2.4rem; }
  .training-stat-big { font-size: 5rem; }
  .session-row { grid-template-columns: 1.5rem 1fr; }
  .session-badge { display: none; }
  .form-card { padding: 1.5rem; }
  .cred-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .wa-float { bottom: 1.25rem; right: 1.25rem; }
  .wa-tooltip { display: none; }
}
