@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');
/* ==========================================================================
   GogoTraining Homepage Redesign — 2026
   Ported from the approved Replit build (React/Tailwind) to plain CSS.
   All rules are scoped under .gg26 so nothing leaks into the rest of the
   site, and the old global styles are explicitly reset where needed.
   No LESS / gulp build required — this is a final, hand-written stylesheet.
   ========================================================================== */

/* ---- Design tokens ---- */
.gg26 {
  --gg-green: #178843;        /* brand primary */
  --gg-green-deep: #116532;   /* hero gradient start */
  --gg-green-bright: #22C55E; /* active dots, accents */
  --gg-green-ui: #16a34a;     /* light-section green */
  --gg-green-hover: #15803d;
  --gg-accent: #C92D12;       /* red-orange accent */
  --gg-ink: #0a0a0a;
  --gg-font-head: 'Sora', sans-serif;
  --gg-font-body: 'Open Sans', sans-serif;
}

/* ---- Base / resets inside the redesign canvas ---- */
.gg26 {
  background: #000;
  font-family: var(--gg-font-body);
  color: #fff;
  line-height: 1.5;
  overflow-x: clip;
}
.gg26 *, .gg26 *::before, .gg26 *::after { box-sizing: border-box; }
.gg26 h1, .gg26 h2, .gg26 h3, .gg26 h4 {
  font-family: var(--gg-font-head);
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  text-transform: none;
}
.gg26 p { margin: 0; }
.gg26 a { text-decoration: none; transition: color .2s ease; }
.gg26 img { max-width: 100%; border: none; }
.gg26 ul { list-style: none; margin: 0; padding: 0; }
.gg26 button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
.gg26 .gg26-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.gg26 .gg26-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

html { scroll-behavior: smooth; }

/* Anchor offset so sections clear the sticky header when deep-linked */
.gg26 section[id] { scroll-margin-top: 96px; }

/* ---- Buttons (pill style from the approved design) ---- */
.gg26 .gg26-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 14px;
  height: 48px;
  padding: 0 24px;
  transition: all .2s ease-out;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .gg26 .gg26-btn { height: 56px; padding: 0 32px; font-size: 16px; }
}
.gg26 .gg26-btn-white {
  background: #fff;
  color: var(--gg-green) !important;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.2);
}
.gg26 .gg26-btn-white:hover { background: rgba(255,255,255,.9); }
.gg26 .gg26-btn-ghost {
  background: transparent;
  border: 2px solid #fff;
  color: #fff !important;
}
.gg26 .gg26-btn-ghost:hover { background: rgba(255,255,255,.1); }
.gg26 .gg26-btn-green {
  background: var(--gg-green-ui);
  color: #fff !important;
  box-shadow: 0 1px 2px rgba(22,163,74,.2), 0 8px 24px rgba(22,163,74,.25);
}
.gg26 .gg26-btn-green:hover {
  background: var(--gg-green-hover);
  box-shadow: 0 1px 2px rgba(22,163,74,.2), 0 12px 32px rgba(22,163,74,.35);
  transform: translateY(-1px);
}
.gg26 .gg26-btn-white-ink {
  background: #fff;
  color: var(--gg-ink) !important;
  border: 1px solid rgba(10,10,10,.15);
  box-shadow: 0 1px 2px rgba(10,10,10,.04);
}
.gg26 .gg26-btn-white-ink:hover { border-color: var(--gg-ink); transform: translateY(-1px); }

/* ==========================================================================
   1. BRAND STATEMENT
   ========================================================================== */
.gg26 .gg26-brand {
  background: #000;
  padding: 24px 16px 8px;
  text-align: center;
}
.gg26 .gg26-brand h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  font-size: 40px;
  line-height: 1.05;
}
.gg26 .gg26-brand h1 span { display: block; color: var(--gg-green); }
.gg26 .gg26-brand .gg26-brand-sub {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 24px auto 12px;
  max-width: 672px;
  line-height: 1.375;
}
.gg26 .gg26-brand .gg26-brand-desc {
  font-size: 19px;
  color: rgba(255,255,255,.7);
  margin: 0 auto;
  max-width: 672px;
}
.gg26 .gg26-nowrap { white-space: nowrap; }
@media (min-width: 640px)  { .gg26 .gg26-brand h1 { font-size: 52px; } }
@media (min-width: 768px)  {
  .gg26 .gg26-brand h1 { font-size: 60px; }
  .gg26 .gg26-brand .gg26-brand-desc { font-size: 20px; max-width: 920px; }
}
@media (min-width: 1024px) { .gg26 .gg26-brand h1 { font-size: 68px; } }

/* ==========================================================================
   2. HERO CAROUSEL
   ========================================================================== */
.gg26 .gg26-hero {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 16px 0;
  position: relative;
}
@media (min-width: 768px) { .gg26 .gg26-hero { padding: 16px 32px 0; } }

.gg26 .gg26-hero-viewport {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.5);
  position: relative;
}
@media (min-width: 768px) { .gg26 .gg26-hero-viewport { border-radius: 24px; } }

.gg26 .gg26-hero-track {
  display: flex;
  transition: transform .5s ease;
  touch-action: pan-y;
}
.gg26 .gg26-hero-slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
}
.gg26 .gg26-hero-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--gg-green-deep), var(--gg-green));
}
@media (min-width: 1024px) {
  .gg26 .gg26-hero-card { flex-direction: row; align-items: stretch; height: 520px; }
}

.gg26 .gg26-hero-content {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 24px 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
}
@media (min-width: 640px)  { .gg26 .gg26-hero-content { padding: 32px; } }
@media (min-width: 768px)  { .gg26 .gg26-hero-content { padding: 40px; } }
@media (min-width: 1024px) { .gg26 .gg26-hero-content { width: 50%; padding: 48px; } }

