/* ============================================================
   IMPACTFUL SPEAKING ACADEMY — Design System v5
   Dark / Light / Deep-Purple hybrid
   ============================================================ */

/* ─── 1. GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@700;800&family=Noto+Sans:wght@400;600;700&family=Quicksand:wght@400;500;600&display=swap');

/* ─── 2. RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  background: #080C10;
  color: #F0F4F8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ─── 3. :ROOT TOKENS ─── */
:root {
  /* Colors */
  --cyan:          #14E0FB;
  --teal:          #0FA3B1;
  --teal-deep:     #084B54;
  --purple:        #BB4BFF;
  --dpurple:       #7B2FBE;
  --yellow:        #F4EA00;
  --green:         #40C360;
  --dark:          #080C10;
  --dark2:         #0D1F35;
  --dpurp-bg:      #150826;
  --white:         #FFFFFF;
  --light:         #F4F7FA;
  --text:          #F0F4F8;
  --text-dim:      rgba(240,244,248,0.6);
  --text-dark:     #1A2332;
  --text-dim-dark: #5A6B7A;

  /* Gradients */
  --grad-title:    linear-gradient(135deg, #14E0FB 0%, #BB4BFF 100%);
  --grad-btn:      linear-gradient(135deg, #14E0FB 0%, #0FA3B1 100%);
  --grad-btn2:     linear-gradient(135deg, #BB4BFF 0%, #7B2FBE 100%);

  /* Borders */
  --border:        rgba(255,255,255,0.08);
  --border-light:  rgba(0,0,0,0.08);

  /* Font stacks */
  --ff-heading:    'Spectral', serif;
  --ff-body:       'Quicksand', sans-serif;
  --ff-ui:         'Noto Sans', sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --section-pad:   clamp(4rem, 8vw, 7rem);
  --radius:        1rem;
  --radius-sm:     0.5rem;
  --radius-lg:     1.25rem;
}

/* ─── 4. PALETTE BAR ─── */
.palette-bar {
  display: flex;
  height: 6px;
  width: 100%;
}
.pb-cyan   { flex: 1; background: var(--cyan); }
.pb-teal   { flex: 1; background: var(--teal); }
.pb-purple { flex: 1; background: var(--purple); }
.pb-dpurple{ flex: 1; background: var(--dpurple); }
.pb-yellow { flex: 1; background: var(--yellow); }
.pb-green  { flex: 1; background: var(--green); }

/* ─── 5. NAVIGATION ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,12,16,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav__logo img {
  height: 36px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__item {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  cursor: pointer;
}
.nav__item:hover {
  color: var(--cyan);
}
.nav__trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav__arrow {
  width: 10px;
  height: 10px;
  border: none;
  background: none;
  display: inline-flex;
  transition: transform 0.25s;
}
.nav__arrow svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}
.nav__item--dropdown:hover .nav__arrow {
  transform: rotate(180deg);
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(13,31,53,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s, background 0.2s;
}
.nav__dropdown a:hover {
  color: var(--cyan);
  background: rgba(20,224,251,0.06);
}
.nav__lang {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dim);
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  transition: color 0.2s, border-color 0.2s;
}
.nav__lang:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}
.nav__cta {
  margin-left: 0.75rem;
  padding: 0.55rem 1.35rem;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: #000;
  background: var(--grad-btn);
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20,224,251,0.3);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-dim);
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8,12,16,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2rem;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
  z-index: 999;
}
.nav__mobile-menu.open {
  display: flex;
}
.nav__mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

/* ─── 6. SECTION BACKGROUNDS ─── */
.s-dark    { background: var(--dark);     color: var(--text);      overflow-x: hidden; }
.s-navy    { background: var(--dark2);    color: var(--text);      overflow-x: hidden; }
.s-light   { background: var(--light);    color: var(--text-dark); overflow-x: hidden; }
.s-white   { background: var(--white);    color: var(--text-dark); overflow-x: hidden; }
.s-dpurple { background: var(--dpurp-bg); color: var(--text);      overflow-x: hidden; }

/* ─── 7. WAVE WRAPPER ─── */
.wave-wrap {
  line-height: 0;
  overflow: hidden;
}
.wave-wrap svg {
  display: block;
  width: 100%;
}

/* ─── 8. CONTAINER ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 2rem; }

/* ─── 9. SECTION LABELS ─── */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  flex-shrink: 0;
}
.section-label.on-dark {
  color: var(--cyan);
}
.section-label.on-dark::before {
  background: var(--cyan);
}
.section-label.on-light {
  color: var(--teal);
}
.section-label.on-light::before {
  background: var(--teal);
}
.section-label.on-dpurple {
  color: var(--purple);
}
.section-label.on-dpurple::before {
  background: var(--purple);
}

/* ─── 10. TYPOGRAPHY ─── */
h1 {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: clamp(2.75rem, 5vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h2 {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}
h3 {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
h4 {
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.35rem;
}
p {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}
.grad-text {
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-tl {
  background: linear-gradient(135deg, var(--teal) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Inner-page hero h1 (smaller than homepage) */
.h1-page {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin: 1.25rem 0 1.5rem;
}

/* ─── 11. BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: #000;
  background: var(--grad-btn);
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(20,224,251,0.35);
}
.btn-purple {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  background: var(--grad-btn2);
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-purple:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(187,75,255,0.35);
}
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 2rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-ghost-dark:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 6px 20px rgba(255,255,255,0.08);
}
.btn-ghost-teal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  background: transparent;
  border: 2px solid var(--teal);
  border-radius: 2rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-ghost-teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(15,163,177,0.2);
}
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--teal);
  background: transparent;
  color: var(--teal);
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-ghost-light:hover {
  transform: translateY(-3px);
  background: rgba(15,163,177,0.08);
  box-shadow: 0 8px 24px rgba(15,163,177,0.2);
}

/* ─── 12. HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: var(--section-pad) 0;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}
.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}
.hero__h1 {
  margin-bottom: 1.5rem;
}
.hero__sub {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: var(--text-dim);
}
.hero__trust span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero__orb-c {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,224,251,0.15) 0%, transparent 70%);
  filter: blur(60px);
  top: -10%;
  right: -5%;
  pointer-events: none;
}
.hero__orb-p {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187,75,255,0.12) 0%, transparent 70%);
  filter: blur(50px);
  bottom: -5%;
  left: 5%;
  pointer-events: none;
}
.hero__photo-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(20,224,251,0.08), rgba(187,75,255,0.08));
  overflow: hidden;
  z-index: 1;
}
.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__floating-card {
  position: absolute;
  bottom: -20px;
  right: -30px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transform: rotate(3deg);
  transition: transform 0.3s;
  z-index: 3;
  min-width: 200px;
}
.hero__floating-card:hover {
  transform: rotate(0deg);
}
.hero__floating-card h4 {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.hero__floating-card p {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: 0;
}

/* ─── 13. LOGO STRIP ─── */
.logo-strip {
  padding: 2.5rem 0;
}
.logo-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dim);
  white-space: nowrap;
}
.logo-pill img {
  height: 22px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%) brightness(2);
}

/* ─── 14. STATS BAR ─── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.1;
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
}
.stats-bar--3col { grid-template-columns: repeat(3, 1fr); }
.stats-bar--2col { grid-template-columns: repeat(2, 1fr); }
/* Alias for stat-number used in shorter contexts */
.stat-num { font-family: var(--ff-heading); font-size: 2rem; font-weight: 800; background: var(--grad-title); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ─── 15. PAIN SECTION ─── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--cyan);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.pain-card:nth-child(2) {
  border-left-color: var(--purple);
}
.pain-card:nth-child(3) {
  border-left-color: var(--yellow);
}
.pain-card h3 {
  color: var(--text-dark);
}
.pain-card p {
  color: var(--text-dim-dark);
  font-size: 0.92rem;
  margin: 0;
}
.pain-card--cyan  { border-left-color: var(--cyan); }
.pain-card--purple { border-left-color: var(--purple); }
.pain-card--yellow { border-left-color: var(--yellow); }
.pain-card--green { border-left-color: var(--green); }

/* ─── 16. METHOD SECTION ─── */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.method-grid--2col { grid-template-columns: repeat(2, 1fr); }
.method-grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.method-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-btn);
}
.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
/* Method cards on dark backgrounds */
.s-dark .method-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
}
.s-dark .method-card h3,
.s-dark .method-card p {
  color: var(--text);
}
.s-dark .method-card p {
  color: var(--text-dim);
}
.circle-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.circle-num--cyan {
  background: var(--grad-btn);
  color: #000;
}
.circle-num--purple {
  background: var(--grad-btn2);
}
.circle-num--green {
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  color: #000;
}
.circle-num--yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
}
.method-card h3 {
  color: var(--text-dark);
}
.method-card p {
  color: var(--text-dim-dark);
  font-size: 0.92rem;
  margin: 0;
}
.method-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.85rem;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2rem;
  background: rgba(20,224,251,0.1);
  color: var(--teal);
}
/* Before/after transformation card elements (used in results.html) */
.method-card__before,
.method-card__after {
  padding: 0.75rem 1rem;
  border-radius: 0.4rem;
  margin: 0.5rem 0;
}
.method-card__before {
  background: rgba(255,77,77,0.08);
  border-left: 3px solid rgba(255,77,77,0.5);
}
.method-card__after {
  background: rgba(64,195,96,0.1);
  border-left: 3px solid var(--green);
}
.method-card__before-label,
.method-card__after-label {
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
  display: block;
}
.method-card__before-label { color: rgba(255,77,77,0.7); }
.method-card__after-label { color: var(--green); }
.method-card__tag { display: inline-block; margin-bottom: 0.75rem; }
.method-card__name {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dim-dark);
}

