/* =========================================
   ZIHAXAY — MAIN STYLESHEET
   Chromatic Blur Design System
   camelCase component naming convention
   ========================================= */

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --colorPrimary: #6C3DE8;
  --colorPrimaryDark: #4E1FA8;
  --colorSecondary: #E83DA0;
  --colorAccent: #3DE8C3;
  --colorAccentWarm: #F0A050;

  --colorBg: #FAF8FF;
  --colorSurface: #FFFFFF;
  --colorSurfaceAlt: #F3EFFD;
  --colorText: #1A1028;
  --colorTextMuted: #5A5070;
  --colorBorder: #E2DDEF;

  --gradientPrimary: linear-gradient(135deg, #6C3DE8 0%, #E83DA0 100%);
  --gradientSecondary: linear-gradient(135deg, #3DE8C3 0%, #6C3DE8 100%);
  --gradientHero: linear-gradient(135deg, #7B4FEA 0%, #D946A8 50%, #F0A050 100%);
  --gradientText: linear-gradient(135deg, #6C3DE8 0%, #E83DA0 60%, #F0A050 100%);

  --shadowSm: 0 1px 3px rgba(108,61,232,0.08), 0 2px 8px rgba(108,61,232,0.05);
  --shadowMd: 0 4px 16px rgba(108,61,232,0.12), 0 1px 4px rgba(108,61,232,0.08);
  --shadowLg: 0 8px 32px rgba(108,61,232,0.16), 0 2px 8px rgba(108,61,232,0.10);
  --shadowXl: 0 16px 56px rgba(108,61,232,0.20), 0 4px 16px rgba(108,61,232,0.12);

  --radiusSm: 8px;
  --radiusMd: 16px;
  --radiusLg: 24px;
  --radiusXl: 36px;
  --radiusFull: 9999px;

  --spacingXs: 0.5rem;
  --spacingSm: 1rem;
  --spacingMd: 1.5rem;
  --spacingLg: 2.5rem;
  --spacingXl: 4rem;
  --spacingXxl: 7rem;

  --headerHeight: 72px;
  --transitionFast: 150ms ease;
  --transitionMed: 300ms ease;
  --transitionSlow: 500ms ease;
}

@media (prefers-color-scheme: dark) {
  :root {
    --colorBg: #0D0918;
    --colorSurface: #160D2A;
    --colorSurfaceAlt: #1E1435;
    --colorText: #F0EBF8;
    --colorTextMuted: #A89CC0;
    --colorBorder: #2E2048;
    --shadowSm: 0 1px 3px rgba(0,0,0,0.3), 0 2px 8px rgba(108,61,232,0.15);
    --shadowMd: 0 4px 16px rgba(0,0,0,0.4), 0 1px 4px rgba(108,61,232,0.2);
    --shadowLg: 0 8px 32px rgba(0,0,0,0.5), 0 2px 8px rgba(108,61,232,0.25);
    --shadowXl: 0 16px 56px rgba(0,0,0,0.6), 0 4px 16px rgba(108,61,232,0.3);
  }
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Work Sans', sans-serif;
  background-color: var(--colorBg);
  color: var(--colorText);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--colorPrimary); text-decoration: none; transition: color var(--transitionFast); }
a:hover { color: var(--colorSecondary); }
ul { list-style: none; }
address { font-style: normal; }

/* ---- TYPOGRAPHY SCALE ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--colorText);
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--colorTextMuted); }
p:last-child { margin-bottom: 0; }

/* ---- UTILITY CLASSES ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacingMd);
}

.gradientText {
  background: var(--gradientText);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sectionLabel {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--colorPrimary);
  background: rgba(108, 61, 232, 0.1);
  padding: 0.3em 0.9em;
  border-radius: var(--radiusFull);
  margin-bottom: 1rem;
}

.sectionTitle {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.25rem;
  color: var(--colorText);
}

/* ---- BLOB BACKGROUNDS ---- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.blob--one   { width: 500px; height: 500px; background: radial-gradient(circle, rgba(108,61,232,0.35) 0%, transparent 70%); top: -100px; left: -150px; }
.blob--two   { width: 400px; height: 400px; background: radial-gradient(circle, rgba(232,61,160,0.3) 0%, transparent 70%); top: 100px; right: -100px; }
.blob--three { width: 350px; height: 350px; background: radial-gradient(circle, rgba(61,232,195,0.25) 0%, transparent 70%); bottom: 0; left: 30%; }
.blob--four  { width: 300px; height: 300px; background: radial-gradient(circle, rgba(240,160,80,0.2) 0%, transparent 70%); top: 50%; right: 10%; }
.blob--five  { width: 450px; height: 450px; background: radial-gradient(circle, rgba(108,61,232,0.2) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.blob--six   { width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,61,160,0.18) 0%, transparent 70%); top: -200px; right: -200px; }
.blob--seven { width: 400px; height: 400px; background: radial-gradient(circle, rgba(61,232,195,0.2) 0%, transparent 70%); bottom: -100px; left: -100px; }
.blob--eight { width: 500px; height: 500px; background: radial-gradient(circle, rgba(108,61,232,0.22) 0%, transparent 70%); bottom: -150px; right: -100px; }
.blob--nine  { width: 700px; height: 700px; background: radial-gradient(circle, rgba(108,61,232,0.25) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.blob--footer { width: 600px; height: 600px; background: radial-gradient(circle, rgba(108,61,232,0.15) 0%, transparent 70%); top: 0; right: 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radiusFull);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transitionMed);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradientPrimary);
  color: #fff;
  box-shadow: var(--shadowMd);
}
.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadowLg);
  filter: brightness(1.1);
}

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

.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 1rem 2.4rem; font-size: 1.05rem; }

/* ---- HEADER ---- */
.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--headerHeight);
  background: rgba(250, 248, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--colorBorder);
  transition: transform var(--transitionMed), background var(--transitionMed);
}