.gg26 .gg26-hero-content h2 {
  font-weight: 800;
  color: #fff;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  overflow-wrap: break-word;
}
.gg26 .gg26-hero-content h2 span { display: block; }
@media (min-width: 640px)  { .gg26 .gg26-hero-content h2 { font-size: 34px; } }
@media (min-width: 768px)  { .gg26 .gg26-hero-content h2 { font-size: 44px; margin-bottom: 24px; } }
@media (min-width: 1024px) { .gg26 .gg26-hero-content h2 { font-size: 40px; } }
@media (min-width: 1280px) { .gg26 .gg26-hero-content h2 { font-size: 46px; } }
@media (min-width: 1536px) { .gg26 .gg26-hero-content h2 { font-size: 52px; } }

.gg26 .gg26-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  margin-bottom: 20px;
  max-width: 512px;
  line-height: 1.625;
}
@media (min-width: 640px) { .gg26 .gg26-hero-sub { font-size: 16px; } }
@media (min-width: 768px) { .gg26 .gg26-hero-sub { font-size: 18px; margin-bottom: 40px; } }

.gg26 .gg26-hero-ctas { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 640px) { .gg26 .gg26-hero-ctas { flex-direction: row; gap: 16px; } }
.gg26 .gg26-hero-ctas .gg26-btn { width: 100%; }
@media (min-width: 640px) { .gg26 .gg26-hero-ctas .gg26-btn { width: auto; } }

.gg26 .gg26-hero-image {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px)  { .gg26 .gg26-hero-image { height: 360px; } }
@media (min-width: 1024px) { .gg26 .gg26-hero-image { width: 50%; height: auto; } }
.gg26 .gg26-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Top fade where the image stacks under the panel (mobile/tablet only) */
.gg26 .gg26-hero-image .gg26-hero-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(17,101,50,.8) 0%, rgba(17,101,50,.2) 18%, transparent 42%);
}
@media (min-width: 1024px) { .gg26 .gg26-hero-image .gg26-hero-fade { display: none; } }

/* Arrows */
.gg26 .gg26-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  transition: all .2s ease;
  opacity: 0;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.3);
  z-index: 30;
}
.gg26 .gg26-hero:hover .gg26-hero-arrow { opacity: 1; }
.gg26 .gg26-hero-arrow:hover { background: #fff; color: var(--gg-green); border-color: transparent; }
.gg26 .gg26-hero-arrow-prev { left: 8px; }
.gg26 .gg26-hero-arrow-next { right: 8px; }
@media (min-width: 768px) {
  .gg26 .gg26-hero-arrow-prev { left: 16px; }
  .gg26 .gg26-hero-arrow-next { right: 16px; }
}
/* Touch devices: arrows always visible */
@media (hover: none) { .gg26 .gg26-hero-arrow { opacity: 1; } }

/* Dots */
.gg26 .gg26-hero-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 12px;
}
.gg26 .gg26-hero-dot {
  padding: 20px 8px;
  margin: -12px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gg26 .gg26-hero-dot span {
  display: block;
  height: 10px;
  width: 10px;
  border-radius: 9999px;
  background: rgba(255,255,255,.35);
  transition: all .3s ease;
}
.gg26 .gg26-hero-dot.is-active span {
  width: 32px;
  background: var(--gg-green-bright);
}

/* ==========================================================================
   3. TRUSTED BY
   ========================================================================== */
.gg26 .gg26-trusted {
  background: #000;
  padding: 16px 0 48px;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.gg26 .gg26-trusted-label {
  font-size: 14px;
  letter-spacing: 2.5px;
  color: #9CA3AF;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 36px;
}
.gg26 .gg26-trusted-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) { .gg26 .gg26-trusted-row { gap: 40px; } }
.gg26 .gg26-trusted-row img {
  min-width: 0;
  flex: 1 1 0;
  height: auto;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  max-height: 45px;
}
@media (min-width: 640px) {
  .gg26 .gg26-trusted-row img.gg26-logo-pearson  { max-height: 78px; }
  .gg26 .gg26-trusted-row img.gg26-logo-microsoft{ max-height: 73px; }
  .gg26 .gg26-trusted-row img.gg26-logo-goodwill { max-height: 98px; }
  .gg26 .gg26-trusted-row img.gg26-logo-bae      { max-height: 55px; }
  .gg26 .gg26-trusted-row img.gg26-logo-cowboys  { max-height: 100px; }
  .gg26 .gg26-trusted-row img.gg26-logo-hyatt    { max-height: 73px; }
}

/* ==========================================================================
   4. ITIL PATHS  (Upgrade to ITIL 5)
   ========================================================================== */
.gg26 .gg26-paths {
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
  border-top: 1px solid #334155;
  border-bottom: 1px solid #334155;
}
@media (min-width: 768px) { .gg26 .gg26-paths { padding: 100px 0; } }
.gg26 .gg26-paths-inner { max-width: 860px; margin: 0 auto; }
.gg26 .gg26-paths-head { text-align: center; margin-bottom: 32px; }
@media (min-width: 768px) { .gg26 .gg26-paths-head { margin-bottom: 48px; } }
.gg26 .gg26-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gg-accent);
  padding: 6px 12px;
  border-radius: 9999px;
  margin-bottom: 16px;
}
.gg26 .gg26-paths-head h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}
@media (min-width: 768px)  { .gg26 .gg26-paths-head h2 { font-size: 42px; } }
@media (min-width: 1024px) { .gg26 .gg26-paths-head h2 { font-size: 44px; } }
.gg26 .gg26-paths-head p {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.625;
  max-width: 672px;
  margin: 0 auto;
}
@media (min-width: 768px) { .gg26 .gg26-paths-head p { font-size: 16px; } }

.gg26 .gg26-paths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (min-width: 768px) { .gg26 .gg26-paths-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }

.gg26 .gg26-path-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  transition: all .2s ease-out;
  color: inherit;
}
.gg26 .gg26-path-card:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.2); }
.gg26 .gg26-path-card.is-featured {
  border: 2px solid rgba(34,197,94,.6);
  box-shadow: 0 8px 32px rgba(34,197,94,.18);
}
.gg26 .gg26-path-card.is-featured:hover { border-color: rgba(34,197,94,.6); }
.gg26 .gg26-path-pop {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gg-green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.2);
  white-space: nowrap;
}
.gg26 .gg26-path-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
@media (min-width: 768px) { .gg26 .gg26-path-body { padding: 28px; } }
.gg26 .gg26-path-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.gg26 .gg26-path-icon {
  height: 40px;
  width: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
}
.gg26 .gg26-path-card.is-featured .gg26-path-icon { background: var(--gg-green); color: #fff; }
.gg26 .gg26-path-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
  background: var(--gg-green);
  color: #fff;
}
.gg26 .gg26-path-card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}
@media (min-width: 768px) { .gg26 .gg26-path-card h3 { font-size: 22px; } }
.gg26 .gg26-path-card .gg26-path-desc {
  font-size: 14px;
  line-height: 1.625;
  color: #E5E7EB;
  margin-bottom: 24px;
  flex-grow: 1;
}
.gg26 .gg26-path-cta {
  width: 100%;
  border-radius: 9999px;
  height: 44px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #0F172A;
  transition: background .2s ease;
}
.gg26 .gg26-path-card.is-featured .gg26-path-cta { background: var(--gg-green); color: #fff; }
.gg26 .gg26-path-card:hover .gg26-path-cta .gg26-icon { transform: translateX(4px); }
.gg26 .gg26-path-cta .gg26-icon { transition: transform .2s ease; }
.gg26 .gg26-paths-more { margin-top: 32px; text-align: center; }
.gg26 .gg26-paths-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
}
.gg26 .gg26-paths-more a:hover { color: var(--gg-green-bright); text-decoration: underline; text-underline-offset: 4px; }

/* ==========================================================================
   5. IT & AI PASS (light section)
   ========================================================================== */
.gg26 .gg26-pass {
  position: relative;
  overflow: hidden;
  color: var(--gg-ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(22,163,74,.06) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f1f5f1 100%);
  padding: 140px 0 120px;
}
.gg26 .gg26-pass::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #16a34a 50%, transparent 100%);
  pointer-events: none;
}
.gg26 .gg26-pass-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.gg26 .gg26-pass-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--gg-ink);
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.gg26 .gg26-pass-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gg-green-ui);
  box-shadow: 0 0 0 3px rgba(22,163,74,.2);
  display: inline-block;
}
.gg26 .gg26-pass-head h2 {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gg-ink);
  line-height: 1.05;
  margin-bottom: 20px;
}
.gg26 .gg26-pass-head p {
  font-size: 19px;
  line-height: 1.5;
  color: #4b5563;
  max-width: 620px;
  margin: 0 auto;
}

/* Stats card */
.gg26 .gg26-pass-stats {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 32px 20px;
  background: #fff;
  border: 1px solid rgba(10,10,10,.06);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(10,10,10,.04), 0 12px 32px rgba(10,10,10,.06), 0 0 0 1px rgba(22,163,74,.08);
  row-gap: 32px;
}
.gg26 .gg26-pass-stats::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(22,163,74,.3), transparent);
  pointer-events: none;
}
.gg26 .gg26-pass-stat { position: relative; text-align: center; }
.gg26 .gg26-pass-stat-number {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gg-green-ui);
  line-height: 1;
  font-family: var(--gg-font-head);
}
.gg26 .gg26-pass-stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #4b5563;
  margin-top: 12px;
}
.gg26 .gg26-pass-stat-divider {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(10,10,10,.08);
  display: none;
}
@media (min-width: 769px) {
  .gg26 .gg26-pass-stats { grid-template-columns: repeat(4, 1fr); padding: 48px 32px; }
  .gg26 .gg26-pass-stat-number { font-size: 56px; }
  .gg26 .gg26-pass-stat-divider { display: block; }
}

/* Content grid: tiles + video */
.gg26 .gg26-pass-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .gg26 .gg26-pass-grid { margin-bottom: 56px; } }
@media (min-width: 1024px) { .gg26 .gg26-pass-grid { grid-template-columns: 1fr 1.7fr; } }
.gg26 .gg26-pass-col { display: flex; flex-direction: column; min-width: 0; }
.gg26 .gg26-pass-col h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--gg-ink);
  margin-bottom: 12px;
}
@media (min-width: 768px) { .gg26 .gg26-pass-col h3 { font-size: 24px; margin-bottom: 20px; } }

.gg26 .gg26-pass-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 640px)  { .gg26 .gg26-pass-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gg26 .gg26-pass-tiles { grid-template-columns: repeat(4, 1fr); } }
.gg26 .gg26-pass-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px;
  background: #fff;
  border: 1px solid rgba(10,10,10,.08);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(10,10,10,.03);
  transition: all .25s ease-out;
}
.gg26 .gg26-pass-tile:hover {
  border-color: rgba(22,163,74,.4);
  box-shadow: 0 12px 32px rgba(22,163,74,.12), 0 0 0 1px rgba(22,163,74,.2);
  transform: translateY(-3px);
}
.gg26 .gg26-pass-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(22,163,74,.08);
  color: var(--gg-green-ui);
}
.gg26 .gg26-pass-tile h4 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--gg-ink);
  font-family: var(--gg-font-body);
}
.gg26 .gg26-pass-tile p {
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
  margin-top: 3px;
  letter-spacing: .01em;
}
.gg26 .gg26-pass-browse { margin-top: 24px; text-align: center; }
@media (min-width: 768px) { .gg26 .gg26-pass-browse { text-align: left; } }
.gg26 .gg26-pass-browse a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gg-green-ui);
}
.gg26 .gg26-pass-browse a:hover .gg26-icon { transform: translateX(2px); }
.gg26 .gg26-pass-browse .gg26-icon { transition: transform .2s ease; }

