/* ═══════════════════════════════════════════════════
   mentorship.css — dedicated styles for mentorship.php
   ═══════════════════════════════════════════════════ */

/* ── HERO SECTION ────────────────────────────────── */
.m-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--paper) 0%, var(--warm) 58%, #c9d2cf 100%);
  color: var(--ink);
  padding: clamp(120px, 14vw, 180px) var(--pad) clamp(80px, 10vw, 130px);
}
.m-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(23,23,22,.045) 1px, transparent 1px),
    linear-gradient(rgba(23,23,22,.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 92%);
  z-index: 0;
}

/* Animated glows */
.m-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.m-hero__glow--1 {
  width: 600px; height: 600px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(95,113,120,.18), transparent 70%);
  animation: heroGlow1 9s ease-in-out infinite alternate;
}
.m-hero__glow--2 {
  width: 500px; height: 500px;
  bottom: -80px; left: 10%;
  background: radial-gradient(circle, rgba(154,119,64,.12), transparent 70%);
  animation: heroGlow2 11s ease-in-out infinite alternate;
}
@keyframes heroGlow1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 40px) scale(1.15); }
}
@keyframes heroGlow2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -30px) scale(1.1); }
}

/* Grain overlay */
.m-hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.m-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: auto;
}

.m-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.m-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.m-breadcrumb:hover { color: var(--ink); }
.m-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(23,23,22,.03);
  backdrop-filter: blur(8px);
}

.m-hero__title {
  margin: 0 0 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(56px, 9vw, 130px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, var(--ink) 30%, var(--olive) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 8px;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.08));
}
html[dir="rtl"] .m-hero__title {
  font-family: Cairo, Inter, sans-serif;
  font-size: clamp(46px, 8vw, 102px);
  line-height: 1.15;
}


.m-hero__sub {
  margin: 0 0 16px;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  color: var(--ink);
  max-width: 850px;
  line-height: 1.3;
}
.m-hero__desc {
  margin: 0 0 38px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: #4c5552;
  max-width: 720px;
  line-height: 1.65;
}

.m-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.m-hero .btn--line {
  border-color: var(--line-strong);
  color: var(--ink);
}
.m-hero .btn--line:hover {
  border-color: var(--ink);
}

/* ── WHAT WE WORK ON ─────────────────────────────── */
.m-work__inner {
  width: min(100%, var(--max));
  margin: auto;
}
.m-work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.m-work__card {
  padding: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--fog);
  transition: transform .25s, background .25s;
}
.m-work__card:hover {
  background: #ffffff;
  transform: translateY(-2px);
}
.m-work__card--full {
  grid-column: 1 / -1;
}
.m-work__icon {
  font-size: 11px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.m-work__card h3 {
  margin: 0 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 800;
}
html[dir="rtl"] .m-work__card h3 {
  font-family: Cairo, Inter, sans-serif;
  font-size: 22px;
}
.m-work__card ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.m-work__card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--muted);
}
.m-work__card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}
html[dir="rtl"] .m-work__card li {
  padding-left: 0;
  padding-right: 18px;
}
html[dir="rtl"] .m-work__card li::before {
  left: auto;
  right: 0;
  content: "←";
}

/* ── PACKAGES & PROGRAMS ─────────────────────────── */
.m-packages__inner {
  width: min(100%, var(--max));
  margin: auto;
}
.m-packages,
.m-qualification,
.faq-section {
  isolation: isolate;
}
.m-packages::before,
.m-qualification::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.m-season {
  margin-bottom: 74px;
}
.m-season__card {
  display: grid;
  grid-template-columns: 1fr 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.m-season__left {
  padding: 44px;
}
.m-season__desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 680px;
  margin: 18px 0 34px;
}
.m-grid-lists {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.m-sublist strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: .08em;
  margin-bottom: 16px;
}
html[dir="rtl"] .m-sublist strong { letter-spacing: 0; }
.m-sublist ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.m-sublist li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: var(--ink);
}
.m-sublist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}
html[dir="rtl"] .m-sublist li { padding-left: 0; padding-right: 16px; }
html[dir="rtl"] .m-sublist li::before { left: auto; right: 0; }

.m-ideal-text, .m-duration-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 24px;
}
.m-duration-text { margin-bottom: 0; font-weight: 700; color: var(--ink); }