@media (prefers-color-scheme: dark) {
  .siteHeader {
    background: rgba(13, 9, 24, 0.85);
  }
}

.siteHeader.is-hidden { transform: translateY(-100%); }

.siteHeader_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacingMd);
}

.siteHeader_logo img { height: 36px; width: auto; }

.siteHeader_nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.siteHeader_navLink {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radiusFull);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--colorTextMuted);
  transition: all var(--transitionFast);
}
.siteHeader_navLink:hover,
.siteHeader_navLink.is-active {
  color: var(--colorPrimary);
  background: rgba(108,61,232,0.08);
}

.siteHeader_menuBtn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radiusSm);
}
.siteHeader_menuBtn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--colorText);
  border-radius: 2px;
  transition: all var(--transitionMed);
}
.siteHeader_menuBtn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.siteHeader_menuBtn.is-open span:nth-child(2) { opacity: 0; }
.siteHeader_menuBtn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE DRAWER ---- */
.mobileDrawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--colorSurface);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform var(--transitionMed);
  padding: calc(var(--headerHeight) + var(--spacingLg)) var(--spacingMd) var(--spacingMd);
  box-shadow: var(--shadowXl);
  overflow-y: auto;
}
.mobileDrawer.is-open { transform: translateX(0); }

.mobileDrawer_nav { display: flex; flex-direction: column; gap: 0.5rem; }
.mobileDrawer_link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radiusMd);
  color: var(--colorTextMuted);
  font-weight: 500;
  transition: all var(--transitionFast);
}
.mobileDrawer_link:hover,
.mobileDrawer_link.is-active {
  color: var(--colorPrimary);
  background: rgba(108,61,232,0.08);
}
.mobileDrawer_link i { width: 20px; text-align: center; }

.pageOverlay {
  position: fixed;
  inset: 0;
  background: rgba(10,5,20,0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transitionMed);
}
.pageOverlay.is-visible { opacity: 1; pointer-events: all; }

.pageContent {
  transition: transform var(--transitionMed), scale var(--transitionMed);
  transform-origin: left center;
}
.pageContent.is-pushed {
  transform: translateX(-40px) scale(0.95);
}

/* ---- MAIN HERO ---- */
.mainHero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--headerHeight) + var(--spacingXl)) var(--spacingMd) var(--spacingXl);
}

.mainHero_blobs { position: absolute; inset: 0; pointer-events: none; }

.mainHero_inner {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 600px;
}

.mainHero_badge {
  display: inline-block;
  background: rgba(108,61,232,0.12);
  color: var(--colorPrimary);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4em 1em;
  border-radius: var(--radiusFull);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(108,61,232,0.2);
}

.mainHero_title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--colorText);
}

.mainHero_sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--colorTextMuted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.mainHero_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.mainHero_visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: var(--spacingLg);
}

.mainHero_imgWrap {
  position: relative;
  border-radius: var(--radiusXl);
  overflow: hidden;
  box-shadow: var(--shadowXl);
  max-width: 500px;
  width: 100%;
}

.mainHero_img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.mainHero_imgGlow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108,61,232,0.15) 0%, rgba(232,61,160,0.1) 100%);
  pointer-events: none;
}

/* ---- INTRO STRIP ---- */
.introStrip {
  position: relative;
  z-index: 10;
  background: var(--colorSurface);
  border-top: 1px solid var(--colorBorder);
  border-bottom: 1px solid var(--colorBorder);
  padding: var(--spacingMd) 0;
}

.introStrip_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacingMd);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--spacingSm);
}

.introStrip_item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--colorTextMuted);
  font-size: 0.875rem;
  font-weight: 500;
}