/* Video block */
.gg26 .gg26-pass-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
  min-height: 420px;
  max-height: 520px;
  background: var(--gg-ink);
  box-shadow: 0 4px 12px rgba(10,10,10,.08), 0 24px 48px rgba(10,10,10,.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  cursor: pointer;
}
.gg26 .gg26-pass-video::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  pointer-events: none;
}
.gg26 .gg26-pass-play {
  height: 112px;
  width: 112px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease-out;
  box-shadow: 0 0 60px rgba(255,255,255,.25), 0 0 120px rgba(34,197,94,.3);
}
.gg26 .gg26-pass-video:hover .gg26-pass-play { transform: scale(1.1); }
/* Real inline video (gg26-has-video): card matches the video's 16:9, player fills it */
.gg26 .gg26-pass-video.gg26-has-video {
  display: block;
  flex: 0 0 auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 16 / 9;
}
.gg26 .gg26-pass-video.gg26-has-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  border-radius: inherit;
}
.gg26 .gg26-pass-video-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-top: 28px;
  letter-spacing: -0.01em;
}
.gg26 .gg26-pass-video-sub { font-size: 15px; color: #9ca3af; margin-top: 8px; }

.gg26 .gg26-pass-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 640px) { .gg26 .gg26-pass-ctas { flex-direction: row; gap: 16px; } }
.gg26 .gg26-pass-ctas .gg26-btn { width: 100%; font-weight: 600; }
@media (min-width: 640px) { .gg26 .gg26-pass-ctas .gg26-btn { width: auto; } }

/* ==========================================================================
   6. BEST SELLERS
   ========================================================================== */