.m-season__right {
  padding: 44px;
  background: var(--ink);
  color: var(--fog);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.m-price-lbl {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(251,252,251,.55);
  margin: 0 0 10px;
}
html[dir="rtl"] .m-price-lbl { letter-spacing: 0; }
.m-price-val {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 14px;
}
html[dir="rtl"] .m-price-val { font-family: Cairo, Inter, sans-serif; }
.m-price-note {
  font-size: 12px;
  color: rgba(251,252,251,.5);
  margin-bottom: 30px;
  line-height: 1.55;
}
.m-season__right .btn {
  background: var(--fog);
  color: var(--ink);
}
.m-season__right .btn:hover {
  background: var(--warm);
}

/* ── GOAL-BASED ──────────────────────────────────── */
.m-goal-intro {
  max-width: 760px;
  margin: 74px auto 38px;
  text-align: center;
}
.m-goal-intro h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 14px;
}
html[dir="rtl"] .m-goal-intro h3 { font-family: Cairo, Inter, sans-serif; }
.m-goal-intro p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.m-goal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.m-goal-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
.m-goal-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 22px;
}
.m-goal-tier {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  color: var(--gold);
}
html[dir="rtl"] .m-goal-tier { letter-spacing: 0; }
.m-goal-price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
html[dir="rtl"] .m-goal-price { font-family: Cairo, Inter, sans-serif; font-size: 19px; }

.m-goal-milestone {
  background: rgba(23,23,22,.03);
  padding: 16px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.m-goal-milestone span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.m-goal-milestone strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.35;
}
.m-goal-ideal {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 28px;
}
.m-goal-card .btn {
  margin-top: auto;
}

/* Dominate Premium tier */
.m-goal-card--premium {
  background: var(--ink);
  color: var(--fog);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}
.m-goal-card--premium .m-goal-price { color: var(--fog); }
.m-goal-card--premium .m-goal-milestone { background: rgba(251,252,251,.08); }
.m-goal-card--premium .m-goal-milestone strong { color: var(--fog); }
.m-goal-card--premium .m-goal-ideal { color: rgba(251,252,251,.7); }
.m-goal-card--premium .btn { background: var(--fog); color: var(--ink); }
.m-goal-card--premium .btn:hover { background: var(--warm); }

/* ── PROCESS & ROADMAP ─────────────────────────────── */
.m-process__inner {
  width: min(100%, var(--max));
  margin: auto;
}
.m-process-split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 5vw, 74px);
  align-items: start;
}
.m-steps {
  display: grid;
  gap: 16px;
}
.m-step {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
}
.m-step__num {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: .08em;
}
html[dir="rtl"] .m-step__num { letter-spacing: 0; }
.m-step p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}

.m-process__support {
  padding: 38px;
  background: rgba(251,252,251,.45);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}
.m-process__support h3 {
  margin: 0 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
}
html[dir="rtl"] .m-process__support h3 { font-family: Cairo, Inter, sans-serif; }
.m-process__support ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.m-process__support li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--ink);
}
.m-process__support li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}
html[dir="rtl"] .m-process__support li { padding-left: 0; padding-right: 20px; }
html[dir="rtl"] .m-process__support li::before { left: auto; right: 0; }

/* ── QUALIFICATIONS ──────────────────────────────── */
.m-qualification__inner {
  width: min(100%, var(--max));
  margin: auto;
}
.m-qualification__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.m-qual-card {
  padding: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.m-qual-card--yes {
  background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(240,248,244,.9));
}
.m-qual-card--no {
  background: linear-gradient(135deg, rgba(255,255,255,.5), rgba(248,244,240,.8));
}
.m-qual-card h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}
html[dir="rtl"] .m-qual-card h3 { font-family: Cairo, Inter, sans-serif; }
.m-qual-sub {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: .08em;
  margin: 0 0 24px;
}
html[dir="rtl"] .m-qual-sub { letter-spacing: 0; }
.m-qual-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.m-qual-card li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.m-qual-card--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3a8a5c;
  font-weight: 900;
}
.m-qual-card--no li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #a05050;
  font-weight: 900;
}
html[dir="rtl"] .m-qual-card li { padding-left: 0; padding-right: 24px; }
html[dir="rtl"] .m-qual-card--yes li::before,
html[dir="rtl"] .m-qual-card--no li::before { left: auto; right: 0; }