.introStrip_icon {
  font-size: 1.1rem;
  background: var(--gradientPrimary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- ABOUT SHORT ---- */
.aboutShort {
  position: relative;
  overflow: hidden;
  padding: var(--spacingXxl) 0;
}

.aboutShort_blobs { position: absolute; inset: 0; pointer-events: none; }

.aboutShort_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacingXl);
  align-items: center;
}

.aboutShort_visual { position: relative; }

.aboutShort_img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radiusXl);
  box-shadow: var(--shadowXl);
}

.aboutShort_badge {
  position: absolute;
  bottom: var(--spacingMd);
  right: calc(-1 * var(--spacingMd));
  background: var(--colorSurface);
  border-radius: var(--radiusMd);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--colorPrimary);
  box-shadow: var(--shadowLg);
  border: 1px solid var(--colorBorder);
}
.aboutShort_badge i { font-size: 1.25rem; }

.aboutShort_content {
  display: flex;
  flex-direction: column;
  gap: var(--spacingSm);
}
.aboutShort_content .btn { align-self: flex-start; margin-top: var(--spacingSm); }

/* ---- BENTO GRID ---- */
.bentoSection {
  padding: var(--spacingXxl) 0;
  position: relative;
}

.bentoSection_header {
  text-align: center;
  margin-bottom: var(--spacingXl);
}

.bentoGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.25rem;
}

.bentoCard {
  background: var(--colorSurface);
  border-radius: var(--radiusLg);
  padding: var(--spacingMd) var(--spacingLg);
  border: 1px solid var(--colorBorder);
  box-shadow: var(--shadowSm);
  transition: transform var(--transitionMed), box-shadow var(--transitionMed);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bentoCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadowLg);
}

.bentoCard--large { grid-column: span 5; grid-row: span 2; }
.bentoCard--wide  { grid-column: span 7; grid-row: span 2; }
.bentoCard--medium { grid-column: span 4; }
.bentoCard--small { grid-column: span 3; }

.bentoCard--accent {
  background: linear-gradient(135deg, rgba(108,61,232,0.08) 0%, rgba(232,61,160,0.08) 100%);
  border-color: rgba(108,61,232,0.2);
}
.bentoCard--dark {
  background: var(--colorText);
  border-color: transparent;
}
.bentoCard--dark .bentoCard_title,
.bentoCard--dark .bentoCard_text { color: rgba(255,255,255,0.9); }
.bentoCard--dark .bentoCard_icon { color: var(--colorAccent); }

.bentoCard--highlight {
  background: var(--gradientPrimary);
  border-color: transparent;
  color: #fff;
}
.bentoCard--highlight .bentoCard_title,
.bentoCard--highlight .bentoCard_text { color: rgba(255,255,255,0.9); }
.bentoCard--highlight .bentoCard_icon { color: rgba(255,255,255,0.8); }

.bentoCard_icon {
  font-size: 1.75rem;
  background: var(--gradientPrimary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bentoCard--dark .bentoCard_icon,
.bentoCard--highlight .bentoCard_icon {
  background: none;
  -webkit-text-fill-color: currentColor;
}

.bentoCard_title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--colorText);
}
.bentoCard_text {
  font-size: 0.9rem;
  color: var(--colorTextMuted);
  line-height: 1.6;
}
.bentoCard_img {
  margin-top: auto;
  border-radius: var(--radiusMd);
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* :has() selector for cards with images */
.bentoCard:has(.bentoCard_img) {
  padding-bottom: 0;
}
.bentoCard:has(.bentoCard_img) .bentoCard_img {
  border-radius: 0 0 var(--radiusLg) var(--radiusLg);
}

/* ---- PROCESS / TIMELINE ---- */
.processSection {
  position: relative;
  overflow: hidden;
  padding: var(--spacingXxl) 0;
}

.processSection_blobs { position: absolute; inset: 0; pointer-events: none; }

.processSection_header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacingXl);
}

.processSection_intro {
  font-size: 1.05rem;
  color: var(--colorTextMuted);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--colorPrimary) 10%, var(--colorSecondary) 50%, var(--colorAccent) 90%, transparent);
  transform: translateX(-50%);
}

.timeline_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacingXl);
  position: relative;
}

.timeline_item--left { flex-direction: row-reverse; }
.timeline_item--left .timeline_content { text-align: right; padding-right: var(--spacingLg); padding-left: 0; }
.timeline_item--right .timeline_content { padding-left: var(--spacingLg); }

.timeline_dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradientPrimary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--colorBg), var(--shadowMd);
  flex-shrink: 0;
}

.timeline_dot span {
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.timeline_content {
  flex: 1;
  background: var(--colorSurface);
  border-radius: var(--radiusLg);
  padding: var(--spacingMd) var(--spacingMd);
  box-shadow: var(--shadowMd);
  border: 1px solid var(--colorBorder);
  transition: box-shadow var(--transitionMed), transform var(--transitionMed);
}
.timeline_content:hover {
  box-shadow: var(--shadowLg);
  transform: translateY(-2px);
}

.timeline_title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--colorText);
}

