/* =====================================================================
   Genesis Safety Academy — Design Tokens
   Direction: bold, high-visibility, safety-industry authoritative.
   Palette: strict white / safety-navy / hazard-orange (brand constraint).
   Typography: Bebas Neue (the actual condensed all-caps face used on
   real safety signage & hazard placards) for headings/buttons/data,
   Source Sans 3 for body copy — swapped out the previous softer
   Barlow Condensed + monospace combo per feedback.
   Signature: hazard-stripe accent bar (diagonal navy/orange, like
   safety barrier tape) used sparingly — under the header, above the
   footer. Cards are flat with solid borders, not soft drop-shadows.
   ===================================================================== */
:root {
  --ink: #0a121f;
  --color-text: #0a121f;
  --color-bg: #ffffff;
  --color-surface: #eef2f7;

  --color-accent: #0a3d8f;
  --color-accent-100: #e6edf8;
  --color-accent-300: #9db8e0;
  --color-accent-600: #0a3d8f;
  --color-accent-700: #082f6e;
  --color-accent-800: #06234f;
  --color-accent-900: #051733;

  --navy-950: #030d1f;

  --flame: #ff6a00;
  --flame-600: #d65600;
  --flame-100: #ffe7d3;
  --wa: #25d366;

  --color-divider: #d7dee7;
  --footer-bg: #051733;

  --font-heading: 'Bebas Neue', 'Barlow Condensed', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(5, 23, 51, 0.10);
  --shadow-md: 0 6px 16px rgba(5, 23, 51, 0.12);
  --shadow-lg: 0 20px 40px rgba(5, 23, 51, 0.16);
  --shadow-flame: 0 6px 16px rgba(255, 106, 0, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading); font-weight: 400; line-height: 0.98; letter-spacing: 0.01em;
  text-transform: uppercase; margin: 0;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
button, a { touch-action: manipulation; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--flame);
  outline-offset: 2px;
}

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===== Hazard stripe — signature accent (diagonal navy/orange, like barrier tape) ===== */
.hazard-stripe {
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--flame), var(--flame) 16px, var(--navy-950) 16px, var(--navy-950) 32px);
}

/* ===== Card surface — flat, bordered, no soft shadow ===== */
.blueprint {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-divider);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.blueprint:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.corner { display: none; }

.duotone { position: relative; overflow: hidden; display: block; }