/* ── PHILOSOPHY ──────────────────────────────────── */
.m-philosophy__inner {
  max-width: 860px;
  margin: auto;
  text-align: center;
}
.m-philosophy h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.15;
  margin-bottom: 44px;
}
html[dir="rtl"] .m-philosophy h2 { font-family: Cairo, Inter, sans-serif; }
.m-philosophy__text {
  max-width: 680px;
  margin: auto;
  text-align: left;
}
html[dir="rtl"] .m-philosophy__text { text-align: right; }
.m-philosophy__text p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.6;
}
.m-philosophy__text .highlight-p {
  font-size: 20px;
  color: var(--ink);
  font-weight: 700;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 28px 0;
}
html[dir="rtl"] .m-philosophy__text .highlight-p {
  border-left: 0;
  border-right: 3px solid var(--gold);
  padding-left: 0;
  padding-right: 18px;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1080px) {
  .m-goal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .m-goal-card--premium {
    grid-column: 1 / -1;
  }
  .m-season__card {
    grid-template-columns: 1fr;
  }
  .m-season__right {
    padding-block: 54px;
  }
  .m-process-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .m-work__grid {
    grid-template-columns: 1fr;
  }
  .m-grid-lists {
    grid-template-columns: 1fr;
  }
  .m-goal-grid {
    grid-template-columns: 1fr;
  }
  .m-goal-card--premium {
    grid-column: unset;
  }
  .m-qualification__grid {
    grid-template-columns: 1fr;
  }
  .m-qual-card {
    padding: 28px;
  }
  .m-season__left {
    padding: 24px;
  }
  .m-step {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .m-step__num {
    border-bottom: 1px solid rgba(23,23,22,.08);
    padding-bottom: 6px;
  }
}

/* ════════════════════════════════════════════════════════════
   DARK MODE — Mentorship page
   ════════════════════════════════════════════════════════════ */

/* Hero */
html[data-theme="dark"] .m-hero {
  background: linear-gradient(135deg, var(--dm-s1) 0%, var(--dm-s2) 58%, var(--dm-s3) 100%);
  color: var(--dm-text);
}
html[data-theme="dark"] .m-hero::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 76px 76px;
}
html[data-theme="dark"] .m-hero__glow--1 {
  background: radial-gradient(circle, rgba(122,158,166,.14), transparent 70%);
}
html[data-theme="dark"] .m-hero__glow--2 {
  background: radial-gradient(circle, rgba(80,110,100,.1), transparent 70%);
}
html[data-theme="dark"] .m-hero__title {
  background: linear-gradient(135deg, #ffffff 0%, color-mix(in srgb, var(--dm-text) 92%, white) 58%, var(--dm-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.18));
}
html[data-theme="dark"] .m-hero__sub {
  color: var(--dm-text);
}
html[data-theme="dark"] .m-hero__desc {
  color: var(--dm-text-2);
}
html[data-theme="dark"] .m-breadcrumb {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .m-breadcrumb:hover {
  color: var(--dm-text);
}
html[data-theme="dark"] .m-badge {
  border-color: var(--dm-line-strong);
  background: rgba(255,255,255,.04);
  color: var(--dm-accent);
}
html[data-theme="dark"] .m-hero .btn--line {
  border-color: var(--dm-line-strong);
  color: var(--dm-text);
}
html[data-theme="dark"] .m-hero .btn--line:hover {
  border-color: var(--dm-text);
}

/* What We Work On */
html[data-theme="dark"] .m-work__card {
  background: var(--dm-card);
  border-color: var(--dm-line);
}
html[data-theme="dark"] .m-work__card:hover {
  background: linear-gradient(135deg, rgba(122,158,166,.08), rgba(255,255,255,.015)), var(--dm-s3);
}
html[data-theme="dark"] .m-work__card h3 {
  color: var(--dm-text);
}
html[data-theme="dark"] .m-work__card li {
  color: var(--dm-text-muted);
}

/* Season mentorship card */
html[data-theme="dark"] .m-season__card {
  background: linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)), var(--dm-card);
  border-color: var(--dm-line-strong);
}
html[data-theme="dark"] .m-season__desc {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .m-grid-lists {
  border-top-color: var(--dm-line);
}
html[data-theme="dark"] .m-sublist li {
  color: var(--dm-text-2);
}
html[data-theme="dark"] .m-ideal-text {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .m-duration-text {
  color: var(--dm-text);
}
html[data-theme="dark"] .m-season__right {
  background: linear-gradient(135deg, var(--dm-s5), var(--dm-s1));
  color: var(--dm-text);
}
html[data-theme="dark"] .m-price-lbl {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .m-price-note {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .m-season__right .btn {
  background: var(--dm-text);
  color: var(--dm-base);
}
html[data-theme="dark"] .m-season__right .btn:hover {
  background: var(--dm-accent);
}

/* Goal-based cards */
html[data-theme="dark"] .m-goal-intro p {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .m-goal-card {
  background: linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,.01)), var(--dm-card);
  border-color: var(--dm-line);
}
html[data-theme="dark"] .m-goal-header {
  border-bottom-color: var(--dm-line);
}
html[data-theme="dark"] .m-goal-price {
  color: var(--dm-text);
}
html[data-theme="dark"] .m-goal-milestone {
  background: rgba(255,255,255,.04);
}
html[data-theme="dark"] .m-goal-milestone span {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .m-goal-milestone strong {
  color: var(--dm-text);
}
html[data-theme="dark"] .m-goal-ideal {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .m-goal-card--premium {
  background: linear-gradient(135deg, #0d1814, #141020);
  color: var(--dm-text);
  border-color: var(--dm-line-strong);
}
html[data-theme="dark"] .m-goal-card--premium .m-goal-price {
  color: var(--dm-text);
}
html[data-theme="dark"] .m-goal-card--premium .m-goal-milestone {
  background: rgba(255,255,255,.05);
}
html[data-theme="dark"] .m-goal-card--premium .m-goal-milestone strong {
  color: var(--dm-text);
}
html[data-theme="dark"] .m-packages,
html[data-theme="dark"] .m-qualification {
  background: linear-gradient(180deg, color-mix(in srgb, var(--dm-base) 98%, transparent), color-mix(in srgb, var(--dm-s1) 96%, transparent));
}
html[data-theme="dark"] .m-packages::before,
html[data-theme="dark"] .m-qualification::before {
  opacity: 1;
  background:
    radial-gradient(circle at 84% 18%, rgba(255,255,255,.018), transparent 26%),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: auto, 84px 84px, 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.88), transparent 96%);
}
html[data-theme="dark"] .faq-section{
  background: linear-gradient(180deg, var(--dm-s2) 0%, var(--dm-s1) 100%);
}
html[data-theme="dark"] .faq-list{
  margin-top: 30px;
}
html[data-theme="dark"] .faq-item:first-child{
  border-top-color: var(--dm-line-strong);
}
html[data-theme="dark"] .faq-item{
  border-bottom-color: var(--dm-line);
}
html[data-theme="dark"] .faq-trigger{
  color: var(--dm-text);
}
html[data-theme="dark"] .faq-icon{
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .faq-content p{
  color: var(--dm-text-muted);
}

/* Theme refinement — Graphite */
html[data-site-theme="graphite"][data-theme="dark"] .m-hero {
  background: linear-gradient(135deg, #0c0d10 0%, #191c22 58%, #252830 100%);
}
html[data-site-theme="graphite"][data-theme="dark"] .m-hero__title {
  background: linear-gradient(135deg, #ffffff 0%, #eef2f8 56%, #9eabc2 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
html[data-site-theme="graphite"][data-theme="dark"] .m-hero__glow--1 {
  background: radial-gradient(circle, rgba(136,148,170,.18), transparent 70%);
}
html[data-site-theme="graphite"][data-theme="dark"] .m-hero__glow--2 {
  background: radial-gradient(circle, rgba(90,100,120,.12), transparent 70%);
}
html[data-site-theme="graphite"][data-theme="dark"] .m-packages,
html[data-site-theme="graphite"][data-theme="dark"] .m-qualification {
  background:
    radial-gradient(circle at 15% 12%, rgba(136,148,170,.05), transparent 26%),
    linear-gradient(180deg, #11141a 0%, #161a22 100%);
}
html[data-site-theme="graphite"][data-theme="dark"] .m-packages::before,
html[data-site-theme="graphite"][data-theme="dark"] .m-qualification::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(136,148,170,.045), transparent 26%),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: auto, 88px 88px, 88px 88px;
}
html[data-site-theme="graphite"][data-theme="dark"] .faq-section{
  background: linear-gradient(180deg, #171b23 0%, #12151b 100%);
}

/* Theme refinement — Obsidian */
html[data-site-theme="obsidian"][data-theme="dark"] .m-hero {
  background: linear-gradient(135deg, #050505 0%, #141414 58%, #202020 100%);
}
html[data-site-theme="obsidian"][data-theme="dark"] .m-hero__title {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f3 58%, #d9d9d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
html[data-site-theme="obsidian"][data-theme="dark"] .m-hero__glow--1 {
  background: radial-gradient(circle, rgba(224,224,220,.10), transparent 70%);
}
html[data-site-theme="obsidian"][data-theme="dark"] .m-hero__glow--2 {
  background: radial-gradient(circle, rgba(255,255,255,.06), transparent 70%);
}
html[data-site-theme="obsidian"][data-theme="dark"] .m-packages,
html[data-site-theme="obsidian"][data-theme="dark"] .m-qualification {
  background:
    radial-gradient(circle at 14% 12%, rgba(255,255,255,.022), transparent 24%),
    linear-gradient(180deg, #090909 0%, #0d0d0d 100%);
}
html[data-site-theme="obsidian"][data-theme="dark"] .m-packages::before,
html[data-site-theme="obsidian"][data-theme="dark"] .m-qualification::before {
  background:
    radial-gradient(circle at 84% 16%, rgba(255,255,255,.018), transparent 24%),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.01) 1px, transparent 1px);
  background-size: auto, 88px 88px, 88px 88px;
}
html[data-site-theme="obsidian"][data-theme="dark"] .faq-section{
  background:
    radial-gradient(circle at 88% 10%, rgba(255,255,255,.015), transparent 24%),
    linear-gradient(180deg, #0c0c0c 0%, #080808 100%);
}
html[data-theme="dark"] .m-goal-card--premium .m-goal-ideal {
  color: var(--dm-text-2);
}
html[data-theme="dark"] .m-goal-card--premium .btn {
  background: var(--dm-text);
  color: var(--dm-base);
}

/* Process steps */
html[data-theme="dark"] .m-step {
  background: var(--dm-card);
  border-color: var(--dm-line);
}
html[data-theme="dark"] .m-step p {
  color: var(--dm-text-2);
}
html[data-theme="dark"] .m-step__num {
  border-bottom-color: var(--dm-line);
}
html[data-theme="dark"] .m-process__support {
  background: rgba(255,255,255,.04);
  border-color: var(--dm-line-strong);
}
html[data-theme="dark"] .m-process__support h3 {
  color: var(--dm-text);
}
html[data-theme="dark"] .m-process__support li {
  color: var(--dm-text-2);
}

/* Qualifications */
html[data-theme="dark"] .m-qual-card {
  border-color: var(--dm-line);
}
html[data-theme="dark"] .m-qual-card--yes {
  background: linear-gradient(135deg, rgba(20,35,27,.9), rgba(18,30,24,.8));
}
html[data-theme="dark"] .m-qual-card--no {
  background: linear-gradient(135deg, rgba(28,20,22,.9), rgba(24,18,20,.8));
}
html[data-theme="dark"] .m-qual-card h3 {
  color: var(--dm-text);
}
html[data-theme="dark"] .m-qual-card li {
  color: var(--dm-text-2);
}
html[data-theme="dark"] .m-qual-card--yes li::before {
  color: #4caa75;
}
html[data-theme="dark"] .m-qual-card--no li::before {
  color: #c07070;
}

/* Philosophy */
html[data-theme="dark"] .m-philosophy h2 {
  color: var(--dm-text);
}
html[data-theme="dark"] .m-philosophy__text p {
  color: var(--dm-text-muted);
}
html[data-theme="dark"] .m-philosophy__text .highlight-p {
  color: var(--dm-text);
  border-left-color: var(--dm-accent);
}
html[dir="rtl"][data-theme="dark"] .m-philosophy__text .highlight-p {
  border-right-color: var(--dm-accent);
}