.timeline_content p { font-size: 0.9rem; }

.timeline_tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0.3em 0.8em;
  background: rgba(108,61,232,0.1);
  color: var(--colorPrimary);
  border-radius: var(--radiusFull);
  font-size: 0.78rem;
  font-weight: 600;
}

.timeline_img {
  margin-bottom: 0.75rem;
  border-radius: var(--radiusMd);
  overflow: hidden;
}
.timeline_img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ---- INSTRUCTOR SECTION ---- */
.instructorSection {
  padding: var(--spacingXxl) 0;
  background: var(--colorSurfaceAlt);
}

.instructorSection_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacingXl);
  align-items: center;
}

.instructorSection_list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.instructorSection_list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--colorText);
}

.instructorSection_list li i {
  color: var(--colorAccent);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.instructorSection_img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radiusXl);
  box-shadow: var(--shadowXl);
}

/* ---- MODULES ---- */
.modulesSection {
  position: relative;
  overflow: hidden;
  padding: var(--spacingXxl) 0;
}

.modulesSection_blobs { position: absolute; inset: 0; pointer-events: none; }

.modulesSection_header {
  text-align: center;
  margin-bottom: var(--spacingXl);
}

.modulesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.moduleCard {
  background: var(--colorSurface);
  border-radius: var(--radiusLg);
  padding: var(--spacingMd);
  border: 1px solid var(--colorBorder);
  box-shadow: var(--shadowSm);
  transition: all var(--transitionMed);
  position: relative;
  overflow: hidden;
}
.moduleCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradientPrimary);
}
.moduleCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadowLg);
}

.moduleCard_num {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--colorPrimary);
  background: rgba(108,61,232,0.1);
  display: inline-block;
  padding: 0.2em 0.7em;
  border-radius: var(--radiusFull);
  margin-bottom: 0.75rem;
}

.moduleCard_title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.moduleCard_text { font-size: 0.85rem; color: var(--colorTextMuted); line-height: 1.6; }

/* ---- CTA SECTION ---- */
.ctaSection {
  position: relative;
  overflow: hidden;
  padding: var(--spacingXxl) 0;
}
.ctaSection_blobs { position: absolute; inset: 0; pointer-events: none; }

.ctaSection_inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  background: var(--colorSurface);
  border-radius: var(--radiusXl);
  padding: var(--spacingXl);
  box-shadow: var(--shadowXl);
  border: 1px solid var(--colorBorder);
}

.ctaSection_title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.ctaSection_text {
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ---- PAGE HERO (inner pages) ---- */
.pageHero--sub {
  position: relative;
  overflow: hidden;
  padding: calc(var(--headerHeight) + var(--spacingXl)) 0 var(--spacingXl);
  text-align: center;
}

.pageHero_blobs { position: absolute; inset: 0; pointer-events: none; }

.pageHero_title {
  position: relative;
  z-index: 2;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}

.pageHero_sub {
  position: relative;
  z-index: 2;
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- CONTENT SECTION ---- */
.contentSection { padding: var(--spacingXxl) 0; }

.contentSection_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacingXl);
  align-items: center;
}

.contentSection_text { display: flex; flex-direction: column; gap: 0.75rem; }

.contentSection_img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radiusXl);
  box-shadow: var(--shadowXl);
}

/* ---- VALUES SECTION ---- */
.valuesSection {
  position: relative;
  overflow: hidden;
  padding: var(--spacingXxl) 0;
  background: var(--colorSurfaceAlt);
}
.valuesSection_blobs { position: absolute; inset: 0; pointer-events: none; }

.valuesSection_header { text-align: center; margin-bottom: var(--spacingXl); }

.valuesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.valueCard {
  background: var(--colorSurface);
  border-radius: var(--radiusLg);
  padding: var(--spacingMd);
  border: 1px solid var(--colorBorder);
  box-shadow: var(--shadowSm);
  transition: all var(--transitionMed);
}
.valueCard:hover { transform: translateY(-3px); box-shadow: var(--shadowMd); }