.gg26 .gg26-sellers {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top left, rgba(34,197,94,.07) 0%, #000 55%);
}
@media (min-width: 768px) { .gg26 .gg26-sellers { padding: 100px 0; } }
.gg26 .gg26-hairline-top::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(34,197,94,.4) 50%, transparent 100%);
  pointer-events: none;
}
.gg26 .gg26-sellers-bloom {
  position: absolute;
  width: 700px;
  height: 700px;
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(34,197,94,.06) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.gg26 .gg26-sellers-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .gg26 .gg26-sellers-head { margin-bottom: 40px; } }
.gg26 .gg26-sellers-head h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (min-width: 768px) { .gg26 .gg26-sellers-head h2 { font-size: 48px; } }
.gg26 .gg26-sellers-nav { display: none; gap: 8px; }
@media (min-width: 768px) { .gg26 .gg26-sellers-nav { display: flex; } }
.gg26 .gg26-sellers-nav button {
  border-radius: 50%;
  height: 44px;
  width: 44px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.gg26 .gg26-sellers-nav button:hover { background: rgba(255,255,255,.15); }

.gg26 .gg26-sellers-viewport { overflow: hidden; padding-bottom: 24px; }
@media (min-width: 768px) { .gg26 .gg26-sellers-viewport { padding-bottom: 32px; } }
.gg26 .gg26-sellers-track {
  display: flex;
  gap: 16px;
  transition: transform .45s ease;
  touch-action: pan-y;
}
@media (min-width: 768px) { .gg26 .gg26-sellers-track { gap: 24px; } }
.gg26 .gg26-seller {
  min-width: 0;
  flex: 0 0 100%;
  transition: transform .2s ease-out;
}
@media (min-width: 768px)  { .gg26 .gg26-seller { flex-basis: calc((100% - 24px) / 2); } }
@media (min-width: 1024px) { .gg26 .gg26-seller { flex-basis: calc((100% - 72px) / 4); } }
.gg26 .gg26-seller:hover { transform: translateY(-4px); }
.gg26 .gg26-seller-card {
  background: #F2F2F2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow .2s ease;
}
.gg26 .gg26-seller:hover .gg26-seller-card { box-shadow: 0 20px 25px -5px rgba(0,0,0,.5); }
.gg26 .gg26-seller-photo {
  aspect-ratio: 3 / 2;
  position: relative;
  width: 100%;
  background: #e5e5e5;
}
@media (min-width: 640px) { .gg26 .gg26-seller-photo { aspect-ratio: auto; height: 200px; } }
.gg26 .gg26-seller-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gg26 .gg26-seller-shield {
  position: absolute;
  bottom: -28px;
  right: 24px;
  height: 64px;
  width: 56px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.4);
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 50% 100%, 0% 75%);
}
.gg26 .gg26-seller-shield strong {
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
  margin-top: 2px;
}
.gg26 .gg26-seller-shield small {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .15em;
  margin-top: 2px;
  opacity: .9;
}
.gg26 .gg26-seller-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(circle at center, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 10px 10px;
}
@media (min-width: 768px) { .gg26 .gg26-seller-body { padding: 24px; } }
.gg26 .gg26-seller-provider {
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
@media (min-width: 768px) { .gg26 .gg26-seller-provider { font-size: 13px; margin-bottom: 8px; } }
.gg26 .gg26-seller-body h3 {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
  line-height: 1.375;
  font-family: var(--gg-font-body);
}
@media (min-width: 768px) { .gg26 .gg26-seller-body h3 { font-size: 20px; } }
.gg26 .gg26-seller-code {
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 500;
  flex-grow: 1;
}
@media (min-width: 768px) { .gg26 .gg26-seller-code { font-size: 14px; } }
.gg26 .gg26-seller-foot {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) { .gg26 .gg26-seller-foot { margin-top: 32px; padding-top: 16px; } }
.gg26 .gg26-seller-tag {
  background: rgba(255,255,255,.2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}
.gg26 .gg26-seller-foot img { height: 16px; width: auto; opacity: .9; }

/* ==========================================================================
   7. BENEFITS GRID  (The GogoTraining Advantage)
   ========================================================================== */
.gg26 .gg26-benefits {
  padding: 64px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(16,185,129,.18) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(20,184,166,.14) 0%, transparent 60%),
    linear-gradient(160deg, #042f2e 0%, #0f3a36 45%, #064e3b 100%);
}
@media (min-width: 768px) { .gg26 .gg26-benefits { padding: 100px 0; } }
.gg26 .gg26-benefits::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(52,211,153,.55) 50%, transparent 100%);
  pointer-events: none;
}
.gg26 .gg26-benefits-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.gg26 .gg26-benefits-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .gg26 .gg26-benefits-head { margin-bottom: 80px; } }
.gg26 .gg26-benefits-head h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (min-width: 768px) { .gg26 .gg26-benefits-head h2 { font-size: 48px; margin-bottom: 24px; } }
.gg26 .gg26-benefits-head p {
  font-size: 14px;
  color: rgba(236,253,245,.8);
  font-weight: 500;
}
@media (min-width: 768px) { .gg26 .gg26-benefits-head p { font-size: 18px; } }
.gg26 .gg26-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px)  { .gg26 .gg26-benefits-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1024px) { .gg26 .gg26-benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.gg26 .gg26-benefit {
  position: relative;
  height: 100%;
  background: rgba(5,31,28,.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: 20px;
  padding: 24px;
  overflow: hidden;
  transition: all .3s ease-out;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(40px);
}
.gg26 .gg26-benefit.is-visible { opacity: 1; transform: translateY(0); }
@media (min-width: 768px) { .gg26 .gg26-benefit { padding: 32px; } }
.gg26 .gg26-benefit:hover {
  transform: translateY(-4px);
  border-color: rgba(16,185,129,.5);
  box-shadow: 0 12px 40px -12px rgba(16,185,129,.3);
}
@media (prefers-reduced-motion: reduce) {
  .gg26 .gg26-benefit { opacity: 1; transform: none; transition: none; }
}
.gg26 .gg26-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(252,211,77,.1);
  border: 1px solid rgba(252,211,77,.3);
  border-radius: 14px;
  color: #FCD34D;
  box-shadow: inset 0 0 20px rgba(252,211,77,.05);
  margin-bottom: 24px;
  transition: transform .5s ease;
}
.gg26 .gg26-benefit:hover .gg26-benefit-icon { transform: scale(1.1) rotate(3deg); }
.gg26 .gg26-benefit h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.25;
  transition: color .3s ease;
  font-family: var(--gg-font-body);
}
@media (min-width: 768px) { .gg26 .gg26-benefit h3 { font-size: 24px; } }
.gg26 .gg26-benefit:hover h3 { color: #6EE7B7; }
.gg26 .gg26-benefit p {
  font-size: 14px;
  color: rgba(236,253,245,.7);
  line-height: 1.625;
  transition: color .3s ease;
}
@media (min-width: 768px) { .gg26 .gg26-benefit p { font-size: 16px; } }
.gg26 .gg26-benefit:hover p { color: rgba(236,253,245,.9); }

/* ==========================================================================
   8. TESTIMONIALS  (marquee)
   ========================================================================== */
.gg26 .gg26-quotes {
  padding: 64px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top right, rgba(34,197,94,.07) 0%, #000 55%);
}
@media (min-width: 768px) { .gg26 .gg26-quotes { padding: 100px 0; } }
.gg26 .gg26-quotes-bloom {
  position: absolute;
  width: 700px;
  height: 700px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(34,197,94,.06) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.gg26 .gg26-quotes-head { text-align: center; margin-bottom: 24px; }
@media (min-width: 768px) { .gg26 .gg26-quotes-head { margin-bottom: 48px; } }
.gg26 .gg26-quotes-head h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (min-width: 768px) { .gg26 .gg26-quotes-head h2 { font-size: 48px; } }
.gg26 .gg26-quotes-head p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin: 8px auto 0;
  max-width: 576px;
}
@media (min-width: 768px) { .gg26 .gg26-quotes-head p { font-size: 16px; margin-top: 12px; } }

@keyframes gg26Marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.gg26 .gg26-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.gg26 .gg26-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: gg26Marquee 50s linear infinite;
  will-change: transform;
}
.gg26 .gg26-marquee:hover .gg26-marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .gg26 .gg26-marquee-track { animation: none; } }
.gg26 .gg26-quote-card {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-shrink: 0;
  width: 300px;
  padding: 32px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(34,197,94,.15);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  transition: border-color .2s ease, box-shadow .2s ease;
}
@media (min-width: 640px) { .gg26 .gg26-quote-card { width: 380px; } }
.gg26 .gg26-quote-card:hover {
  border-color: rgba(34,197,94,.35);
  box-shadow: 0 8px 32px rgba(34,197,94,.08);
}
.gg26 .gg26-quote-mark { color: var(--gg-green-bright); margin-bottom: 16px; transform: scaleX(-1); }
.gg26 .gg26-quote-stars { display: flex; gap: 4px; margin-bottom: 16px; color: #FACC15; }
.gg26 .gg26-quote-card blockquote {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  line-height: 1.55;
  flex-grow: 1;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-style: normal;
}
@media (min-width: 768px) { .gg26 .gg26-quote-card blockquote { font-size: 15px; } }
.gg26 .gg26-quote-who { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.gg26 .gg26-quote-name { font-weight: 700; font-size: 14px; color: #fff; line-height: 1.25; }
.gg26 .gg26-quote-role { font-size: 12px; margin-top: 4px; line-height: 1.25; font-weight: 600; color: var(--gg-green-bright); }
.gg26 .gg26-quotes-more { margin-top: 32px; text-align: center; }
@media (min-width: 768px) { .gg26 .gg26-quotes-more { margin-top: 48px; } }
.gg26 .gg26-quotes-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background: #fff;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--gg-ink) !important;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.3);
  transition: background .2s ease;
}
.gg26 .gg26-quotes-more a:hover { background: rgba(255,255,255,.9); }
.gg26 .gg26-quotes-more a:hover .gg26-icon { transform: translateX(4px); }
.gg26 .gg26-quotes-more .gg26-icon { transition: transform .2s ease; }

/* ==========================================================================
   9. FULL COURSE CATALOG  (legacy #home-courses block, restyled dark)
   ========================================================================== */
.gg26 .gg26-catalog {
  padding: 64px 0;
  position: relative;
  background: #000;
}
@media (min-width: 768px) { .gg26 .gg26-catalog { padding: 100px 0; } }
.gg26 .gg26-catalog-head { text-align: center; margin-bottom: 32px; }
@media (min-width: 768px) { .gg26 .gg26-catalog-head { margin-bottom: 48px; } }
.gg26 .gg26-catalog-head h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
@media (min-width: 768px) { .gg26 .gg26-catalog-head h2 { font-size: 42px; } }
.gg26 .gg26-catalog-cols {
  columns: 1;
  column-gap: 32px;
}
@media (min-width: 768px)  { .gg26 .gg26-catalog-cols { columns: 2; } }
@media (min-width: 1024px) { .gg26 .gg26-catalog-cols { columns: 3; } }
.gg26 .gg26-catalog-group {
  break-inside: avoid;
  margin-bottom: 28px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 20px 22px;
}
.gg26 .gg26-catalog-group h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gg-green-bright);
  margin-bottom: 12px;
  line-height: 1.35;
}
.gg26 .gg26-catalog-group h3 small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 4px;
  font-family: var(--gg-font-body);
}
.gg26 .gg26-catalog-group ul li { margin-bottom: 8px; line-height: 1.45; }
.gg26 .gg26-catalog-group ul li a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
}
.gg26 .gg26-catalog-group ul li a:hover { color: var(--gg-green-bright); }
.gg26 .gg26-catalog .anchor-offset { position: relative; top: -96px; }