/* ─── 17. PROGRAMS SECTION ─── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.program-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.9); /* //rgba(255,255,255,0.03); */
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.program-card__img {
  height: 220px;
  background: linear-gradient(160deg, rgba(20,224,251,0.12), rgba(187,75,255,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.program-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.program-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.85rem;
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2rem;
  background: rgba(20,224,251,0.15);
  color: var(--cyan);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.program-card__body {
  padding: 1.75rem;
}
.program-card__body h3 {
  color: black; /* //var(--text); */
  margin-bottom: 0.5rem;
}
.program-card__body p {
  color: black; /* //var(--text-dim); */
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.program-card__link {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.program-card__link:hover {
  gap: 0.7rem;
}
.delivery-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.delivery-pills span {
  padding: 0.25rem 0.7rem;
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 2rem;
  border: 1px solid var(--border);
  color: var(--text-dim);
}

/* ─── 18. TESTIMONIAL CARDS ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testi-grid--2col { grid-template-columns: repeat(2, 1fr); }
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.25s;
}
.testi-card:hover {
  transform: translateY(-4px);
}
.testi-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--yellow);
  font-size: 0.9rem;
}
.testi-quote {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(20,224,251,0.2), rgba(187,75,255,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cyan);
  flex-shrink: 0;
  overflow: hidden;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi-name {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}
.testi-role {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ─── 19. CASE STUDY CARDS ─── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cases-grid--2col { grid-template-columns: repeat(2, 1fr); }
.case-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.case-card__img {
  height: 200px;
  background: linear-gradient(160deg, rgba(20,224,251,0.15), rgba(187,75,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.case-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Case card color variants for __img area */
.case-card__img--cyan { background: linear-gradient(135deg, rgba(20,224,251,0.15) 0%, rgba(15,163,177,0.05) 100%); }
.case-card__img--teal { background: linear-gradient(135deg, rgba(15,163,177,0.15) 0%, rgba(15,163,177,0.05) 100%); }
.case-card__img--purple { background: linear-gradient(135deg, rgba(187,75,255,0.15) 0%, rgba(123,47,190,0.05) 100%); }
.case-card__img--dpurple { background: linear-gradient(135deg, rgba(123,47,190,0.2) 0%, rgba(21,8,38,0.1) 100%); }
.case-card__img--green { background: linear-gradient(135deg, rgba(64,195,96,0.15) 0%, rgba(15,163,177,0.05) 100%); }

/* Full-width card in 2-col grid */
.case-card--wide { grid-column: 1 / -1; }

/* BEM element classes for case card internals */
.case-card__title { font-family: var(--ff-heading); font-size: 1.1rem; font-weight: 700; margin: 0.5rem 0; color: var(--text-dark); }
.case-card__text { color: var(--text-dim-dark); font-size: 0.95rem; margin: 0.5rem 0 1rem; }
.case-card__stats { display: flex; gap: 1rem; flex-wrap: wrap; margin: 0.75rem 0; }
.case-card__link { color: var(--teal); font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.case-card__link:hover { color: var(--cyan); }

.case-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2rem;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.case-card__body {
  padding: 1.75rem;
}
.case-card__body h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.case-card__body p {
  color: var(--text-dim-dark);
  font-size: 0.9rem;
}
.case-card__stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}
.case-card__stat strong {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.5rem;
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.case-card__stat span {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: var(--text-dim-dark);
}

/* ─── 20. ABOUT SECTION ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(20,224,251,0.08), rgba(187,75,255,0.08));
  overflow: hidden;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.depth-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  z-index: 2;
  min-width: 120px;
}
.depth-badge--cyan .depth-badge__big {
  color: var(--cyan);
}
.depth-badge--purple .depth-badge__big {
  color: var(--purple);
}
.depth-badge__big {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}
.depth-badge__label {
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.about-pills span {
  padding: 0.35rem 0.85rem;
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 2rem;
  border: 1px solid var(--border);
  color: var(--text-dim);
}
.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ─── 21. VIDEO FRAME ─── */
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(0,0,0,0.4);
}
.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 2;
  animation: pulse-play 2s ease-in-out infinite;
  transition: transform 0.2s;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
@keyframes pulse-play {
  0%, 100% { box-shadow: 0 0 0 0 rgba(20,224,251,0.4); }
  50%      { box-shadow: 0 0 0 20px rgba(20,224,251,0); }
}
.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent #000;
  margin-left: 4px;
}

/* ─── 22. RESOURCES SECTION ─── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.resource-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.resource-card h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}
.resource-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
}
.workbook-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.workbook-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: var(--grad-title);
  z-index: -1;
  pointer-events: none;
}
.workbook-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(20,224,251,0.15);
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.blog-card h3 {
  color: var(--text-dark);
}
.blog-card h2 {
  color: var(--text-dark);
  font-family: var(--ff-heading);
}
.blog-card p {
  color: var(--text-dim-dark);
  font-size: 0.9rem;
}

/* Featured blog card */
.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card--featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.blog-card--featured .blog-card__img {
  min-height: 280px;
}
.blog-card--featured .blog-card__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-card--featured h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin: 0.75rem 0;
}
@media (max-width: 768px) {
  .blog-card--featured {
    grid-template-columns: 1fr;
  }
}

/* Blog card internals */
.blog-card__img {
  min-height: 180px;
  background: linear-gradient(135deg, rgba(20,224,251,0.08) 0%, rgba(187,75,255,0.06) 100%);
  display: flex;
  align-items: flex-start;
  padding: 1.25rem;
}
.blog-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__meta {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dim-dark);
  margin-top: auto;
  padding-top: 0.75rem;
}
.blog-card__link {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.blog-card__link:hover { color: var(--cyan); }
.blog-card--featured .blog-card__link {
  margin-top: 1rem;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.workbook-banner {
  grid-column: 1 / -1;
  padding: 2.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Newsletter form */
.newsletter-form {
  max-width: 480px;
  margin: 2rem auto 0;
  text-align: center;
}
.newsletter-form__row {
  display: flex;
  gap: 0.75rem;
}
.newsletter-form__row input[type="email"] {
  flex: 1;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.95rem;
}
.newsletter-form__row input[type="email"]::placeholder {
  color: var(--text-dim);
}
.newsletter-form__row input[type="email"]:focus {
  outline: none;
  border-color: var(--cyan);
}
.newsletter-form__note {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
}
@media (max-width: 480px) {
  .newsletter-form__row { flex-direction: column; }
}

/* ─── 23. FINAL CTA ─── */
.cta-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: var(--section-pad) 0;
}
.cta-block__title {
  margin-bottom: 1rem;
}
.cta-block__sub {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
}
.cta-block__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─── 24. FOOTER ─── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand {
  max-width: 280px;
}
.footer__brand p {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
}
.footer__col h4 {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer__col a {
  display: block;
  padding: 0.35rem 0;
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer__col a:hover {
  color: var(--cyan);
}
.footer__copy {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: var(--text-dim);
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 2rem;
}
.s-light .trust-pill, .s-white .trust-pill {
  color: var(--text-dim-dark);
  border-color: rgba(0,0,0,0.14);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer__bottom a {
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer__bottom a:hover {
  color: var(--cyan);
}

/* ─── 25. STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8,12,16,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta__text {
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.sticky-cta__btn {
  padding: 0.55rem 1.35rem;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: #000;
  background: var(--grad-btn);
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.sticky-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20,224,251,0.3);
}

/* ─── 26. FAQ ACCORDION ─── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  content: '\2212';
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer p {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-dim);
}

/* On light backgrounds */
.s-light .faq-item,
.s-white .faq-item {
  border-bottom-color: var(--border-light);
}
.s-light .faq-question,
.s-white .faq-question {
  color: var(--text-dark);
}
.s-light .faq-answer p,
.s-white .faq-answer p {
  color: var(--text-dim-dark);
}
.faq-group-label {
  font-family: var(--ff-ui);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin: 2.5rem 0 1rem;
}
.s-dark .faq-group-label,
.s-dpurple .faq-group-label {
  color: var(--text);
}

/* ─── 27. CASE STUDY PAGE ─── */
.cs-header {
  padding: var(--section-pad) 0;
  text-align: center;
}
.cs-header h1 {
  margin-bottom: 1rem;
}
.cs-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 1.1rem;
}
.cs-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  color: var(--text-dim);
}
.cs-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.cs-stat {
  text-align: center;
  padding: 1.5rem;
}
.cs-stat-number {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.1;
  background: var(--grad-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}
.cs-stat-label {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dim);
}
.pull-quote {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.35;
  color: var(--text);
  border-left: 4px solid var(--cyan);
  padding-left: 2rem;
  margin: 3rem 0;
  max-width: 720px;
}
.pull-quote footer {
  display: block;
  margin-top: 1rem;
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  font-style: normal;
}

/* ─── 28. PHOTO / VIDEO PLACEHOLDERS ─── */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(20,224,251,0.08), rgba(187,75,255,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.photo-placeholder--large {
  aspect-ratio: 3/4;
  max-height: 520px;
}
.photo-placeholder--card {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
}
.photo-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 2rem;
}
.photo-placeholder__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-dim);
}
.photo-placeholder__label {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
}
.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(20,224,251,0.06), rgba(187,75,255,0.06));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.video-placeholder__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.video-placeholder__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.video-placeholder__label {
  font-family: var(--ff-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
}

/* ─── 29. DEPTH BADGE (standalone) ─── */
/* See also section 20 for absolute-positioned variant */

/* ─── 30. SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── 31. EYEBROW ─── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.eyebrow.on-dark  { color: var(--cyan); }
.eyebrow.on-light { color: var(--teal); }
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}

/* ─── 32. TAG PILLS ─── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2rem;
  border: 1px solid var(--border);
  color: var(--text-dim);
}
.tag--cyan {
  border-color: rgba(20,224,251,0.3);
  color: var(--cyan);
  background: rgba(20,224,251,0.08);
}
.tag--purple {
  border-color: rgba(187,75,255,0.3);
  color: var(--purple);
  background: rgba(187,75,255,0.08);
}
.tag--teal {
  border-color: rgba(15,163,177,0.3);
  color: var(--teal);
  background: rgba(15,163,177,0.08);
}
.tag--green {
  border-color: rgba(64,195,96,0.3);
  color: var(--green);
  background: rgba(64,195,96,0.08);
}
.tag--yellow {
  border-color: rgba(244,234,0,0.3);
  color: var(--yellow);
  background: rgba(244,234,0,0.08);
}

/* Tag contrast fixes on light/white backgrounds and inside case-cards */
.s-light .tag, .s-white .tag, .case-card .tag {
  color: var(--text-dim-dark);
  border-color: rgba(0,0,0,0.14);
}
.s-light .tag--cyan, .s-white .tag--cyan, .case-card .tag--cyan {
  color: #0A7285;
  background: rgba(14,160,180,0.1);
  border-color: rgba(14,160,180,0.25);
}
.s-light .tag--purple, .s-white .tag--purple, .case-card .tag--purple {
  color: #6E28A8;
  background: rgba(130,40,190,0.1);
  border-color: rgba(130,40,190,0.22);
}
.s-light .tag--teal, .s-white .tag--teal, .case-card .tag--teal {
  color: #0A7285;
  background: rgba(15,163,177,0.1);
  border-color: rgba(15,163,177,0.25);
}
.s-light .tag--green, .s-white .tag--green, .case-card .tag--green {
  color: #1C7230;
  background: rgba(35,140,55,0.1);
  border-color: rgba(35,140,55,0.22);
}
.s-light .tag--yellow, .s-white .tag--yellow, .case-card .tag--yellow {
  color: #7A6E00;
  background: rgba(180,160,0,0.1);
  border-color: rgba(180,160,0,0.22);
}

/* case-card text always dark — !important overrides misapplied inline color:var(--text-dim) */
.case-card h1, .case-card h2, .case-card h3, .case-card h4 { color: var(--text-dark) !important; }
.case-card p { color: var(--text-dim-dark) !important; margin: 0.75rem 0; }
.case-card__stat { color: var(--text-dark); }
.case-card a:not(.case-card__link) { color: var(--teal); }

/* ─── 33. FEATURE SPLIT ROW ─── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-row.reverse {
  direction: rtl;
}
.feature-row.reverse > * {
  direction: ltr;
}
.feature-row--reverse { grid-auto-flow: dense; }
.feature-row--reverse > *:first-child { order: 2; }
.feature-row--reverse > *:last-child { order: 1; }

/* ─── 34. DELIVERY FORMAT ROW ─── */
.delivery-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.delivery-card {
  flex: 1;
  max-width: 320px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.delivery-card:hover {
  transform: translateY(-4px);
}
.delivery-card--highlight {
  border-color: var(--cyan);
  background: rgba(20,224,251,0.04);
  box-shadow: 0 0 32px rgba(20,224,251,0.08);
}
.delivery-card h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}
.delivery-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
}
.delivery-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

/* ─── 35. MOBILE BREAKPOINTS ─── */
@media (max-width: 1024px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Nav */
  .nav__links {
    display: none;
  }
  .nav__lang {
    display: none;
  }
  .nav__burger {
    display: flex;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2.5rem;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  .hero__visual {
    order: -1;
  }
  .hero__photo-frame {
    max-width: 300px;
    margin: 0 auto;
  }
  .hero__floating-card {
    right: -10px;
    bottom: -10px;
  }

  /* Grids to 1 col */
  .pain-grid,
  .method-grid,
  .programs-grid,
  .testi-grid,
  .cases-grid,
  .resources-grid {
    grid-template-columns: 1fr;
  }
  .stats-bar--3col,
  .stats-bar--2col { grid-template-columns: 1fr; }
  .testi-grid--2col { grid-template-columns: 1fr; }
  .cases-grid--2col { grid-template-columns: 1fr; }
  .method-grid--2col { grid-template-columns: 1fr; }

  /* Stats */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-photo-frame {
    max-width: 320px;
    margin: 0 auto;
  }

  /* Feature row */
  .feature-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .feature-row.reverse {
    direction: ltr;
  }

  /* Delivery row */
  .delivery-row {
    flex-direction: column;
    align-items: center;
  }
  .delivery-card {
    max-width: 100%;
    width: 100%;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Sticky CTA */
  .sticky-cta {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
  }

  /* Typography */
  h2 {
    margin-bottom: 1rem;
  }

  /* Section padding */
  .container {
    padding: 0 1.25rem;
  }

  /* Case study meta */
  .cs-meta { gap: 1.5rem; justify-content: center; }
  .cs-stat { min-width: 40%; }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }
  .hero__btns {
    flex-direction: column;
  }
  .hero__btns .btn-primary,
  .hero__btns .btn-ghost-dark {
    width: 100%;
    justify-content: center;
  }
  .cta-block__btns {
    flex-direction: column;
  }
  .cta-block__btns .btn-primary,
  .cta-block__btns .btn-purple,
  .cta-block__btns .btn-ghost-dark {
    width: 100%;
    justify-content: center;
  }
}

/* ─── 36. FILTER PILLS (case-studies + blog) ─── */
.filter-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-pills--centered {
  justify-content: center;
}
.filter-pill {
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  border: 1.5px solid rgba(255,255,255,0.12);
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
  background: none;
}
.filter-pill.active,
.filter-pill:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(20,224,251,0.08);
}

/* ─── COMPARE GRID (ld-hr.html) ─── */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.compare-col {
  border-radius: var(--radius);
  padding: 1.75rem;
}
.compare-col--bad {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.compare-col--mid {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.compare-col--good {
  background: rgba(20,224,251,0.08);
  border: 1px solid rgba(20,224,251,0.25);
}
.compare-col h4 {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.compare-col ul li {
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  color: var(--text-dim);
  display: flex;
  gap: 0.5rem;
}
.compare-col--good ul li {
  color: var(--text);
}
@media (max-width: 768px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.pt-section { padding-top: var(--section-pad); }
.pb-section { padding-bottom: var(--section-pad); }
.py-section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dim-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--ff-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  border: 1.5px solid #d1d9e0;
  background: #fff;
  color: var(--text-dark);
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15,163,177,0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form--on-dark .form-input,
.contact-form--on-dark .form-select,
.contact-form--on-dark .form-textarea,
.contact-form--on-dark .form-group input,
.contact-form--on-dark .form-group select,
.contact-form--on-dark .form-group textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--text);
}
.contact-form--on-dark .form-label,
.contact-form--on-dark .form-group label {
  color: var(--text-dim);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-detail {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-dim-dark);
  font-family: var(--ff-ui);
  font-size: 0.95rem;
}
.contact-detail strong {
  color: var(--text-dark);
  min-width: 80px;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== REAL PHOTO & VIDEO STYLES ===================== */

/* Photo frames — real images */
.hero__photo-frame img,
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* Case card images with overlay tag */
.case-card__img {
  position: relative;
  overflow: hidden;
}
.case-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.case-card:hover .case-card__img img {
  transform: scale(1.04);
}
.case-card__img .tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

/* Photo gallery grid */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
  margin-top: 2rem;
}
.photo-gallery__item {
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.photo-gallery__item--tall {
  grid-row: span 2;
}
.photo-gallery__item--wide {
  grid-column: span 2;
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.photo-gallery__item:hover img {
  transform: scale(1.05);
}

/* Feature image — full-width inside a section */
.feature-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
  max-height: 520px;
}

/* Video testimonial grid */
.video-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.video-testi-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid var(--border);
}
.video-testi-card video {
  width: 100%;
  display: block;
  max-height: 280px;
  object-fit: cover;
  background: #000;
}
.video-testi-card__label {
  padding: 0.85rem 1.1rem;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Section video player */
.section-video {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  max-height: 520px;
  background: #000;
}

/* Aspirational banner — full bleed image with overlay text */
.aspire-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}
.aspire-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.aspire-banner__overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(8,12,16,0.85) 0%, rgba(8,12,16,0) 100%);
  padding: 2.5rem 2rem 2rem;
  width: 100%;
}
.aspire-banner__caption {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  color: rgba(240,244,248,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.aspire-banner__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 768px) {
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .photo-gallery__item--tall {
    grid-row: span 1;
  }
  .photo-gallery__item--wide {
    grid-column: span 2;
  }
  .aspire-banner {
    min-height: 280px;
  }
}

/* ===================== V5 POLISH FIXES ===================== */

/* 1 ─ case-card: visible border + hover border glow */
.case-card {
  border: 1px solid rgba(0,0,0,0.09);
}
.case-card:hover {
  border-color: rgba(15,163,177,0.25);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1), 0 0 0 1px rgba(15,163,177,0.12);
}
/* Ensure text is always dark inside case-card (white bg) */
.case-card__body h3,
.case-card__title { color: var(--text-dark) !important; }
.case-card__body p,
.case-card__text  { color: var(--text-dim-dark) !important; }

/* 2 ─ delivery-pills: high contrast on light/white card backgrounds */
.program-card .delivery-pills span,
.s-light .delivery-pills span,
.s-white .delivery-pills span {
  color: var(--text-dim-dark);
  border-color: rgba(0,0,0,0.13);
  background: rgba(0,0,0,0.04);
}

/* 3 ─ program-card link: teal for readability on white */
.program-card__link {
  color: var(--teal);
}
.program-card__link:hover {
  color: var(--dpurple);
  gap: 0.8rem;
}

/* 4 ─ program-card: visible border on light sections */
.s-light .program-card,
.s-white .program-card {
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.s-light .program-card:hover,
.s-white .program-card:hover {
  border-color: rgba(0,0,0,0.15);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* 5 ─ method-tag: bigger margin-bottom */
.method-tag {
  margin-bottom: 1rem;
}

/* 6 ─ method-card: enhanced hover on dark/navy sections */
.s-dark .method-card:hover,
.s-navy .method-card:hover,
.s-dpurple .method-card:hover {
  border-color: rgba(20,224,251,0.28);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(20,224,251,0.1);
  transform: translateY(-6px);
}

/* 7 ─ stat-label: dark color on light sections; more visible on all dark sections */
.stat-label {
  color: rgba(240,244,248,0.72);
}
.s-light .stat-label,
.s-white .stat-label {
  color: var(--text-dim-dark);
}

/* 8 ─ outcome / checklist list hover state */
.outcome-list li,
.outcome li,
.checklist li {
  transition: color 0.18s, padding-left 0.18s;
}
.outcome-list li:hover,
.outcome li:hover,
.checklist li:hover {
  color: var(--teal);
  padding-left: 0.4rem;
}

/* 9 ─ hero__btns: center when inside a centered-text hero */
.hero--centered .hero__btns,
[style*="text-align:center"] .hero__btns {
  justify-content: center;
}

/* 10 ─ delivery-card: put highlight (Hybrid) in the visual middle */
.delivery-row { flex-wrap: nowrap; }
.delivery-row .delivery-card:nth-child(1) { order: 1; }
.delivery-row .delivery-card--highlight    { order: 2; }
.delivery-row .delivery-card:nth-child(2)  { order: 3; }

/* 11 ─ logo strip: wordmark style instead of pills */
.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 0.2rem 0.5rem;
  background: none;
  border: none;
  border-radius: 0;
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(240,244,248,0.32);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s;
}
.logo-pill:hover {
  color: rgba(240,244,248,0.55);
}
.logo-strip__inner {
  gap: 3rem;
  align-items: center;
}
/* Separator dot between logos */
.logo-strip__inner .logo-sep {
  color: rgba(240,244,248,0.15);
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
}

/* ===================== V6 NEW COMPONENTS ===================== */

/* ─── V6 Programs 2×2 grid (dark bg) ─── */
.v6-programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.v6-program-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.v6-program-card:hover {
  transform: translateY(-5px);
  border-color: rgba(20,224,251,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(20,224,251,0.1);
}
.v6-program-card__img {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(20,224,251,0.1), rgba(187,75,255,0.06));
}
.v6-program-card__img--icon {
  flex-direction: column;
  gap: 1rem;
}
.v6-program-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.v6-program-card:hover .v6-program-card__img img {
  transform: scale(1.04);
}
.v6-program-card__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.3rem 0.85rem;
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2rem;
  background: rgba(8,12,16,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.v6-program-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.v6-program-card__body h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
}
.v6-program-card__body p {
  color: var(--text-dim);
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 1.25rem;
}
.v6-program-card__link {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s, color 0.2s;
}
.v6-program-card:hover .v6-program-card__link {
  gap: 0.7rem;
  color: var(--white);
}

/* ─── Testimonial light variant ─── */
.testi-card--light {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--text-dark);
}
.testi-card--light .testi-quote {
  color: var(--text-dim-dark);
}
.testi-card--light .testi-name {
  color: var(--text-dark);
}
.testi-card--light .testi-role {
  color: var(--text-dim-dark);
}
.testi-card--light:hover {
  border-color: rgba(15,163,177,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* ─── V6 stats darker bg ─── */
.stats-bar--v6-dividers .stat-item {
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 0 2rem;
}
.stats-bar--v6-dividers .stat-item:last-child {
  border-right: none;
}

/* ─── Mobile responsive V6 grid ─── */
@media (max-width: 768px) {
  .v6-programs-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   V6 NEW COMPONENTS — Mockup-matched styles
   ============================================================ */

/* ─── Hero trust pills ─── */
.v6-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(240,244,248,0.7);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.22s, color 0.22s, background 0.22s;
  cursor: default;
}
.v6-trust-pill:hover {
  border-color: rgba(20,224,251,0.4);
  color: var(--cyan);
  background: rgba(20,224,251,0.06);
}
.v6-trust-pill__icon {
  font-size: 1rem;
}

/* ─── Method cards (V6 variant) ─── */
.v6-method-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--white);
  padding: 2.2rem 2rem 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.v6-method-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 1rem 1rem 0 0;
}
.v6-method-card--1::before {
  background: linear-gradient(90deg, #14E0FB, #0FA3B1);
}
.v6-method-card--2::before {
  background: linear-gradient(90deg, #BB4BFF, #7B2FBE);
}
.v6-method-card--3::before {
  background: linear-gradient(90deg, #0FA3B1, #40C360);
}
.v6-method-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15,163,177,0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(15,163,177,0.2);
}

/* ─── Circle numbers (V6 transparent-border variant) ─── */
.v6-circle-num {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}
.v6-circle-num--cyan {
  background: linear-gradient(135deg, rgba(20,224,251,0.13), rgba(15,163,177,0.08));
  border: 2px solid rgba(20,224,251,0.35);
  color: var(--teal);
}
.v6-circle-num--purple {
  background: linear-gradient(135deg, rgba(187,75,255,0.13), rgba(123,47,190,0.08));
  border: 2px solid rgba(187,75,255,0.35);
  color: var(--purple);
}
.v6-circle-num--green {
  background: linear-gradient(135deg, rgba(64,195,96,0.13), rgba(15,163,177,0.08));
  border: 2px solid rgba(64,195,96,0.35);
  color: var(--green);
}

/* ─── Method tags (V6 colored variants) ─── */
.v6-method-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.v6-method-tag--cyan {
  background: rgba(20,224,251,0.1);
  color: var(--teal);
  border: 1px solid rgba(20,224,251,0.25);
}
.v6-method-tag--purple {
  background: rgba(187,75,255,0.1);
  color: var(--purple);
  border: 1px solid rgba(187,75,255,0.25);
}
.v6-method-tag--green {
  background: rgba(64,195,96,0.1);
  color: var(--green);
  border: 1px solid rgba(64,195,96,0.25);
}

/* ─── V6 Testimonial cards (deep-purple variant) ─── */
.v6-testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(187,75,255,0.15);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.v6-testi-card:hover {
  border-color: rgba(187,75,255,0.4);
  box-shadow: 0 20px 60px rgba(187,75,255,0.15);
  transform: translateY(-4px);
}
.v6-testi-card .testi-quote {
  color: rgba(240,244,248,0.8);
  font-style: italic;
  margin-bottom: 1.4rem;
  line-height: 1.7;
}
.v6-testi-card .testi-name {
  color: var(--white);
  font-weight: 700;
}
.v6-testi-card .testi-role {
  color: rgba(240,244,248,0.5);
  font-size: 0.82rem;
}

/* ─── Testimonials purple orb ─── */
.v6-testi-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187,75,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.v6-testi-orb--tl { top: -100px; left: -100px; }
.v6-testi-orb--br { bottom: -100px; right: -100px; }

/* ─── About photo frame ─── */
.v6-about-photo {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(20,224,251,0.1);
}
.v6-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── About floating badge ─── */
.v6-about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1.5rem;
  background: rgba(20,224,251,0.95);
  color: #000;
  border-radius: 0.9rem;
  padding: 0.9rem 1.3rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(20,224,251,0.3);
}
.v6-about-badge__big {
  display: block;
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.v6-about-badge__txt {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.75;
  margin-top: 0.15rem;
}

/* ─── About pills ─── */
.v6-about-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}
.v6-about-pill--cyan {
  background: rgba(20,224,251,0.1);
  border: 1px solid rgba(20,224,251,0.3);
  color: var(--cyan);
}
.v6-about-pill--purple {
  background: rgba(187,75,255,0.1);
  border: 1px solid rgba(187,75,255,0.3);
  color: var(--purple);
}
.v6-about-pill--green {
  background: rgba(64,195,96,0.1);
  border: 1px solid rgba(64,195,96,0.3);
  color: var(--green);
}
.v6-about-pill--yellow {
  background: rgba(244,234,0,0.1);
  border: 1px solid rgba(244,234,0,0.3);
  color: var(--yellow);
}

/* ─── Video wrapper ─── */
.v6-video-wrap {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: box-shadow 0.35s, transform 0.35s;
}
.v6-video-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px rgba(20,224,251,0.15);
}
.v6-video-wrap img {
  width: 100%;
  display: block;
}
.v6-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(20,224,251,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #000;
  box-shadow: 0 0 0 16px rgba(20,224,251,0.1), 0 0 0 32px rgba(20,224,251,0.05);
  transition: background 0.2s, transform 0.2s;
}
.v6-video-wrap:hover .v6-video-play {
  background: var(--cyan);
  transform: translate(-50%, -50%) scale(1.08);
}

/* ─── CTA purple orb ─── */
.v6-cta-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187,75,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.v6-cta-orb--tl { top: -80px; left: -80px; }
.v6-cta-orb--br { bottom: -80px; right: -80px; }

/* ─── V6 layout helpers ─── */
.v6-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.v6-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.v6-about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.v6-about-photo-wrap {
  position: relative;
}

/* ─── V6 Mobile ─── */
@media (max-width: 900px) {
  .v6-method-grid,
  .v6-testi-grid {
    grid-template-columns: 1fr;
  }
  .v6-about-layout {
    grid-template-columns: 1fr;
  }
  .v6-about-badge {
    right: 1rem;
  }
}

/* ============================================================
   V6 HERO — Expert Minds redesign
   ============================================================ */

.hero-v6 {
  /* // background: var(--dark2);   background: var(--dark); */
  /*// min-height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

/* //Mod for photo in background */

.hero-v6 {
  background: url(/assets/Pictures/Damien%20Close%20ups/53474035453_c5a715649c_o.jpg);
  background-size: cover;
  background-position: center center;
  min-height: 80vh;
}
.hero-v6__title-box {
    background: rgba(0,0,0,0.7);
    padding: 2rem;
    border-radius: 1rem;
    /* //margin-right: 10rem; */
}


.hero-v6::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,224,251,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-v6__container {
    /* //max-width: 100%; */
    /* //margin-left: 120px; */
    max-width: 1440px;

}

.hero-v6__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}


.hero-v6__badge-modalities{
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--teal-deep);
  color: var(--cyan);
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  border: 1px solid rgba(20,224,251,0.2);
  margin-bottom:1.5rem
}

.hero-v6__pillars {
  display: none; /* //display: flex; */
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero-v6__pillar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.hero-v6__pillar-num {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  flex-shrink: 0;
}
.hero-v6__pillar-div { color: rgba(255,255,255,0.15); font-size: 0.9rem; }
.hero-v6__pillar--1 { color: var(--cyan); }
.hero-v6__pillar--2 { color: var(--purple); }
.hero-v6__pillar--3 { color: var(--teal); }

.hero-v6__h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-v6__lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 0.6rem;
}
.hero-v6__body {
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-v6__btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 1.2rem 0;
}
.hero-v6__notsure {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 1.2rem;
  margin-bottom: 2.5rem;
}
.hero-v6__notsure a {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero-v6__stats {
  display:none; /* //display: flex; */
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-v6__stat { display: flex; flex-direction: column; }
.hero-v6__stat-num {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.hero-v6__stat-num .star { color: #F4EA00; font-size: 1.1rem; }
.hero-v6__stat-lbl {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}

/* Visual right */
.hero-v6__visual { 
  position: relative; padding: 1.5rem 1.5rem 3rem 0; 
}

.hero-v6__photo {
  border-radius: 1.2rem;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(20,224,251,0.06);
  aspect-ratio: 3/4; /* //aspect-ratio: 4/3; */
}
.hero-v6__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.hero-v6__badge-star {
  position: absolute;
  top: 0;
  right: 0;
  background: #7A5C0D;
  border-radius: 0.8rem;
  padding: 0.7rem 1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 2;
}
.hero-v6__badge-stars { color: #FFD700; font-size: 0.85rem; letter-spacing: 0.08em; display: block; margin-bottom: 0.15rem; }
.hero-v6__badge-sub { color: rgba(255,255,255,0.85); font-size: 0.68rem; font-weight: 700; white-space: nowrap; }
.hero-v6__badge-tedx {
  position: absolute;
  top: 4.5rem;
  right: 0;
  background: rgba(123,47,190,0.9);
  border-radius: 0.8rem;
  padding: 0.6rem 1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(123,47,190,0.4);
  z-index: 2;
  white-space: nowrap;
}
.hero-v6__badge-tedx-txt { color: #fff; font-size: 0.7rem; font-weight: 700; line-height: 1.4; }
.hero-v6__video-card {
  position: absolute;
  bottom: 1rem;
  left: -1rem;
  background: rgba(8,12,16,0.93);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 270px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  z-index: 3;
}
.hero-v6__video-card:hover { border-color: rgba(20,224,251,0.3); transform: translateY(-2px); }
.hero-v6__play {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.hero-v6__video-title { color: var(--white); font-size: 0.8rem; font-weight: 700; line-height: 1.3; }
.hero-v6__video-sub { color: var(--text-dim); font-size: 0.7rem; margin-top: 0.15rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero-v6__inner { grid-template-columns: 1fr; }
  .hero-v6__visual { padding: 0; margin-top: 2rem; }
  .hero-v6__badge-star, .hero-v6__badge-tedx { right: 0; }
}

/* ============================================================
   STAT BAR SECTION
   ============================================================ */

.stats-bar-section {
  background: var(--dark); /* //var(--dark2) */
  padding:3.5rem 0;
  border-top:1px solid rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

/* ============================================================
   INFINITE MARQUEE LOGO STRIP
   ============================================================ */

.logo-marquee-section {
  background: var(--dark); /* //var(--dark2); */
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}
.logo-marquee-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,244,248,0.3);
  margin-bottom: 1.5rem;
}
.logo-marquee-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logo-marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}
.logo-marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-marquee-item {
  font-family: var(--ff-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(240,244,248,0.3);
  padding: 0 2.5rem;
  white-space: nowrap;
  transition: color 0.2s;
}
.logo-marquee-item:hover { color: rgba(240,244,248,0.65); }
.logo-marquee-sep {
  color: rgba(240,244,248,0.1);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   DUAL-TRACK TIMELINE (about page)
   ============================================================ */

.dual-track-section { padding: var(--section-pad) 0; }
.dual-track-intro { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.dual-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.dual-track__path-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dual-track__path-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.dual-track__path-name { font-weight: 700; font-size: 0.95rem; line-height: 1.2; }
.dual-track__path-sub { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.1rem; }

.dual-track__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 1.25rem;
  margin-bottom: 2.2rem;
  position: relative;
}
.dual-track__item::before {
  content: '';
  position: absolute;
  left: 79px;
  top: 0.6rem;
  bottom: -1.2rem;
  width: 1px;
  background: rgba(255,255,255,0.07);
}
.dual-track__item:last-child::before { display: none; }
.dual-track__year {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-top: 0.2rem;
  text-align: right;
  white-space: nowrap;
}
.dual-track__dot {
  position: absolute;
  left: 74px;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid;
  background: var(--dark);
}
.dual-track__body { padding-left: 0.5rem; }
.dual-track__title { font-weight: 700; font-size: 0.92rem; color: var(--white); margin-bottom: 0.3rem; }
.dual-track__desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.65; }

/* Expert path = cyan; Stage path = purple */
.dual-track__path--expert .dual-track__year { color: var(--cyan); }
.dual-track__path--expert .dual-track__dot { border-color: var(--cyan); }
.dual-track__path--expert .dual-track__path-icon { background: rgba(20,224,251,0.1); }
.dual-track__path--stage .dual-track__year { color: var(--purple); }
.dual-track__path--stage .dual-track__dot { border-color: var(--purple); }
.dual-track__path--stage .dual-track__path-icon { background: rgba(187,75,255,0.1); }

@media (max-width: 768px) {
  .dual-track { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPARISON TABLE (method page)
   ============================================================ */

.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.compare-table thead th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  padding-bottom: 1.25rem;
}
.compare-table thead th:first-child { color: rgba(240,244,248,0.4); }
.compare-table thead th:nth-child(2) { color: #E05252; }
.compare-table thead th:nth-child(3) { color: var(--cyan); }
.compare-table tbody td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: top;
  line-height: 1.55;
  font-size: 0.9rem;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td:first-child { font-weight: 700; color: var(--white); width: 16%; }
.compare-table tbody td:nth-child(2) { color: rgba(220,100,100,0.85); width: 40%; }
.compare-table tbody td:nth-child(3) { color: rgba(20,224,251,0.9); width: 44%; }
.compare-table tbody tr:hover td { background: rgba(255,255,255,0.02); }

/* ============================================================
   PILLAR TRIO — large icon + arrow design
   ============================================================ */

.pillar-trio {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 1rem;
}

.pillar-trio__card {
  flex: 1;
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2.5rem 1.75rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-trio__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.pillar-trio__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 1.25rem 1.25rem 0 0;
}
.pillar-trio__card--1::before { background: linear-gradient(90deg, #14E0FB, #0FA3B1); }
.pillar-trio__card--2::before { background: linear-gradient(90deg, #BB4BFF, #7B2FBE); }
.pillar-trio__card--3::before { background: linear-gradient(90deg, #0FA3B1, #40C360); }

.pillar-trio__icon {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
}

.pillar-trio__num {
  font-family: var(--ff-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--text-dim-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.pillar-trio__title {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark) !important;
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.pillar-trio__sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}

.pillar-trio__desc {
  color: #4A5A68;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

.pillar-trio__tag {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-top: auto;
}
.pillar-trio__tag--cyan   { background: rgba(14,160,180,0.12); color: #0A7285; border: 1px solid rgba(14,160,180,0.3); }
.pillar-trio__tag--purple { background: rgba(130,40,190,0.1);  color: #6E28A8; border: 1px solid rgba(130,40,190,0.25); }
.pillar-trio__tag--green  { background: rgba(35,140,55,0.1);   color: #1C7230; border: 1px solid rgba(35,140,55,0.25); }

.pillar-trio__link {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan);
  margin-top: auto;
  transition: color 0.2s;
}
.pillar-trio__link:hover { color: #14E0FB; opacity: 0.8; }

/* Arrow between cards */
.pillar-trio__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.6rem;
  font-size: 1.6rem;
  color: rgba(15,163,177,0.4);
  flex-shrink: 0;
  line-height: 1;
}

/* Dark variant — method.html overview on dark background */
.pillar-trio--dark .pillar-trio__card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
}
.pillar-trio--dark .pillar-trio__card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(20,224,251,0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.pillar-trio--dark .pillar-trio__title { color: var(--white) !important; }
.pillar-trio--dark .pillar-trio__num   { color: rgba(240,244,248,0.35); }
.pillar-trio--dark .pillar-trio__sub   { color: rgba(240,244,248,0.45); }
.pillar-trio--dark .pillar-trio__desc  { color: var(--text-dim); }
.pillar-trio--dark .pillar-trio__tag--cyan   { background: rgba(20,224,251,0.08); color: var(--cyan); border-color: rgba(20,224,251,0.2); }
.pillar-trio--dark .pillar-trio__tag--purple { background: rgba(187,75,255,0.08); color: var(--purple); border-color: rgba(187,75,255,0.2); }
.pillar-trio--dark .pillar-trio__tag--green  { background: rgba(64,195,96,0.08); color: var(--green); border-color: rgba(64,195,96,0.2); }

@media (max-width: 960px) {
  .pillar-trio { flex-direction: column; }
  .pillar-trio__arrow {
    transform: rotate(90deg);
    padding: 0.25rem 0;
    font-size: 1.4rem;
  }
}

/* ============================================================
   CONTRAST FIXES — light section context overrides
   ============================================================ */

/* Tags that appear on light/white backgrounds need darker text */
.s-light .v6-method-tag--cyan,
.s-white .v6-method-tag--cyan  { color: #0A7285; background: rgba(14,160,180,0.1); }
.s-light .v6-method-tag--purple,
.s-white .v6-method-tag--purple { color: #6E28A8; background: rgba(130,40,190,0.08); }
.s-light .v6-method-tag--green,
.s-white .v6-method-tag--green  { color: #1C7230; background: rgba(35,140,55,0.08); }

/* Circle numbers on white/light cards */
.s-light .v6-circle-num--cyan,
.s-white .v6-circle-num--cyan   { color: #0A7285; }
.s-light .v6-circle-num--purple,
.s-white .v6-circle-num--purple  { color: #6E28A8; }
.s-light .v6-circle-num--green,
.s-white .v6-circle-num--green   { color: #1C7230; }

/* Default method-tag on light sections */
.s-light .method-tag { color: #0A7285; }

/* About pills: on dark sections they look great; on any light use these overrides */
.s-light .v6-about-pill--cyan   { color: #0A7285; background: rgba(14,160,180,0.1); }
.s-light .v6-about-pill--purple { color: #6E28A8; background: rgba(130,40,190,0.08); }
.s-light .v6-about-pill--green  { color: #1C7230; background: rgba(35,140,55,0.08); }
.s-light .v6-about-pill--yellow { color: #7A6A00; background: rgba(180,160,0,0.1); border-color: rgba(180,160,0,0.3); }

/* Method card h3 always dark in light sections */
.s-light .method-card h3,
.s-white .method-card h3 { color: var(--text-dark); }

/* v6-method-card white bg: ensure h3 is dark */
.v6-method-card h3 { color: var(--text-dark); }