.valueCard_icon {
  font-size: 1.75rem;
  background: var(--gradientPrimary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}
.valueCard_title { font-size: 1.05rem; margin-bottom: 0.5rem; }

/* ---- AUDIENCE SECTION ---- */
.audienceSection { padding: var(--spacingXxl) 0; }
.audienceSection_header { text-align: center; margin-bottom: var(--spacingXl); }

.audienceGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.audienceCard {
  background: var(--colorSurface);
  border-radius: var(--radiusLg);
  padding: var(--spacingMd);
  border: 1px solid var(--colorBorder);
  box-shadow: var(--shadowSm);
  transition: all var(--transitionMed);
}
.audienceCard:hover { transform: translateY(-3px); box-shadow: var(--shadowMd); }

.audienceCard_icon {
  font-size: 2rem;
  background: var(--gradientSecondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  display: block;
}
.audienceCard h3 { font-size: 1rem; margin-bottom: 0.5rem; }

/* ---- FAQ ---- */
.faqSection {
  position: relative;
  overflow: hidden;
  padding: var(--spacingXxl) 0;
  background: var(--colorSurfaceAlt);
}
.faqSection_blobs { position: absolute; inset: 0; pointer-events: none; }
.faqSection_header { text-align: center; margin-bottom: var(--spacingXl); }

.faqList {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faqItem {
  background: var(--colorSurface);
  border-radius: var(--radiusMd);
  border: 1px solid var(--colorBorder);
  box-shadow: var(--shadowSm);
  overflow: hidden;
}

.faqItem_question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--spacingMd);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--colorText);
  text-align: left;
  transition: all var(--transitionFast);
  min-height: 44px;
}
.faqItem_question:hover { color: var(--colorPrimary); }
.faqItem_question i {
  flex-shrink: 0;
  color: var(--colorPrimary);
  transition: transform var(--transitionMed);
}
.faqItem_question[aria-expanded="true"] i { transform: rotate(180deg); }

.faqItem_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transitionMed);
}
.faqItem_answer p {
  padding: 0 var(--spacingMd) var(--spacingMd);
  font-size: 0.9rem;
}
.faqItem.is-open .faqItem_answer { max-height: 300px; }

/* ---- COACHING SECTIONS ---- */
.coachingIntro { padding: var(--spacingXxl) 0; }
.coachingIntro_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacingXl);
  align-items: center;
}
.coachingIntro_img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radiusXl);
  box-shadow: var(--shadowXl);
}

.coachingProcess {
  position: relative;
  overflow: hidden;
  padding: var(--spacingXxl) 0;
  background: var(--colorSurfaceAlt);
}
.coachingProcess_blobs { position: absolute; inset: 0; pointer-events: none; }
.coachingProcess_header { text-align: center; margin-bottom: var(--spacingXl); }

.coachingAreas { padding: var(--spacingXxl) 0; }
.coachingAreas_header { text-align: center; margin-bottom: var(--spacingXl); }

.areasGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.areaCard {
  background: var(--colorSurface);
  border-radius: var(--radiusLg);
  padding: var(--spacingMd);
  border: 1px solid var(--colorBorder);
  box-shadow: var(--shadowSm);
  transition: all var(--transitionMed);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.areaCard:hover { transform: translateY(-3px); box-shadow: var(--shadowMd); }

.areaCard_icon {
  font-size: 1.5rem;
  background: var(--gradientPrimary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.areaCard_title { font-size: 1rem; font-weight: 700; }

.coachingCta {
  position: relative;
  overflow: hidden;
  padding: var(--spacingXxl) 0;
  background: var(--colorSurfaceAlt);
}
.coachingCta_blobs { position: absolute; inset: 0; pointer-events: none; }

.coachingCta_inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background: var(--colorSurface);
  border-radius: var(--radiusXl);
  padding: var(--spacingXl);
  box-shadow: var(--shadowXl);
  border: 1px solid var(--colorBorder);
}
.coachingCta_title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.coachingCta_text { margin-bottom: 2rem; }

/* ---- NEWSLETTER ---- */
.newsletterMain { padding: var(--spacingXxl) 0; }

.newsletterMain_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacingXl);
  align-items: start;
}

.newsletterFeatures {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.newsletterFeature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.newsletterFeature_icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radiusMd);
  background: rgba(108,61,232,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--colorPrimary);
  flex-shrink: 0;
}

.newsletterFeature h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.newsletterFeature p { font-size: 0.875rem; margin: 0; }

.newsletterFormCard {
  background: var(--colorSurface);
  border-radius: var(--radiusXl);
  padding: var(--spacingLg);
  box-shadow: var(--shadowXl);
  border: 1px solid var(--colorBorder);
}

.newsletterFormCard_header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.newsletterFormCard_header i {
  font-size: 1.5rem;
  background: var(--gradientPrimary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.newsletterFormCard_header h3 { font-size: 1.2rem; margin: 0; }

.newsletterFormCard_note {
  font-size: 0.78rem;
  color: var(--colorTextMuted);
  text-align: center;
  margin-top: 0.75rem;
}

.newsletterTopics {
  position: relative;
  overflow: hidden;
  padding: var(--spacingXxl) 0;
  background: var(--colorSurfaceAlt);
}
.newsletterTopics_blobs { position: absolute; inset: 0; pointer-events: none; }
.newsletterTopics_header { text-align: center; margin-bottom: var(--spacingXl); }

.topicsGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.topicTag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--colorSurface);
  border: 1px solid var(--colorBorder);
  border-radius: var(--radiusFull);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--colorTextMuted);
  box-shadow: var(--shadowSm);
  transition: all var(--transitionFast);
  cursor: default;
}
.topicTag:hover {
  background: rgba(108,61,232,0.08);
  border-color: rgba(108,61,232,0.25);
  color: var(--colorPrimary);
}
.topicTag i { color: var(--colorPrimary); }