/* ==========================================================================
   10. FINAL CTA
   ========================================================================== */
.gg26 .gg26-final {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 60%, #14532d 100%);
}
@media (min-width: 768px) { .gg26 .gg26-final { padding: 96px 0; } }
.gg26 .gg26-final::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(34,197,94,.25) 50%, transparent 100%);
  z-index: 20;
  pointer-events: none;
}
.gg26 .gg26-final::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .1;
  background: radial-gradient(circle at center, #fff, transparent 60%);
  pointer-events: none;
}
.gg26 .gg26-final-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 10;
  text-align: center;
}
.gg26 .gg26-final h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}
@media (min-width: 768px) { .gg26 .gg26-final h2 { font-size: 36px; margin-bottom: 20px; } }
.gg26 .gg26-final p {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  margin: 0 auto 20px;
  max-width: 576px;
  line-height: 1.625;
}
@media (min-width: 768px) { .gg26 .gg26-final p { font-size: 18px; margin-bottom: 36px; } }
.gg26 .gg26-final-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 640px) { .gg26 .gg26-final-ctas { flex-direction: row; gap: 16px; } }
.gg26 .gg26-final-ctas .gg26-btn { width: 100%; }
@media (min-width: 640px) { .gg26 .gg26-final-ctas .gg26-btn { width: auto; } }

/* ==========================================================================
   11. SITE CHROME 2026 — promo bar, header, mega menu, drawer, footer
   (Loads on the homepage only via index.php.)
   ========================================================================== */

/* ---- Promo bar ---- */
.gg26 .gg26-promo {
  position: relative;
  background: linear-gradient(90deg, #178843, #015699);
  color: #fff;
  padding: 10px 48px 10px 16px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  z-index: 50;
  transition: opacity .2s ease, transform .2s ease;
}
@media (min-width: 640px) { .gg26 .gg26-promo { font-size: 14px; } }
.gg26 .gg26-promo.is-dismissed { opacity: 0; transform: translateY(-100%); }
.gg26 .gg26-promo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 8px;
  line-height: 1.375;
}
.gg26 .gg26-promo-inner strong { font-weight: 600; color: rgba(255,255,255,.9); }
.gg26 .gg26-promo-inner a {
  color: #fff !important;
  text-decoration: underline;
  font-weight: 700;
}
.gg26 .gg26-promo-x {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  transition: background .2s ease;
}
.gg26 .gg26-promo-x:hover { background: rgba(255,255,255,.2); }

/* ---- Sticky header ---- */
.gg26.gg26-chrome-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
}
/* Admin notice banners (Admin > Notices) shown above the header */
.gg26.gg26-notices { background: #f2f2f2; border-bottom: 1px solid #e0e0e0; }
.gg26 .gg26-notices-inner { max-width: 1280px; margin: 0 auto; padding: 10px 16px; }
.gg26 .gg26-notice { color: #1a1a1a; font-size: 14px; line-height: 1.5; text-align: center; }
.gg26 .gg26-notice + .gg26-notice { margin-top: 6px; }
.gg26 .gg26-notice a { color: #116532; font-weight: 600; text-decoration: underline; }
.gg26 .gg26-notice img { max-width: 100%; height: auto; vertical-align: middle; }
.gg26 .gg26-header {
  position: relative;
  z-index: 40;
  width: 100%;
  background: linear-gradient(90deg, rgba(13,31,21,.95), rgba(0,0,0,.95), rgba(13,31,21,.95));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.gg26 .gg26-header.is-scrolled {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.3);
  border-bottom-color: rgba(255,255,255,.1);
}
.gg26 .gg26-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 16px;
}
@media (min-width: 1024px) { .gg26 .gg26-header-inner { padding: 0 32px; } }
.gg26 .gg26-header-left { display: flex; align-items: center; gap: 40px; min-width: 0; }
.gg26 .gg26-logo {
  display: inline-flex;
  align-items: baseline;
  flex-shrink: 0;
}
.gg26 .gg26-logo span {
  font-family: var(--gg-font-head);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #fff;
}
.gg26 .gg26-logo span em { font-style: normal; color: var(--gg-green); }
.gg26 .gg26-logo sup {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-left: 4px;
  transform: translateY(-6px);
}
.gg26 .gg26-nav { display: none; align-items: center; gap: 28px; }
@media (min-width: 1280px) { .gg26 .gg26-nav { display: flex; } }
.gg26 .gg26-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: rgba(255,255,255,.8) !important;
  white-space: nowrap;
  transition: color .2s ease;
  position: relative;
}
.gg26 .gg26-nav-link:hover { color: #fff !important; }
.gg26 .gg26-nav-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--gg-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.gg26 .gg26-nav-underline:hover::after { transform: scaleX(1); }
.gg26 .gg26-chev { transition: transform .2s ease; }
.gg26 .gg26-mega-trigger[aria-expanded="true"] .gg26-chev { transform: rotate(180deg); }
.gg26 .gg26-header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; position: relative; }
.gg26 .gg26-header-iconbtn {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  color: rgba(255,255,255,.8);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}
.gg26 .gg26-header-iconbtn:hover { color: #fff; background: rgba(255,255,255,.1); }
@media (min-width: 768px) { .gg26 .gg26-search-toggle { display: inline-flex; } }
.gg26 .gg26-burger { display: inline-flex; color: #fff; }
@media (min-width: 1280px) { .gg26 .gg26-burger { display: none; } }
.gg26 .gg26-search-pop {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 320px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.2);
  padding: 12px;
  z-index: 50;
}
.gg26 .gg26-search-pop form { position: relative; display: block; margin: 0; }
.gg26 .gg26-search-pop form .gg26-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}
.gg26 .gg26-search-pop input {
  height: 44px;
  width: 100%;
  border-radius: 9999px;
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
  padding: 0 16px 0 44px;
  font-size: 14px;
  font-family: var(--gg-font-body);
  color: #111;
  outline: none;
}
.gg26 .gg26-search-pop input:focus { border-color: var(--gg-green); box-shadow: 0 0 0 1px var(--gg-green); }
.gg26 .gg26-auth { display: none; align-items: center; gap: 12px; }
@media (min-width: 640px) { .gg26 .gg26-auth { display: flex; } }
.gg26 .gg26-btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all .2s ease;
}
.gg26 .gg26-btn-nav-ghost {
  border: 1px solid rgba(255,255,255,.4);
  color: #fff !important;
  background: transparent;
}
.gg26 .gg26-btn-nav-ghost:hover { background: rgba(255,255,255,.1); }
.gg26 .gg26-btn-nav-solid {
  background: var(--gg-green);
  color: #fff !important;
}
.gg26 .gg26-btn-nav-solid:hover { background: var(--gg-green-hover); }