@keyframes kb { from { transform: scale(1.02) translate(0,0); } to { transform: scale(1.16) translate(-2.5%,-1.5%); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 26px;
  font-family: var(--font-heading); font-weight: 400; font-size: 18px; letter-spacing: 0.03em; text-transform: uppercase;
  border: 2px solid transparent; border-radius: var(--r-sm);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-lg { padding: 15px 30px; font-size: 20px; }
.full-width { width: 100%; }

.btn-flame { background: var(--flame); color: #fff; border-color: var(--flame); box-shadow: var(--shadow-flame); }
.btn-flame:hover { background: var(--flame-600); border-color: var(--flame-600); transform: translateY(-2px); }

.btn-blue { background: var(--color-accent-900); color: #fff; border-color: var(--color-accent-900); }
.btn-blue:hover { background: var(--color-accent); border-color: var(--color-accent); transform: translateY(-2px); }

.btn-ghost-light { background: transparent; color: #fff; border-color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--navy-950); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--color-accent-900); border-color: var(--color-divider); }
.btn-outline:hover { background: var(--color-accent-900); color: #fff; border-color: var(--color-accent-900); transform: translateY(-2px); }

/* ===== Utility bar ===== */
.utility-bar { background: var(--navy-950); color: #eef4fb; font-size: 13px; }
.utility-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; padding: 7px 24px; min-height: 32px; }
.utility-link { color: #c3d2e6; display: inline-flex; align-items: center; gap: 7px; min-height: 28px; font-weight: 600; }
.utility-link a { color: inherit; }
.utility-link a:hover { color: var(--flame); }
.utility-link:hover { color: #fff; }
.utility-phones { gap: 6px; }
.utility-phone-sep { opacity: 0.5; }
.utility-right { margin-left: auto; display: inline-flex; gap: 14px; align-items: center; }
.utility-loc { opacity: 0.8; font-weight: 600; }
.utility-social { display: inline-flex; gap: 10px; }
.utility-social a { color: #c3d2e6; display: inline-flex; transition: color 0.2s ease; }
.utility-social a:hover { color: var(--flame); }

/* ===== Header ===== */
.site-header { position: -webkit-sticky; position: sticky; top: 0; z-index: 260; background: #fff; border-bottom: 1px solid var(--color-divider); box-shadow: var(--shadow-sm); transition: box-shadow 0.3s ease; }
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { position: relative; display: flex; align-items: center; gap: 22px; padding: 12px 24px; }
.brand-group { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo { display: flex; align-items: center; gap: 12px; min-height: 62px; flex-shrink: 0; }
.logo-img { height: 62px; width: auto; }
.logo-name { display: flex; flex-direction: column; font-family: var(--font-heading); font-weight: 400; font-size: 22px; letter-spacing: 0.01em; line-height: 1.05; color: var(--color-accent-900); text-transform: uppercase; }
.logo-name small { font-family: var(--font-body); font-weight: 600; font-size: 11px; color: #5b6b84; letter-spacing: 0.01em; text-transform: none; }
.header-badges { display: flex; flex-direction: column; align-items: center; gap: 3px; flex-shrink: 0; padding-left: 14px; border-left: 1px solid var(--color-divider); }
.header-badges-label { font-family: var(--font-body); font-weight: 700; font-size: 8.5px; letter-spacing: 0.06em; text-transform: uppercase; color: #8390a2; white-space: nowrap; }
.header-badges-row { display: flex; align-items: center; gap: 8px; }
.header-badge-img { height: 30px; width: 30px; object-fit: cover; border-radius: 50%; }
.main-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; font-family: var(--font-body); font-weight: 700; font-size: 14.5px; text-transform: uppercase; letter-spacing: 0.02em; }
.main-nav a { display: inline-flex; align-items: center; color: var(--color-text); position: relative; padding: 6px 0; transition: color 0.2s ease; }
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 3px; background: var(--flame); transition: width 0.25s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--flame); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.nav-cta { flex-shrink: 0; }
.mobile-nav-cta { display: none; }
.mobile-nav-head, .mobile-nav-footer { display: none; }
.mobile-nav-links { display: contents; }
.nav-chevron { display: none; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px; border-radius: var(--r-sm); transition: background 0.2s ease;
}
.hamburger:hover { background: var(--color-accent-100); }
.hamburger span { width: 22px; height: 3px; background: var(--color-text); transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Mobile nav backdrop ===== */
.nav-backdrop {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 240;
  background: rgba(3, 13, 31, 0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-backdrop.show { pointer-events: auto; }

/* ===== First fold — Band 1 + Band 2 together fill the opening screen ===== */
.first-fold { display: flex; flex-direction: column; }

/* ===== Band 1 — Corporate Training photo | program links ===== */
.band1 { background: var(--navy-950); }
.band1-inner { max-width: none; padding: 0; display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: stretch; }
.band1-photo { position: relative; overflow: hidden; min-height: 300px; }
.band1-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.6s ease;
}
.band1-slide.active { opacity: 1; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .band1-slide { transition: none; }
}
.band1-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(3,13,31,.55) 100%); }
.band1-photo-badge {
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--flame); color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: .05em; text-transform: uppercase;
  padding: 9px 16px; border-radius: var(--r-sm);
}
.band1-programs {
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
  padding: clamp(28px, 4vw, 56px) clamp(24px, 5vw, 72px);
}
.band1-programs-eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--flame); margin-bottom: 4px;
}
.band1-program {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; border-radius: var(--r-md);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  color: #fff; transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.band1-program:hover { background: var(--flame); border-color: var(--flame); transform: translateX(5px); }
.band1-program-icon { flex: none; width: 46px; height: 46px; display: grid; place-items: center; background: var(--flame); color: #fff; border-radius: var(--r-sm); transition: background 0.2s ease; }
.band1-program:hover .band1-program-icon { background: rgba(255,255,255,.22); }
.band1-program-title { flex: 1; font-family: var(--font-heading); font-weight: 400; font-size: clamp(22px, 2.3vw, 30px); line-height: 1; text-transform: uppercase; letter-spacing: .01em; }
.band1-program-arrow { flex: none; opacity: .5; transition: opacity 0.2s ease, transform 0.2s ease; }
.band1-program:hover .band1-program-arrow { opacity: 1; transform: translateX(3px); }

/* ===== Band 2 — tagline + headline ===== */
.band2 { background: #fff; border-top: 3px solid var(--flame); }
.band2-inner { padding: clamp(22px, 3vw, 38px) 24px; text-align: center; }
.band2-eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 700; font-size: 14px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--flame-600); margin-bottom: 12px;
}
.band2-title {
  color: var(--color-accent-900); font-size: clamp(24px, 3.6vw, 46px);
  line-height: 1.03; letter-spacing: .005em; max-width: 26ch; margin: 0 auto;
}

/* On desktop/tablet, make the two bands fill the viewport so both are visible on load */
@media (min-width: 861px) {
  .first-fold { min-height: calc(100vh - 128px); }
  .band1 { flex: 1 1 auto; display: flex; align-items: stretch; }
  .band1-inner { width: 100%; }
  .band2 { flex: 0 0 auto; }
}

/* ===== Section shared ===== */
.eyebrow { display: block; font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 10px; }
.eyebrow-flame { color: var(--flame-600); }
h2 { font-size: clamp(32px, 4vw, 50px); line-height: 0.98; letter-spacing: .005em; }
.lead-text { font-size: 16px; color: #333f4d; max-width: 60ch; margin: 20px 0; }
.lead-text-dark { font-size: 16px; color: #dbe4f0; max-width: 44ch; margin: 10px 0 28px; }

.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 34px; }
.section-head-center { text-align: center; margin-bottom: 40px; }
.section-note { font-size: 14px; color: #333f4d; max-width: 40ch; margin: 0; }
.section-cta { font-family: var(--font-body); font-weight: 700; font-size: 15px; color: var(--color-accent); display: inline-flex; align-items: center; gap: 7px; text-transform: uppercase; letter-spacing: 0.02em; }
.section-cta:hover { color: var(--flame-600); }

/* ===== Page header (interior pages) ===== */
.page-header { background: var(--navy-950); padding: 56px 0 40px; text-align: center; }
.page-header .eyebrow { color: var(--flame); }
.page-header h1 { color: #fff; font-size: clamp(32px, 4.6vw, 54px); max-width: 20ch; margin: 0 auto; }

/* ===== About ===== */
.about-grid { max-width: 1240px; margin: 0 auto; padding: 64px 24px 88px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid-tall { align-items: stretch; }
.about-media { aspect-ratio: 5/4; overflow: hidden; border-radius: var(--r-lg); border: 2px solid var(--navy-950); box-shadow: var(--shadow-md); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media-tall { position: sticky; top: 90px; align-self: start; aspect-ratio: 5/4; max-height: calc(100vh - 120px); }

.why-choose-heading { font-family: var(--font-heading); font-weight: 400; text-transform: uppercase; font-size: 26px; margin: 30px 0 16px; color: var(--color-accent-900); }
.why-choose-list { list-style: none; display: grid; gap: 14px; margin-bottom: 22px; }
.why-choose-list li { font-size: 15px; color: #333f4d; line-height: 1.6; padding-left: 26px; position: relative; }
.why-choose-list li::before {
  content: ''; position: absolute; left: 0; top: 7px; width: 12px; height: 12px;
  background: var(--flame);
}
.why-choose-list strong { color: var(--color-accent-900); font-family: var(--font-body); font-weight: 700; }

.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 26px; }
.about-stat { text-align: center; padding: 18px 8px; background: var(--color-accent-900); border-radius: var(--r-md); }
.about-stat-num { display: block; font-family: var(--font-heading); font-weight: 400; font-size: 32px; color: var(--flame); line-height: 1; }
.about-stat-label { display: block; font-size: 11.5px; color: #c3d2e6; margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; }
.play-btn { position: absolute; inset: 0; display: grid; place-items: center; }
.play-btn span { width: 74px; height: 74px; border-radius: 50%; background: var(--flame); color: #fff; display: grid; place-items: center; box-shadow: 0 0 0 8px rgba(255,255,255,.25); transition: background 0.2s ease, transform 0.2s ease; }
.play-btn:hover span { background: var(--flame-600); transform: scale(1.06); }

.about-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

.vm-blocks { display: grid; gap: 24px; margin-bottom: 28px; }
.vm-block { background: #fff; border-radius: var(--r-md); border: 1px solid var(--color-divider); overflow: hidden; box-shadow: var(--shadow-sm); }
.vm-label {
  display: block; font-family: var(--font-heading); font-weight: 400; font-size: 26px;
  text-transform: uppercase; letter-spacing: .03em; color: #fff; padding: 16px 22px;
}
.vm-blue .vm-label { background: var(--color-accent); }
.vm-flame .vm-label { background: var(--flame); }
.vm-text { display: block; font-size: 15.5px; line-height: 1.65; color: #333f4d; padding: 20px 22px 24px; }

/* ===== Vision & Mission band (Home page) ===== */
.vm-band { background: var(--color-surface); padding: 88px 0; }
.vm-band-inner { max-width: 1000px; }
.vm-blocks-home { grid-template-columns: 1fr 1fr; margin-top: 40px; margin-bottom: 0; }
.vm-band-cta { text-align: center; margin-top: 40px; }

/* ===== Stats head (Home page) ===== */
.stats-head { margin-bottom: 20px; }

/* ===== Home CTA band ===== */
.home-cta { background: var(--navy-950); }
.home-cta-inner {
  max-width: 1240px; margin: 0 auto; padding: 64px 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
}
.home-cta-inner h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 8px; }
.home-cta-inner p { color: #c3d2e6; max-width: 46ch; }
.home-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-ghost-dark { background: transparent; color: #fff; border-color: #fff; }
.btn-ghost-dark:hover { background: #fff; color: var(--navy-950); transform: translateY(-2px); }

/* ===== Products ===== */
.products { background: var(--color-bg); padding: 88px 0; border-top: 1px solid var(--color-divider); border-bottom: 1px solid var(--color-divider); }
.product-grid-categories { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  text-align: left; padding: 0; cursor: pointer; color: var(--color-text);
  display: flex; flex-direction: column; width: 100%; overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.product-card:hover { border-color: var(--flame); transform: translateY(-4px); }
.product-thumb { aspect-ratio: 3/4; overflow: hidden; background: #eef2f6; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; transition: transform 0.4s ease; }
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.product-card-text { justify-content: center; background: var(--color-surface); }
.product-body-text { padding: 34px 16px; text-align: center; align-items: center; }
.product-name { font-family: var(--font-heading); font-weight: 400; font-size: 20px; line-height: 1.05; text-transform: uppercase; color: var(--color-text); }
.product-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--flame-600); font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }

/* ===== Why Genesis ===== */
.why { max-width: 1240px; margin: 0 auto; padding: 88px 24px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { padding: 28px 24px; transition: transform .2s ease, border-color .2s ease; }
.why-card:hover { transform: translateY(-3px); border-color: var(--flame); }
.why-icon { width: 50px; height: 50px; display: grid; place-items: center; background: var(--color-accent-900); color: #fff; border-radius: var(--r-sm); margin-bottom: 16px; }
.why-card h4 { font-family: var(--font-heading); font-weight: 400; text-transform: uppercase; font-size: 22px; margin-bottom: 8px; color: var(--color-accent-900); }
.why-card p { font-size: 14px; color: #333f4d; }

/* ===== Courses ===== */
.courses { background: var(--color-surface); padding: 88px 0; }
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.course-card { display: flex; flex-direction: column; color: var(--color-text); overflow: hidden; transition: border-color .2s ease, transform .2s ease; background: #fff; }
.course-card:hover { border-color: var(--flame); transform: translateY(-4px); }
.course-thumb { aspect-ratio: 4/3; overflow: hidden; background: #eef2f6; }
.course-thumb img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s ease; }
.course-card:hover .course-thumb img { transform: scale(1.05); }
.course-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.course-tag { align-self: flex-start; font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--color-accent-900); padding: 4px 10px; border-radius: var(--r-sm); }
.course-name { font-family: var(--font-heading); font-weight: 400; font-size: 24px; line-height: 1.02; text-transform: uppercase; }
.course-desc { font-family: var(--font-body); font-size: 13px; color: #5b6b84; font-weight: 600; }
.course-price { font-family: var(--font-heading); font-weight: 400; font-size: 28px; color: var(--flame-600); flex: 1; }
.course-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--color-accent); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.02em; }
.course-card-featured { border-color: var(--flame); border-width: 2px; }
.course-card-featured .course-tag { background: var(--flame); color: #fff; }
.course-note { text-align: center; margin: 34px auto 0; max-width: 60ch; }

/* ===== Corporate Safety Trainings ===== */
.corporate { max-width: 1240px; margin: 0 auto; padding: 88px 24px; }
.corporate-note { margin: 12px auto 0; }
.corporate-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 40px; margin-top: 44px; }
.corporate-group h3 { font-family: var(--font-heading); font-weight: 400; text-transform: uppercase; font-size: 24px; color: var(--color-accent-900); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--navy-950); }
.corporate-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.corporate-tag {
  border: 2px solid var(--color-divider); color: var(--color-text); font-size: 13.5px; font-weight: 600;
  padding: 9px 16px; background: #fff; border-radius: var(--r-sm);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.corporate-tag:hover { border-color: var(--flame); color: var(--flame-600); background: var(--flame-100); }
.corporate-cta { text-align: center; margin-top: 52px; }

/* ===== Course list page (photo cards) ===== */
.course-list-section { max-width: 1240px; margin: 0 auto; padding: 72px 24px 96px; }

.course-search {
  display: flex; align-items: center; gap: 10px;
  max-width: 460px; margin: 0 auto 40px; padding: 12px 18px;
  background: #fff; border: 1px solid var(--color-divider); border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm); color: #8390a2;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.course-search:focus-within { border-color: var(--color-accent); box-shadow: var(--shadow-md); }
.course-search-input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: 15px; color: var(--color-text);
}
.course-search-input::placeholder { color: #a2acbb; }
.course-search-empty { text-align: center; color: #5b6b84; font-size: 15px; margin: 0 0 24px; }

.course-card2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.course-card2 {
  display: block; color: var(--color-text);
  background: #fff; border: 1px solid var(--color-divider); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.course-card2:hover { box-shadow: var(--shadow-md); border-color: var(--color-accent-300); transform: translateY(-3px); }
.course-card2-featured { border-color: var(--flame); }
.course-card2-featured:hover { border-color: var(--flame-600); }

.course-card2-thumb { position: relative; display: block; aspect-ratio: 1/1; overflow: hidden; background: #eef2f6; }
.course-card2-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.course-card2:hover .course-card2-thumb img { transform: scale(1.04); }
.course-card2-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-body); font-weight: 700; font-size: 10px;
  letter-spacing: .05em; text-transform: uppercase; color: var(--color-accent-900);
  background: #fff; padding: 4px 11px; border-radius: var(--r-pill);
}
.course-card2-tag-diploma { color: var(--flame-600); }

.course-card2-info { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.course-card2-name { font-family: var(--font-heading); font-weight: 400; font-size: 20px; line-height: 1.12; text-transform: uppercase; }
.course-card2-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 4px; padding-top: 12px; border-top: 1px solid var(--color-divider); }
.course-card2-hours { font-size: 12px; color: #5b6b84; font-weight: 600; }
.course-card2-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-body); font-weight: 700; font-size: 13px; color: var(--color-accent);
  text-transform: uppercase; letter-spacing: 0.02em; transition: gap 0.2s ease, color 0.2s ease;
}
.course-card2:hover .course-card2-link { color: var(--flame-600); gap: 8px; }

.course-duration-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  margin: 20px 0 22px; padding: 18px; background: var(--color-surface); border-radius: var(--r-sm);
}
.course-duration-grid > div { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.course-duration-grid span {
  display: flex; align-items: center; justify-content: center;
  min-height: 28px; line-height: 1.3;
  font-size: 11px; color: #5b6b84; text-transform: uppercase; letter-spacing: .03em; font-weight: 600;
}
.course-duration-grid strong { font-family: var(--font-heading); font-weight: 400; font-size: 19px; color: var(--color-accent-900); }

.course-modules h4 { font-family: var(--font-heading); font-weight: 400; font-size: 18px; text-transform: uppercase; margin-bottom: 8px; color: var(--color-accent-900); }
.course-modules-placeholder { font-size: 14px; color: #5b6b84; line-height: 1.6; padding: 14px 16px; background: var(--flame-100); border-left: 3px solid var(--flame); border-radius: var(--r-sm); }

.course-item-actions { margin-top: 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.course-back-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.02em; }
.course-back-link:hover { color: var(--flame-600); }

/* ===== Corporate Trainings page — intro / services / industries / reasons ===== */
.corp-intro { max-width: 900px; margin: 0 auto; padding: 72px 24px 0; text-align: center; }
.corp-intro p { font-size: 15.5px; line-height: 1.7; color: #333f4d; margin-top: 14px; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 1200px; margin: 44px auto 0; padding: 0 24px; }
.service-card { background: #fff; border: 1px solid var(--color-divider); border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); }
.service-card-icon { width: 52px; height: 52px; display: grid; place-items: center; background: var(--color-accent-900); color: #fff; border-radius: var(--r-sm); margin-bottom: 18px; }
.service-card h3 { font-family: var(--font-heading); font-weight: 400; text-transform: uppercase; font-size: 26px; color: var(--color-accent-900); margin-bottom: 10px; line-height: 1.05; }
.service-card > p { font-size: 14.5px; color: #333f4d; }
.service-card h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--flame-600); margin: 20px 0 10px; }
.service-list { display: grid; gap: 9px; }
.service-list li { display: flex; gap: 9px; font-size: 14px; color: var(--color-text); align-items: flex-start; line-height: 1.4; }
.service-list li svg { flex: none; margin-top: 3px; color: var(--flame-600); }

.industry-section { max-width: 1200px; margin: 76px auto 0; padding: 0 24px; }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.industry-chip { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 26px 14px; background: var(--color-surface); border-radius: var(--r-md); transition: background .2s ease, transform .2s ease; }
.industry-chip:hover { background: var(--flame-100); transform: translateY(-3px); }
.industry-chip-icon { width: 46px; height: 46px; display: grid; place-items: center; background: #fff; border: 2px solid var(--color-accent-900); color: var(--color-accent-900); border-radius: 50%; }
.industry-chip span { font-size: 13px; font-weight: 700; color: var(--color-text); line-height: 1.3; }

.reason-section { max-width: 1200px; margin: 76px auto 0; padding: 0 24px; }
.reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.reason-card { padding: 26px 22px; border: 1px solid var(--color-divider); border-radius: var(--r-md); background: #fff; transition: transform .2s ease, border-color .2s ease; }
.reason-card:hover { transform: translateY(-3px); border-color: var(--flame); }
.reason-card-icon { width: 44px; height: 44px; display: grid; place-items: center; background: var(--flame-100); color: var(--flame-600); border-radius: var(--r-sm); margin-bottom: 14px; }
.reason-card h4 { font-family: var(--font-heading); font-weight: 400; text-transform: uppercase; font-size: 19px; color: var(--color-accent-900); margin-bottom: 6px; line-height: 1.05; }
.reason-card p { font-size: 13.5px; color: #333f4d; line-height: 1.5; }

@media (max-width: 1000px) {
  .service-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .industry-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .reason-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px 20px; }
}

/* ===== Corporate Trainings list page ===== */
.training-list-section { max-width: 900px; margin: 0 auto; padding: 72px 24px 96px; }
.training-download-note {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  max-width: 640px; margin: 0 auto 36px; padding: 14px 20px;
  background: var(--color-surface); border-radius: var(--r-sm);
  font-size: 14px; color: #333f4d; text-align: center;
}
.training-download-note svg { flex: none; color: var(--flame-600); }
.training-download-note a { font-weight: 700; color: var(--color-accent); }
.training-download-note a:hover { color: var(--flame-600); }

.training-accordion { display: flex; flex-direction: column; gap: 12px; }
.training-item {
  background: #fff; border: 1px solid var(--color-divider); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.training-item[open] { box-shadow: var(--shadow-md); border-color: var(--color-accent-300); }
.training-item-summary {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; cursor: pointer; list-style: none;
}
.training-item-summary::-webkit-details-marker { display: none; }
.training-item-summary::marker { content: ''; }
.training-item-summary:hover { background: var(--color-surface); }
.training-item-num {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--color-accent-900); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 400; font-size: 14px;
}
.training-item-title { flex: 1; font-family: var(--font-body); font-weight: 700; font-size: 15.5px; color: var(--color-text); }
.training-item-chevron { flex: none; color: #8390a2; transition: transform 0.25s ease, color 0.2s ease; }
.training-item-summary:hover .training-item-chevron { color: var(--flame); }
.training-item[open] .training-item-chevron { transform: rotate(180deg); color: var(--flame); }
.training-item-body { padding: 4px 20px 24px; border-top: 1px solid var(--color-divider); }
.training-item-body .course-modules { margin-top: 18px; }

/* ===== Course detail page ===== */
.course-detail { max-width: 1160px; margin: 0 auto; padding: 72px 24px 96px; }
.course-detail-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 52px; align-items: start; }
.course-detail-media {
  position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--r-lg);
  border: 2px solid var(--navy-950); box-shadow: var(--shadow-lg);
  position: sticky; top: 100px;
}
.course-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.course-detail-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  letter-spacing: .06em; text-transform: uppercase; color: var(--color-accent-900);
  background: #fff; padding: 5px 13px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.course-detail-tag-diploma { color: var(--flame-600); }
.course-detail-back { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; font-size: 13px; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.02em; }
.course-detail-back:hover { color: var(--flame-600); }
.course-detail-lead { font-size: 15.5px; color: #333f4d; line-height: 1.65; margin-bottom: 4px; }

.course-detail-meta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0 26px; }
.course-detail-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; background: var(--color-surface); border-radius: var(--r-pill);
  font-size: 13px; font-weight: 700; color: var(--color-accent-900);
}
.course-detail-chip svg { flex: none; color: var(--flame-600); }

.course-modules { padding: 26px 26px 8px; background: #fff; border: 1px solid var(--color-divider); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.course-modules > h4 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 400; font-size: 22px; text-transform: uppercase;
  margin-bottom: 18px; color: var(--color-accent-900); padding-bottom: 14px; border-bottom: 2px solid var(--color-divider);
}
.course-modules > h4::before {
  content: ''; flex: none; width: 22px; height: 22px; border-radius: 6px;
  background: var(--flame); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20M4 19.5A2.5 2.5 0 0 0 6.5 22H20V2H6.5A2.5 2.5 0 0 0 4 4.5v15Z'/%3E%3C/svg%3E") center/60% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20M4 19.5A2.5 2.5 0 0 0 6.5 22H20V2H6.5A2.5 2.5 0 0 0 4 4.5v15Z'/%3E%3C/svg%3E") center/60% no-repeat;
}
.course-modules-placeholder { font-size: 14px; color: #5b6b84; line-height: 1.6; padding: 14px 16px; background: var(--flame-100); border-left: 3px solid var(--flame); border-radius: var(--r-sm); margin-bottom: 18px; }

.course-modules-content { counter-reset: unit; }
.course-modules-content h4 {
  counter-increment: unit;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-heading); font-weight: 400; font-size: 18px; text-transform: uppercase;
  color: var(--color-accent-900); margin: 22px 0 10px; padding-top: 18px; border-top: 1px solid var(--color-divider);
}
.course-modules-content h4:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.course-modules-content h4::before {
  content: counter(unit);
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-accent-900); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 400; font-size: 13px;
}
.course-modules-content p { font-size: 14.5px; color: #333f4d; line-height: 1.7; margin-bottom: 14px; }
.course-modules-content ul { list-style: none; margin: 0 0 16px; padding-left: 0; display: grid; gap: 7px; }
.course-modules-content ul li { position: relative; padding-left: 22px; font-size: 14.5px; color: #333f4d; line-height: 1.55; }
.course-modules-content ul li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--flame);
}

/* ===== Safety Audits page — photo grid ===== */
.audit-photos-grid { display: grid; grid-template-columns: repeat(var(--audit-photo-count, 3), 1fr); gap: 16px; margin-bottom: 28px; }
.audit-photos-grid[data-count="2"] { --audit-photo-count: 2; }
.audit-photos-grid[data-count="3"] { --audit-photo-count: 3; }
.audit-photo-figure { margin: 0; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--color-divider); box-shadow: var(--shadow-sm); }
.audit-photo-figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.audit-photo-figure figcaption { padding: 8px 10px; font-size: 12.5px; color: #5b6b84; background: var(--color-surface); }
@media (max-width: 700px) {
  .audit-photos-grid { grid-template-columns: 1fr; gap: 14px; }
  .audit-photo-figure img { aspect-ratio: 16/10; }
  .audit-photo-figure figcaption { font-size: 13.5px; }
}

@media (max-width: 1100px) {
  .course-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .course-detail-media { position: static; }
}
@media (max-width: 640px) {
  .course-detail { padding: 56px 18px 72px; }
  .course-modules { padding: 20px 18px 4px; }
  .course-detail-meta-row { gap: 8px; }
}

/* ===== Stats ===== */
.stats { background: var(--navy-950); color: #fff; }
.stats-grid { padding: 64px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-num { font-family: var(--font-heading); font-weight: 400; font-size: clamp(40px, 5.2vw, 64px); line-height: 1; color: var(--flame); }
.stat-label { font-size: 13.5px; color: #c3d2e6; margin-top: 10px; letter-spacing: .03em; font-weight: 600; text-transform: uppercase; }

/* ===== Gallery ===== */
.gallery { max-width: 1240px; margin: 0 auto; padding: 88px 24px; }
.gallery-note { margin: 12px auto 0; }
.gallery-toolbar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-top: 32px; padding: 12px 18px; background: var(--color-surface); border-radius: var(--r-sm);
  font-size: 13px; color: #5b6b84; font-weight: 600;
}
.gallery-count strong { color: var(--color-accent-900); font-family: var(--font-heading); font-weight: 400; font-size: 17px; margin-right: 4px; }
.gallery-hint { display: flex; align-items: center; gap: 6px; }
.gallery-hint svg { flex: none; color: var(--flame-600); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.gallery-item {
  position: relative; display: block; width: 100%; padding: 0; border: 1px solid var(--color-divider); cursor: zoom-in;
  aspect-ratio: 1/1; overflow: hidden; background: #eef2f6; border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item:hover { border-color: var(--flame); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  background: linear-gradient(transparent, rgba(3,13,31,.92));
  padding: 32px 14px 12px; text-align: left;
}
.gallery-item-name {
  display: block; font-family: var(--font-heading); font-weight: 400; font-size: 18px;
  line-height: 1.05; text-transform: uppercase; letter-spacing: .015em; color: #fff;
}
.gallery-item-loc {
  display: flex; align-items: center; gap: 4px; margin-top: 3px;
  font-family: var(--font-body); font-weight: 600; font-size: 11.5px; color: #cfdbe8;
}
.gallery-item-loc svg { flex: none; opacity: .8; }

/* ===== Gallery lightbox ===== */
.lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  background: rgba(3, 13, 31, 0.94);
  padding: 60px 24px;
  animation: fadeUp 0.25s ease;
}
.lightbox[hidden] { display: none; }
.lightbox-content { display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: min(1000px, 92vw); }
.lightbox-image {
  max-width: 100%; max-height: 76vh;
  width: auto; height: auto;
  border-radius: var(--r-md); border: 3px solid #fff;
  object-fit: contain;
}
.lightbox-caption { text-align: center; }
.lightbox-caption-name { display: block; font-family: var(--font-heading); font-weight: 400; font-size: 24px; text-transform: uppercase; color: #fff; }
.lightbox-caption-loc { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 4px; font-family: var(--font-body); font-weight: 600; font-size: 13px; color: #cfdbe8; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.35);
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover { background: var(--flame); border-color: var(--flame); transform: scale(1.06); }
.lightbox-nav {
  width: 48px; height: 48px; flex: none; border-radius: 50%;
  display: grid; place-items: center; margin: 0 8px;
  background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.35);
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-nav:hover { background: var(--flame); border-color: var(--flame); transform: scale(1.06); }
@media (max-width: 640px) {
  .lightbox { padding: 70px 12px; }
  .lightbox-nav { width: 40px; height: 40px; margin: 0 4px; }
  .lightbox-close { top: 14px; right: 14px; }
}

/* ===== Blog ===== */
.blog { max-width: 1240px; margin: 0 auto; padding: 88px 24px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { display: flex; flex-direction: column; color: var(--color-text); overflow: hidden; transition: border-color .2s ease, transform .2s ease; background: #fff; }
.blog-card:hover { border-color: var(--flame); transform: translateY(-4px); }
.blog-thumb { aspect-ratio: 4/3; overflow: hidden; background: #eef2f6; }
.blog-thumb img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.blog-date { font-family: var(--font-body); font-weight: 700; font-size: 12px; color: var(--flame-600); letter-spacing: .04em; text-transform: uppercase; }
.blog-title { font-family: var(--font-heading); font-weight: 400; font-size: 22px; line-height: 1.05; text-transform: uppercase; }
.blog-excerpt { font-family: var(--font-body); font-size: 13.5px; color: #5b6b84; line-height: 1.55; flex: 1; }
.blog-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--color-accent); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.02em; }
.blog-note { text-align: center; margin: 34px auto 0; max-width: 60ch; }

/* ===== Blog article page ===== */
.blog-article-section { max-width: 860px; margin: 0 auto; padding: 72px 24px 0; }
.blog-article-section:last-of-type { padding-bottom: 96px; }
.blog-article-section + .blog-article-section { padding-top: 56px; border-top: 1px solid var(--color-divider); }
.blog-article-media { aspect-ratio: 16/9; overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--color-divider); box-shadow: var(--shadow-sm); margin-bottom: 28px; }
.blog-article-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.blog-article-date { font-family: var(--font-body); font-weight: 700; font-size: 12.5px; color: var(--flame-600); letter-spacing: .04em; text-transform: uppercase; }
.blog-article-tag { font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--color-accent-900); padding: 4px 10px; border-radius: var(--r-sm); }
.blog-article-section h2 { font-family: var(--font-heading); font-weight: 400; font-size: clamp(28px, 4vw, 38px); text-transform: uppercase; line-height: 1.05; margin-bottom: 20px; }
.blog-article-body { font-size: 15.5px; line-height: 1.75; color: #333f4d; }
.blog-article-body p { margin-bottom: 16px; }
.blog-article-body h3 { font-family: var(--font-heading); font-weight: 400; font-size: 20px; text-transform: uppercase; color: var(--color-accent-900); margin: 24px 0 10px; }
.blog-article-body ul { margin: 0 0 16px; padding-left: 20px; display: grid; gap: 8px; }
.blog-article-body ul li { list-style: disc; }
.blog-article-body ol { margin: 0 0 16px; padding-left: 20px; display: grid; gap: 14px; }
.blog-article-body ol li { list-style: decimal; padding-left: 4px; }
.blog-article-body strong { color: var(--color-text); }
.blog-article-cta { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--color-divider); }
.blog-back-link { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 24px; font-family: var(--font-body); font-weight: 700; font-size: 13px; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.02em; }
.blog-back-link:hover { color: var(--flame-600); }

.blog-tip-list { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 12px; counter-reset: tip; }
.blog-tip-list li {
  counter-increment: tip;
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 18px; background: var(--color-surface); border-radius: var(--r-md);
}
.blog-tip-list li::before {
  content: counter(tip);
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-accent-900); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 400; font-size: 15px;
}

/* ===== Clients (continuous marquee) ===== */
.clients { background: var(--color-bg); padding: 64px 0; border-top: 1px solid var(--color-divider); border-bottom: 1px solid var(--color-divider); }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.client-badge {
  flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 30px;
  min-height: 78px;
  min-width: 140px;
  background: var(--color-surface);
  border: 2px solid var(--color-divider);
  border-radius: var(--r-md);
  font-family: var(--font-body); font-weight: 700; font-size: 15px; color: #333f4d;
  text-transform: uppercase; letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.client-badge:hover { background: #fff; border-color: var(--flame); transform: translateY(-2px); }
.client-badge img {
  max-height: 34px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.25s ease;
}
.client-badge:hover img { filter: grayscale(0) opacity(1); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
}

/* ===== Scrolling card tracks (Bands 4/5/6) ===== */
.marquee { padding: 10px 0; }
.training-track, .course-track, .product-track { gap: 24px; padding: 6px 24px; align-items: stretch; }
.training-track { animation-duration: 52s; }
.course-track { animation-duration: 46s; }
.product-track { animation-duration: 40s; }
.course-track .course-card { width: 300px; flex: none; }
.product-track .product-card { width: 236px; flex: none; }

/* Band 4 — corporate training photo cards with company names */
.training-band { padding: 72px 0; background: var(--color-bg); border-top: 1px solid var(--color-divider); border-bottom: 1px solid var(--color-divider); }
.training-card {
  flex: none; width: 320px; margin: 0; position: relative; display: block;
  border-radius: var(--r-md); overflow: hidden; background: #030d1f;
  border: 1px solid var(--color-divider); box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease; cursor: pointer;
}
.training-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.training-card img { width: 100%; height: 210px; object-fit: cover; display: block; }
.training-card-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(3,13,31,.94));
  color: #fff; font-family: var(--font-heading); font-weight: 400; font-size: 22px;
  line-height: 1.05; text-transform: uppercase; letter-spacing: .015em;
  padding: 34px 18px 14px;
}

/* ===== Testimonials ===== */
.testimonials { max-width: 1240px; margin: 0 auto; padding: 88px 24px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { padding: 28px 26px; display: flex; flex-direction: column; gap: 18px; transition: border-color .2s ease, transform .2s ease; }
.testimonial-card:hover { border-color: var(--flame); transform: translateY(-3px); }
.testimonial-card p { font-size: 14.5px; color: #333f4d; line-height: 1.6; flex: 1; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--color-accent-900); color: #fff; display: grid; place-items: center; font-family: var(--font-heading); font-weight: 400; font-size: 18px; }
.avatar-logo { background: #fff; border: 1px solid var(--color-divider); padding: 7px; }
.avatar-logo img { width: 100%; height: 100%; object-fit: contain; }
.author-name { display: block; font-family: var(--font-body); font-weight: 700; font-size: 15px; }
.author-city { display: block; font-family: var(--font-body); font-size: 12px; color: #5b6b84; font-weight: 600; }

/* ===== Testimonial carousel — grid on desktop, one-line carousel on mobile ===== */
.testimonial-carousel { margin-top: 40px; }
.testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-nav-row { display: none; }
@media (max-width: 700px) {
  .testimonial-track {
    display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
    padding: 2px 2px 8px; scrollbar-width: none;
  }
  .testimonial-track::-webkit-scrollbar { display: none; }
  .testimonial-track .testimonial-card { flex: 0 0 84vw; scroll-snap-align: start; }
  .testimonial-nav-row { display: flex; justify-content: center; gap: 14px; margin-top: 22px; }
}
.testimonial-nav-btn {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--color-divider); color: var(--color-accent-900);
  cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.testimonial-nav-btn:hover { background: var(--flame); border-color: var(--flame); color: #fff; transform: translateY(-2px); }
.testimonial-nav-btn:active { transform: translateY(0); }
.testimonial-nav-row-always { display: flex; justify-content: center; gap: 14px; margin-top: 30px; }

/* ===== Testimonial video modal ===== */
.testimonial-card { cursor: pointer; position: relative; }
.testimonial-card { cursor: default; }
.testimonial-card:has(.testimonial-play-badge) { cursor: pointer; }
.testimonial-play-badge {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--flame); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, background .2s ease;
}
.testimonial-card:hover .testimonial-play-badge { transform: scale(1.1); background: var(--flame-600); }

.video-modal-backdrop {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(3, 13, 31, 0.92);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.video-modal-backdrop.show { opacity: 1; pointer-events: auto; }
.video-modal {
  background: var(--navy-950); border-radius: var(--r-lg); overflow: hidden;
  width: 50vw; min-width: 340px; max-width: 640px;
  transform: scale(.94); transition: transform 0.25s ease;
  box-shadow: var(--shadow-lg);
}
.video-modal-backdrop.show .video-modal { transform: scale(1); }
.video-modal-player {
  position: relative; aspect-ratio: 16/9; background: #000;
  display: flex; align-items: center; justify-content: center;
}
.video-modal-player video { width: 100%; height: 100%; }
.video-modal-letter-img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.video-modal-spinner {
  position: absolute; top: 50%; left: 50%; width: 40px; height: 40px;
  margin: -20px 0 0 -20px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.25); border-top-color: var(--flame);
  animation: video-spin 0.8s linear infinite; z-index: 1; transition: opacity 0.2s ease;
}
.video-modal-spinner.hide { opacity: 0; pointer-events: none; }
@keyframes video-spin { to { transform: rotate(360deg); } }
.video-modal-placeholder { display: flex; flex-direction: column; align-items: center; gap: 12px; color: #8ea0b6; text-align: center; padding: 24px; }
.video-modal-placeholder .play-circle {
  width: 64px; height: 64px; border-radius: 50%; background: var(--flame);
  color: #fff; display: grid; place-items: center;
}
.video-modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.video-modal-close:hover { background: var(--flame); transform: rotate(90deg); }
.video-modal-info { padding: 22px 26px 26px; color: #fff; }
.video-modal-quote { font-size: 15.5px; line-height: 1.6; color: #dbe4f0; margin-bottom: 16px; }
.video-modal-info .testimonial-author .author-name { color: #fff; }
.video-modal-info .testimonial-author .author-city { color: #9db3cc; }

@media (max-width: 640px) {
  .video-modal { width: 92vw; min-width: 0; }
  .video-modal-info { padding: 18px 18px 22px; }
}
.testimonial-viewall { text-align: center; margin-top: 30px; }

/* ===== Contact ===== */
.contact { background: var(--navy-950); color: #fff; }
.contact-grid { max-width: 1240px; margin: 0 auto; padding: 88px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.enquiry-contact-grid { grid-template-areas: "heading form" "methods form"; }
.enquiry-heading-col { grid-area: heading; }
.enquiry-methods-col { grid-area: methods; }
.enquiry-form-col { grid-area: form; }
.contact-heading { color: #fff; margin: 10px 0 0; }
.contact-methods { display: grid; gap: 14px; }
.contact-method { display: flex; align-items: center; gap: 14px; color: #fff; }
.contact-method > span:last-child { flex: 1; min-width: 0; }
.contact-method-icon { width: 46px; height: 46px; flex: none; display: grid; place-items: center; background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.25); border-radius: var(--r-sm); }
.contact-method-icon-wa { background: var(--wa); border: none; }
.contact-method-label { display: block; font-family: var(--font-body); font-weight: 700; font-size: 11.5px; color: #b7c6db; text-transform: uppercase; letter-spacing: .04em; }
.contact-method-value { font-family: var(--font-heading); font-weight: 400; font-size: 22px; text-transform: uppercase; transition: color 0.2s ease; }
.contact-method:hover .contact-method-value { color: var(--flame); }
.contact-method-static { align-items: flex-start; }
.contact-address { font-family: var(--font-body); font-size: 14.5px; font-weight: 400; line-height: 1.6; color: #dbe4f0; text-transform: none; }
.contact-address-note { color: #b7c6db; font-size: 13px; }

.contact-compliance { display: flex; flex-wrap: wrap; gap: 10px 14px; margin-top: 24px; font-family: var(--font-body); font-weight: 700; font-size: 12px; color: #b7c6db; }
.contact-compliance span { border: 2px solid rgba(255,255,255,.25); border-radius: var(--r-sm); padding: 6px 14px; }

.contact-map { margin-top: 24px; border: 2px solid rgba(255,255,255,.25); border-radius: var(--r-md); aspect-ratio: 16/10; overflow: hidden; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

.contact-quicklinks { display: grid; gap: 12px; margin-top: 28px; }
.contact-quicklink {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md);
  color: #fff; transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.contact-quicklink:hover { background: rgba(255,255,255,.1); border-color: var(--flame); transform: translateY(-2px); }
.contact-quicklink svg { flex: none; margin-top: 2px; color: var(--flame); }
.contact-quicklink strong { display: block; font-family: var(--font-heading); font-weight: 400; text-transform: uppercase; font-size: 15.5px; margin-bottom: 3px; }
.contact-quicklink span { font-size: 13px; color: #c3d2e6; line-height: 1.4; }

.contact-form-panel { background: #fff; color: var(--color-text); padding: 32px 30px; border-radius: var(--r-lg); }
.form-title { font-family: var(--font-heading); font-weight: 400; text-transform: uppercase; font-size: 26px; margin-bottom: 4px; }
.form-response-badge {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 14px;
  padding: 6px 12px; background: var(--flame-100); color: var(--flame-600);
  border-radius: var(--r-pill); font-size: 12.5px; font-weight: 700;
}
.form-hint { font-size: 13px; color: #5b6b84; margin-bottom: 20px; }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 12.5px; font-weight: 700; color: var(--color-accent-900); text-transform: uppercase; letter-spacing: 0.02em; }
.input {
  width: 100%; min-height: 46px; padding: 11px 14px; font: inherit; font-size: 15px;
  color: var(--color-text); background: var(--color-bg);
  border: 2px solid var(--color-divider); border-radius: var(--r-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
textarea.input { min-height: 96px; resize: vertical; }
.input:hover { border-color: #9aa7b5; }
.input:focus-visible { border-color: var(--flame); outline-offset: 0; }
.field-error { color: var(--flame-600); font-size: 12.5px; min-height: 1.1em; font-weight: 600; }

.form-success { text-align: center; padding: 34px 8px; }
.success-icon { width: 66px; height: 66px; display: inline-grid; place-items: center; background: var(--flame-100); color: var(--flame-600); border-radius: 50%; margin-bottom: 18px; }
.form-success h3 { font-family: var(--font-heading); font-weight: 400; text-transform: uppercase; font-size: 28px; margin-bottom: 8px; }
.form-success p { font-size: 15px; color: #5b6b84; margin-bottom: 20px; }

/* ===== Footer ===== */
.site-footer { background: var(--footer-bg); color: #c4d1de; }
.footer-grid { padding: 64px 24px 32px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-logo-chip {
  display: inline-flex; align-items: center;
  background: #fff;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  margin-bottom: 18px;
}
.footer-logo { height: 46px; width: auto; }
.footer-grid > div > p { font-size: 14px; color: #8ea0b6; max-width: 36ch; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%; color: #c4d1de; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { background: var(--flame); border-color: var(--flame); color: #fff; }
.footer-grid h5 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; font-size: 14px; font-weight: 600; }
.footer-links a { color: #c4d1de; min-height: 20px; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--flame); }
.footer-muted { color: #8ea0b6; }
.footer-bottom-bar { border-top: none; }
.footer-bottom { padding: 18px 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 12.5px; color: #8ea0b6; font-weight: 600; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: #8ea0b6; transition: color 0.2s ease; }
.footer-legal a:hover { color: var(--flame); }

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 24px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.5);
  animation: floaty 3.2s ease-in-out infinite;
}

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .enquiry-contact-grid { grid-template-areas: "heading" "form" "methods"; }
  .about-media-tall { position: static; max-height: none; aspect-ratio: 5/4; }
  .pillars-grid { grid-template-columns: 1fr; }
  .vm-blocks-home { grid-template-columns: 1fr; }
  .product-grid-categories { grid-template-columns: repeat(2, 1fr); }
  .corporate-groups { grid-template-columns: 1fr; }
  .why-grid, .course-grid, .blog-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  .utility-loc { display: none; }

  .main-nav {
    position: fixed; top: 0; right: 0; width: 86%; max-width: 360px; height: 100vh; height: 100dvh;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform 0.35s ease; z-index: 250;
    overflow-y: auto; font-size: 16px;
  }
  .main-nav.open { transform: translateX(0); }

  .mobile-nav-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 22px; border-bottom: 1px solid var(--color-divider); flex: none;
  }
  .mobile-nav-logo { height: 34px; width: auto; }
  .nav-close {
    width: 40px; height: 40px; border-radius: 50%; flex: none;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-surface); color: var(--color-text);
    transition: background 0.2s ease, color 0.2s ease;
  }
  .nav-close:hover { background: var(--flame-100); color: var(--flame-600); }

  .mobile-nav-links { display: flex; flex-direction: column; padding: 10px 14px; flex: 1; }
  .main-nav .mobile-nav-links a {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 15px 12px; border-radius: var(--r-sm);
    font-size: 16px; font-weight: 700; color: var(--color-text); text-transform: uppercase;
    border-bottom: none; transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  }
  .main-nav .mobile-nav-links a::after { display: none; }
  .main-nav .mobile-nav-links a:hover { background: var(--color-accent-100); padding-left: 18px; }
  .main-nav .mobile-nav-links a.active { color: var(--flame-600); background: var(--flame-100); }
  .nav-chevron { display: block; flex: none; opacity: 0.45; }
  .main-nav .mobile-nav-links a:hover .nav-chevron,
  .main-nav .mobile-nav-links a.active .nav-chevron { opacity: 1; color: var(--flame-600); }

  .mobile-nav-footer {
    display: flex; flex-direction: column; gap: 16px; flex: none;
    padding: 18px 22px 26px; border-top: 1px solid var(--color-divider);
  }
  .mobile-nav-cta { display: inline-flex; }
  .mobile-nav-contact { display: flex; flex-direction: column; gap: 10px; }
  .mobile-nav-contact a { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #5a636c; font-weight: 600; }
  .mobile-nav-contact a:hover { color: var(--flame-600); }
  .mobile-nav-contact svg { flex: none; color: var(--color-accent); }

  .hamburger { display: flex; margin-left: auto; }
  .nav-cta { display: none; }
  .header-badges-row { gap: 8px; }
  .header-badge-img { height: 26px; width: 26px; }
  .product-grid-categories, .why-grid, .course-grid, .blog-grid, .testimonial-grid, .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .course-card2-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --r-sm: 8px; --r-md: 12px; --r-lg: 16px; }
  .container { padding: 0 18px; }

  .nav-inner { gap: 12px; padding: 10px 16px; }
  .logo-img { height: 44px; }
  .logo { min-height: 44px; gap: 8px; }
  .logo-name { font-size: 15px; }
  .logo-name small { font-size: 8px; }
  .header-badges { padding-left: 8px; gap: 2px; }
  .header-badges-label { font-size: 7px; }
  .header-badges-row { gap: 5px; }
  .header-badge-img { height: 22px; width: 22px; }

  .band1-inner { grid-template-columns: 1fr; padding: 0; }
  .band1-photo { min-height: 0; height: 190px; }
  .band1-photo::after { background: linear-gradient(0deg, rgba(3,13,31,.5), transparent 45%); }
  .band1-programs { padding: 22px 18px; gap: 12px; }
  .band1-program { padding: 15px 18px; gap: 13px; }
  .band1-program-icon { width: 40px; height: 40px; }
  .band2-inner { padding: 26px 18px; }
  .band2-eyebrow { font-size: 12px; margin-bottom: 10px; }

  .about-grid { padding: 64px 18px; gap: 32px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .why, .blog, .testimonials, .corporate { padding: 64px 18px; }

  .course-list-section { padding: 56px 18px 72px; }
  .course-card2-grid { grid-template-columns: 1fr; }
  .course-card2-name { font-size: 19px; }
  .course-card2-body { padding: 4px 16px 22px; }
  .course-duration-grid { grid-template-columns: repeat(2, 1fr); gap: 14px 10px; }
  .corporate-groups { gap: 24px; margin-top: 28px; }
  .products, .courses { padding: 60px 0; }
  .contact-grid { padding: 64px 18px; gap: 28px; }
  .stats-grid { padding: 40px 18px; gap: 24px; }
  .stat-num { font-size: 34px; }

  .section-head, .section-head-center { margin-bottom: 32px; }
  .why-grid, .course-grid, .blog-grid, .testimonial-grid { gap: 24px; }
  .why-card { padding: 24px 20px; }
  .vm-band { padding: 64px 0; }
  .vm-blocks-home { gap: 20px; margin-top: 32px; }

  .contact-form-panel { padding: 24px 20px; }

  .footer-grid { padding: 44px 22px 8px; gap: 0; text-align: left; }
  .footer-grid > div { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-grid > div:last-child { border-bottom: none; }
  .footer-logo-chip { margin: 0 0 16px; }
  .footer-grid > div > p { max-width: 40ch; margin: 0; }
  .footer-grid h5 { font-size: 13px; letter-spacing: .1em; }
  .footer-links { justify-items: start; }

  .footer-bottom { padding: 20px 18px; flex-direction: column; align-items: flex-start; text-align: left; gap: 10px; }

  .training-band { padding: 48px 0; }
  .training-track, .course-track, .product-track { gap: 16px; padding: 6px 16px; }
  .training-card { width: 250px; }
  .training-card img { height: 168px; }
  .training-card-caption { font-size: 19px; padding: 30px 14px 12px; }
  .course-track .course-card { width: 260px; }
  .product-track .product-card { width: 205px; }

  .home-cta-inner { padding: 48px 18px; flex-direction: column; align-items: flex-start; gap: 22px; }
  .home-cta-actions { width: 100%; flex-direction: column; }
  .home-cta-actions .btn { width: 100%; justify-content: center; }
}