/* ---- FORMS ---- */
.formGroup { margin-bottom: 1.25rem; }

.formLabel {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--colorText);
  margin-bottom: 0.4rem;
}

.formInput,
.formSelect,
.formTextarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--colorBg);
  border: 1.5px solid var(--colorBorder);
  border-radius: var(--radiusMd);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--colorText);
  transition: all var(--transitionFast);
  appearance: none;
  -webkit-appearance: none;
  min-height: 44px;
}

.formInput:focus,
.formSelect:focus,
.formTextarea:focus {
  outline: none;
  border-color: var(--colorPrimary);
  box-shadow: 0 0 0 3px rgba(108,61,232,0.12);
}

/* :has() for form focus state */
.formGroup:has(.formInput:focus),
.formGroup:has(.formSelect:focus),
.formGroup:has(.formTextarea:focus) {
  .formLabel { color: var(--colorPrimary); }
}

.formTextarea { resize: vertical; min-height: 120px; }

.formSelect {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236C3DE8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.formGroup--checkbox { display: flex; align-items: flex-start; }

.formCheckbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--colorTextMuted);
  line-height: 1.5;
}

.formCheckbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--colorPrimary);
  margin-top: 2px;
  cursor: pointer;
}

.formCheckbox a { color: var(--colorPrimary); }

/* ---- CONTACT PAGE ---- */
.trustQuote {
  padding: var(--spacingXl) 0;
}

.trustQuote_inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--colorSurface);
  border-radius: var(--radiusXl);
  padding: var(--spacingXl);
  border: 1px solid var(--colorBorder);
  box-shadow: var(--shadowLg);
  position: relative;
}

.trustQuote_icon {
  font-size: 2.5rem;
  background: var(--gradientPrimary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.trustQuote_text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: var(--colorText);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.trustQuote_author {
  font-size: 0.85rem;
  color: var(--colorPrimary);
  font-weight: 600;
  font-style: normal;
}

.contactMain { padding: var(--spacingXxl) 0; }

.contactMain_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacingXl);
  align-items: start;
}

.contactForm { margin-top: 1.5rem; }

.contactInfoCard {
  background: var(--colorSurface);
  border-radius: var(--radiusXl);
  padding: var(--spacingMd);
  border: 1px solid var(--colorBorder);
  box-shadow: var(--shadowMd);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.contactInfoItem {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contactInfoItem_icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radiusMd);
  background: rgba(108,61,232,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--colorPrimary);
  flex-shrink: 0;
}

.contactInfoItem strong { display: block; font-size: 0.875rem; margin-bottom: 0.2rem; }
.contactInfoItem p { font-size: 0.875rem; margin: 0; }
.contactInfoItem a { color: var(--colorPrimary); }

.contactMap { border-radius: var(--radiusMd); overflow: hidden; box-shadow: var(--shadowMd); }

/* ---- THANKS PAGE ---- */
.thanksPage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: var(--spacingXxl) var(--spacingMd);
}

.thanksPage_blobs { position: absolute; inset: 0; pointer-events: none; }

.thanksPage_inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.thanksPage_icon {
  font-size: 4rem;
  background: var(--gradientPrimary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacingMd);
  display: block;
}

.thanksPage_title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.thanksPage_sub {
  font-size: 1.1rem;
  color: var(--colorTextMuted);
  margin-bottom: 2.5rem;
}

/* ---- LEGAL PAGES ---- */
.legalHero {
  padding: calc(var(--headerHeight) + var(--spacingXl)) 0 var(--spacingLg);
  background: var(--colorSurfaceAlt);
}

.legalHero_title { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 0.5rem; }
.legalHero_meta { font-size: 0.875rem; color: var(--colorTextMuted); }

.legalContent { padding: var(--spacingXl) 0 var(--spacingXxl); }

.legalDoc { max-width: 800px; }

.legalDoc_intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--colorTextMuted);
  margin-bottom: var(--spacingLg);
  padding: var(--spacingMd);
  background: rgba(108,61,232,0.06);
  border-left: 3px solid var(--colorPrimary);
  border-radius: 0 var(--radiusMd) var(--radiusMd) 0;
}