/* ---- Mega menu panel ---- */
.gg26 .gg26-mega-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--gg-header-bottom, 80px);
  background: #0a0a0a;
  border-top: 1px solid #1f1f1f;
  box-shadow: 0 24px 48px rgba(0,0,0,.5);
  z-index: 60;
  display: none;
}
@media (min-width: 1280px) {
  .gg26 .gg26-mega-panel.is-open { display: block; }
}
.gg26 .gg26-mega-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 32px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
@media (min-width: 1440px) { .gg26 .gg26-mega-inner { padding: 48px 64px; } }
.gg26 .gg26-mega-cols {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 32px;
}
.gg26 .gg26-mega-col { min-width: 0; }
.gg26 .gg26-mega-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gg-green-bright);
  margin: 0 0 14px;
  line-height: 1.3;
}
.gg26 .gg26-mega-col ul li a,
.gg26 .gg26-mega-promo ul li a {
  display: block;
  padding: 5px 0;
  color: #e5e5e5 !important;
  font-size: 13px;
  line-height: 1.4;
  transition: color .15s ease-out, transform .15s ease-out;
  min-width: 0;
}
.gg26 .gg26-mega-col ul li a:hover,
.gg26 .gg26-mega-promo ul li a:hover {
  color: var(--gg-green-bright) !important;
  transform: translateX(4px);
}
.gg26 .gg26-mega-promo {
  flex: 0 0 240px;
  background: linear-gradient(180deg, #0d1f15, #0a0a0a);
  border: 1px solid #1f1f1f;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.gg26 .gg26-mega-tag {
  align-self: flex-start;
  background: rgba(34,197,94,.12);
  color: var(--gg-green-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.gg26 .gg26-mega-promo h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 4px 0 0;
  font-family: var(--gg-font-body);
}
.gg26 .gg26-mega-promo > p { color: #9ca3af; font-size: 13px; line-height: 1.5; }
.gg26 .gg26-mega-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 8px 20px rgba(22,163,74,.25);
  transition: transform .15s ease-out, box-shadow .15s ease-out;
  margin-top: 4px;
}
.gg26 .gg26-mega-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 12px 28px rgba(22,163,74,.35);
}
.gg26 .gg26-mega-promo hr { border: none; border-top: 1px solid #1f1f1f; margin: 16px 0 4px; width: 100%; }
.gg26 .gg26-mega-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0 0 8px;
}
.gg26 .gg26-mega-browse {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 32px;
  display: flex;
  justify-content: center;
}
.gg26 .gg26-mega-browse a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gg-green-bright) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 4px;
  transition: gap .15s ease-out;
}
.gg26 .gg26-mega-browse a:hover { gap: 12px; }

/* ---- Mobile drawer ---- */
.gg26 .gg26-drawer-backdrop {
  position: fixed;
  inset: 0;
  top: 80px;
  background: rgba(0,0,0,.4);
  z-index: 40;
}
.gg26 .gg26-drawer {
  position: fixed;
  left: 0; right: 0;
  top: 80px;
  bottom: 0;
  background: linear-gradient(90deg, #0d1f15, #000, #0d1f15);
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.4);
  z-index: 50;
  overflow-y: auto;
}
@media (min-width: 1280px) { .gg26 .gg26-drawer, .gg26 .gg26-drawer-backdrop { display: none !important; } }
.gg26 .gg26-drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 112px;
  gap: 4px;
}
.gg26 .gg26-drawer-section,
.gg26 .gg26-drawer-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.85) !important;
  padding: 12px;
  border-radius: 8px;
  transition: all .2s ease;
  text-align: left;
}
.gg26 .gg26-drawer-section:hover,
.gg26 .gg26-drawer-link:hover { background: rgba(255,255,255,.1); color: #fff !important; }
.gg26 .gg26-drawer-section[aria-expanded="true"] .gg26-chev { transform: rotate(180deg); }
.gg26 .gg26-drawer-courses { padding-left: 8px; padding-bottom: 8px; }
.gg26 .gg26-drawer-cat {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gg-green-bright);
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: 4px;
  text-align: left;
}
.gg26 .gg26-drawer-cat[aria-expanded="true"] .gg26-chev { transform: rotate(180deg); }
.gg26 .gg26-drawer-list { padding: 0 0 8px 4px; }
.gg26 .gg26-drawer-list li a {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  color: rgba(255,255,255,.85) !important;
}
.gg26 .gg26-drawer-list li a:hover { background: rgba(255,255,255,.05); color: var(--gg-green-bright) !important; }
.gg26 .gg26-drawer-browse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gg-green-bright) !important;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
}
.gg26 .gg26-drawer-auth {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 640px) { .gg26 .gg26-drawer-auth { display: none; } }
.gg26 .gg26-drawer-auth .gg26-btn-nav { height: 48px; }
.gg26 .gg26-drawer-search {
  position: relative;
  margin: 16px 12px 0;
  display: block;
}
@media (min-width: 768px) { .gg26 .gg26-drawer-search { display: none; } }
.gg26 .gg26-drawer-search input {
  height: 48px;
  width: 100%;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  padding: 0 52px 0 20px;
  font-size: 14px;
  font-family: var(--gg-font-body);
  color: #fff;
  outline: none;
}
.gg26 .gg26-drawer-search input::placeholder { color: rgba(255,255,255,.45); }
.gg26 .gg26-drawer-search button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: var(--gg-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gg26 .gg26-drawer-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: rgba(0,0,0,.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
  z-index: 50;
}
.gg26 .gg26-drawer-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  border-radius: 9999px;
  background: var(--gg-green);
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
}

/* ---- Footer 2026 ---- */
.gg26 .gg26-footer {
  background: #0a0a0a;
  color: rgba(242,242,242,.7);
  padding: 48px 0 64px;
  border-top: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 768px) { .gg26 .gg26-footer { padding: 64px 0; } }
.gg26 .gg26-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .gg26 .gg26-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
}
.gg26 .gg26-footer-brand { grid-column: span 2; }
@media (min-width: 1024px) { .gg26 .gg26-footer-brand { grid-column: span 1; } }
.gg26 .gg26-footer-brand .gg26-logo { margin-bottom: 24px; }
.gg26 .gg26-footer-brand .gg26-logo span { font-size: 24px; }
.gg26 .gg26-footer-brand > p {
  font-size: 16px;
  color: rgba(242,242,242,.7);
  margin-bottom: 32px;
  max-width: 384px;
  line-height: 1.625;
}
.gg26 .gg26-footer-social { display: flex; gap: 12px; }
.gg26 .gg26-footer-social a {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}
.gg26 .gg26-footer-social a:hover { background: var(--gg-green); transform: scale(1.1); }
.gg26 .gg26-footer-col h4 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--gg-font-body);
}
@media (min-width: 768px) { .gg26 .gg26-footer-col h4 { margin-bottom: 24px; } }
.gg26 .gg26-footer-col ul li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  color: rgba(242,242,242,.7) !important;
  transition: color .2s ease;
}
.gg26 .gg26-footer-col ul li a:hover { color: #fff !important; }
.gg26 .gg26-footer-legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  margin-bottom: 24px;
}
.gg26 .gg26-footer-legal p {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(242,242,242,.4);
  margin-bottom: 4px;
}
.gg26 .gg26-footer-bottom {
  font-size: 14px;
  color: rgba(242,242,242,.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
}
@media (min-width: 768px) { .gg26 .gg26-footer-bottom { flex-direction: row; align-items: center; } }
.gg26 .gg26-footer-bottom p { max-width: 768px; line-height: 1.625; }

/* ---- R2 fixes ---- */
/* Best Sellers: collapse dead vertical space — footer hugs content, card no
   longer stretches the gap when titles are short. */
.gg26 .gg26-seller-code { flex-grow: 0; }
.gg26 .gg26-seller-foot { margin-top: auto; padding-top: 14px; }
.gg26 .gg26-seller-body { min-height: 0; }
.gg26 .gg26-seller-body h3 { margin-bottom: 6px; }
.gg26 .gg26-seller-provider + h3 + .gg26-seller-code { margin-bottom: 18px; }

/* ---- 2026 nav: remove the space reserved for the old universe header ----
   Universe-themed pages (course pages, My Courses) padded their container by
   100px so the legacy position:absolute header could float inside it. The 2026
   header sits in normal page flow, so that padding now shows as an empty gap
   above the nav. */
.theme-universe .container { padding-top: 0; }
.universe-main { padding-top: 0; }

/* ---- Global Tech Partners (updated trusted section) ---- */
.gg26 .gg26-trusted { padding: 48px 0 56px; }
.gg26 .gg26-trusted .gg26-trusted-label { margin-bottom: 14px; }
.gg26 .gg26-trusted-title {
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin: 0 auto 44px;
  max-width: 640px;
  padding: 0 16px;
}
@media (max-width: 639px) {
  .gg26 .gg26-trusted-title { font-size: 24px; }
}
.gg26 .gg26-trusted-row img.gg26-logo-aws     { max-height: 58px; }
.gg26 .gg26-trusted-row img.gg26-logo-apple   { max-height: 62px; }
.gg26 .gg26-trusted-row img.gg26-logo-comptia { max-height: 40px; }
.gg26 .gg26-trusted-row img.gg26-logo-pearson { max-height: 48px; }

/* ---- Global Tech Partners: v2 logo set (PeopleCert, IAITAM, Cisco, Microsoft, PMI) ---- */
.gg26 .gg26-trusted-row img.gg26-logo-peoplecert { max-height: 66px; }
.gg26 .gg26-trusted-row img.gg26-logo-iaitam     { max-height: 72px; }
.gg26 .gg26-trusted-row img.gg26-logo-cisco      { max-height: 64px; }
.gg26 .gg26-trusted-row img.gg26-logo-pmi        { max-height: 84px; }