.legalDoc h2 {
  font-size: 1.3rem;
  margin-top: var(--spacingLg);
  margin-bottom: 0.75rem;
  color: var(--colorText);
  padding-top: var(--spacingMd);
  border-top: 1px solid var(--colorBorder);
}
.legalDoc h2:first-of-type { border-top: none; padding-top: 0; }

.legalDoc h3 { font-size: 1.05rem; margin-top: 1.25rem; margin-bottom: 0.5rem; }

.legalDoc p { font-size: 0.9rem; color: var(--colorTextMuted); line-height: 1.75; }

.legalDoc ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legalDoc ul li {
  font-size: 0.9rem;
  color: var(--colorTextMuted);
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.legalDl dt {
  font-weight: 700;
  color: var(--colorText);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}
.legalDl dd {
  font-size: 0.875rem;
  color: var(--colorTextMuted);
  margin-left: 1rem;
  line-height: 1.65;
}

.legalTable {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.875rem;
  border-radius: var(--radiusMd);
  overflow: hidden;
  box-shadow: var(--shadowSm);
}

.legalTable th,
.legalTable td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--colorBorder);
}

.legalTable th {
  background: rgba(108,61,232,0.08);
  font-weight: 700;
  color: var(--colorText);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legalTable td { color: var(--colorTextMuted); }

.legalTable tbody tr:last-child th,
.legalTable tbody tr:last-child td { border-bottom: none; }

.legalTable tbody tr:hover td { background: rgba(108,61,232,0.04); }

/* ---- FOOTER ---- */
.pageFooter {
  position: relative;
  overflow: hidden;
  background: #0D0918;
  color: rgba(255,255,255,0.7);
  padding: var(--spacingXxl) 0 var(--spacingXl);
  margin-top: auto;
}

.pageFooter_blobs { position: absolute; inset: 0; pointer-events: none; }

.pageFooter_grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacingXl);
  margin-bottom: var(--spacingXl);
  position: relative;
  z-index: 2;
}

.pageFooter_logo { height: 36px; width: auto; margin-bottom: 1rem; filter: brightness(10); }

.pageFooter_tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.pageFooter_address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 2;
}

.pageFooter_address a { color: rgba(255,255,255,0.6); transition: color var(--transitionFast); }
.pageFooter_address a:hover { color: var(--colorAccent); }
.pageFooter_address i { margin-right: 0.4rem; color: var(--colorPrimary); }

.pageFooter_colTitle {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.pageFooter_links { display: flex; flex-direction: column; gap: 0.5rem; }
.pageFooter_links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transitionFast);
}
.pageFooter_links a:hover { color: var(--colorAccent); }

.pageFooter_bottom {
  position: relative;
  z-index: 2;
  padding-top: var(--spacingMd);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pageFooter_bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin: 0; }

.pageFooter_disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

.backToTop {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradientPrimary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadowLg);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transitionMed);
  z-index: 900;
}
.backToTop.is-visible { opacity: 1; transform: translateY(0); }
.backToTop:hover { transform: translateY(-3px); box-shadow: var(--shadowXl); }

/* ---- MOBILE BOTTOM NAV ---- */
.mobileBottomNav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--colorSurface);
  border-top: 1px solid var(--colorBorder);
  z-index: 800;
  padding: 0 var(--spacingXs);
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
}

.mobileBottomNav_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radiusMd);
  color: var(--colorTextMuted);
  font-size: 0.65rem;
  font-weight: 500;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  transition: all var(--transitionFast);
}
.mobileBottomNav_item i { font-size: 1.1rem; }
.mobileBottomNav_item.is-active,
.mobileBottomNav_item:hover {
  color: var(--colorPrimary);
  background: rgba(108,61,232,0.08);
}

/* ---- COOKIE CONSENT ---- */
.cookieTrigger {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--colorTextMuted);
  background: var(--colorSurface);
  border: 1px solid var(--colorBorder);
  border-radius: var(--radiusFull);
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadowSm);
  transition: all var(--transitionFast);
  text-decoration: none;
}
.cookieTrigger:hover { color: var(--colorPrimary); border-color: var(--colorPrimary); }
.cookieTrigger.is-pulsing { animation: pulse 2s ease-in-out 3; }

@keyframes pulse {
  0%, 100% { box-shadow: var(--shadowSm); }
  50% { box-shadow: 0 0 0 6px rgba(108,61,232,0.18), var(--shadowMd); }
}

.cookieModal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacingMd);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transitionMed);
}
.cookieModal.is-open { opacity: 1; pointer-events: all; }

.cookieModal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,5,20,0.6);
  backdrop-filter: blur(6px);
}

.cookieModal_box {
  position: relative;
  z-index: 1;
  background: var(--colorSurface);
  border-radius: var(--radiusXl);
  padding: var(--spacingLg);
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadowXl);
  border: 1px solid var(--colorBorder);
}

.cookieModal_title { font-size: 1.3rem; margin-bottom: 0.5rem; }
.cookieModal_desc { font-size: 0.875rem; margin-bottom: 1.5rem; }

.cookieCategory {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--colorBorder);
}
.cookieCategory:last-of-type { border-bottom: none; }

.cookieCategory_info h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.cookieCategory_info p { font-size: 0.78rem; margin: 0; color: var(--colorTextMuted); }

.cookieToggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookieToggle input { opacity: 0; width: 0; height: 0; }
.cookieToggle_slider {
  position: absolute;
  inset: 0;
  background: var(--colorBorder);
  border-radius: var(--radiusFull);
  cursor: pointer;
  transition: background var(--transitionFast);
}
.cookieToggle_slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transitionFast);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.cookieToggle input:checked + .cookieToggle_slider { background: var(--colorPrimary); }
.cookieToggle input:checked + .cookieToggle_slider::before { transform: translateX(20px); }
.cookieToggle input:disabled + .cookieToggle_slider { opacity: 0.5; cursor: not-allowed; }

.cookieModal_actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.cookieModal_actions .btn { flex: 1; justify-content: center; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .bentoCard--large { grid-column: span 6; }
  .bentoCard--wide  { grid-column: span 6; }
  .bentoCard--medium { grid-column: span 6; }
  .bentoCard--small { grid-column: span 6; }

  .pageFooter_grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --spacingXxl: 4rem;
    --spacingXl: 2.5rem;
  }

  .siteHeader_nav { display: none; }
  .siteHeader_menuBtn { display: flex; }

  .mainHero {
    flex-direction: column;
    text-align: center;
    padding-top: calc(var(--headerHeight) + 2rem);
    padding-bottom: 6rem;
    min-height: auto;
  }
  .mainHero_inner { max-width: 100%; }
  .mainHero_sub { margin-left: auto; margin-right: auto; }
  .mainHero_cta { justify-content: center; }
  .mainHero_visual { padding-left: 0; padding-top: var(--spacingLg); width: 100%; }
  .mainHero_imgWrap { max-width: 380px; }

  .aboutShort_grid,
  .contentSection_grid,
  .instructorSection_grid,
  .coachingIntro_grid,
  .contactMain_grid,
  .newsletterMain_grid { grid-template-columns: 1fr; }

  .aboutShort_badge { right: var(--spacingMd); }

  .bentoGrid { grid-template-columns: 1fr 1fr; }
  .bentoCard--large,
  .bentoCard--wide  { grid-column: span 2; }
  .bentoCard--medium,
  .bentoCard--small { grid-column: span 1; }

  .timeline::before { left: 24px; }
  .timeline_item { flex-direction: row; }
  .timeline_item--left { flex-direction: row; }
  .timeline_item--left .timeline_content {
    text-align: left;
    padding-left: var(--spacingMd);
    padding-right: 0;
  }
  .timeline_item--right .timeline_content { padding-left: var(--spacingMd); }
  .timeline_dot { left: 24px; }
  .timeline_content { margin-left: 60px; }

  .mobileBottomNav { display: flex; }
  .backToTop { bottom: 5.5rem; }

  .pageFooter_grid { grid-template-columns: 1fr 1fr; gap: var(--spacingLg); }
  .pageFooter_brand { grid-column: span 2; }

  .introStrip_inner { flex-wrap: wrap; gap: 0.75rem; }
  .introStrip_item { flex: 1 1 40%; justify-content: center; }

  .modulesGrid { grid-template-columns: 1fr; }
  .areasGrid { grid-template-columns: 1fr; }
  .valuesGrid { grid-template-columns: 1fr; }
  .audienceGrid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .bentoGrid { grid-template-columns: 1fr; }
  .bentoCard--large,
  .bentoCard--wide,
  .bentoCard--medium,
  .bentoCard--small { grid-column: span 1; grid-row: span 1; }

  .pageFooter_grid { grid-template-columns: 1fr; }
  .pageFooter_brand { grid-column: span 1; }

  .cookieTrigger { bottom: 4.5rem; }

  .mainHero_cta { flex-direction: column; align-items: center; }
  .mainHero_cta .btn { width: 100%; justify-content: center; }

  .ctaSection_inner,
  .coachingCta_inner { padding: var(--spacingMd); }

  .trustQuote_inner { padding: var(--spacingMd); }

  .newsletterFormCard { padding: var(--spacingMd); }
}

/* ---- BODY PADDING FOR MOBILE NAV ---- */
@media (max-width: 768px) {
  body { padding-bottom: 64px; }
}

/* ---- DARK MODE ADJUSTMENTS ---- */
@media (prefers-color-scheme: dark) {
  .pageFooter { background: #060410; }
  .introStrip { background: var(--colorSurface); }
  .formInput,
  .formSelect,
  .formTextarea { background: var(--colorSurfaceAlt); }
}