/* ============================================
   PEVEVU - CSS STYLE SHEET
   Prefix: px-
   ============================================ */


:root {
  --px-bg: #f5f4f0;
  --px-bg-alt: #eeede8;
  --px-surface: #ffffff;
  --px-dark: #1a1a24;
  --px-dark-mid: #2d2d3d;
  --px-text: #2a2a38;
  --px-text-muted: #6b6b80;
  --px-text-light: #f0efe9;
  --px-primary: #2563eb;
  --px-primary-dark: #1d4ed8;
  --px-primary-light: #3b82f6;
  --px-accent: #f97316;
  --px-accent-dark: #ea6c0a;
  --px-accent-light: #fb923c;
  --px-secondary: #0f172a;
  --px-gradient-hero: linear-gradient(135deg, #1a1a24 0%, #2d2d5a 60%, #1e3a8a 100%);
  --px-gradient-accent: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  --px-gradient-subtle: linear-gradient(135deg, #f0efe9 0%, #e8e6de 100%);
  --px-shadow-sm: 0 1px 3px rgba(26,26,36,0.06), 0 1px 2px rgba(26,26,36,0.04);
  --px-shadow-md: 0 4px 6px rgba(26,26,36,0.07), 0 2px 4px rgba(26,26,36,0.05), 0 0 0 1px rgba(26,26,36,0.03);
  --px-shadow-lg: 0 10px 25px rgba(26,26,36,0.10), 0 4px 10px rgba(26,26,36,0.06), 0 0 0 1px rgba(26,26,36,0.03);
  --px-shadow-xl: 0 20px 50px rgba(26,26,36,0.14), 0 8px 20px rgba(26,26,36,0.08);
  --px-shadow-card: 0 2px 8px rgba(26,26,36,0.06), 0 1px 3px rgba(26,26,36,0.04);
  --px-radius-sm: 8px;
  --px-radius-md: 14px;
  --px-radius-lg: 20px;
  --px-radius-xl: 28px;
  --px-radius-full: 9999px;
  --px-nav-h: 88px;
  --px-nav-h-compact: 60px;
  --px-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --px-transition-fast: 0.16s cubic-bezier(0.4, 0, 0.2, 1);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body.px-body {
  font-family: 'Instrument Sans', sans-serif;
  background-color: var(--px-bg);
  color: var(--px-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ============================================
   NAVIGATION
   ============================================ */
.px-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 244, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,26,36,0.08);
  transition: padding var(--px-transition), background var(--px-transition), box-shadow var(--px-transition);
}

.px-nav.px-nav-scrolled {
  background: rgba(245, 244, 240, 0.96);
  box-shadow: var(--px-shadow-md);
}

.px-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--px-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height var(--px-transition);
}

.px-nav.px-nav-scrolled .px-nav-inner {
  height: var(--px-nav-h-compact);
}

.px-nav-left,
.px-nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.px-nav-right {
  justify-content: flex-end;
}

.px-nav-logo-wrap {
  flex-shrink: 0;
}

.px-nav-logo {
  display: flex;
  align-items: center;
}

.px-logo-img {
  height: 44px;
  width: auto;
  transition: height var(--px-transition);
}

.px-nav.px-nav-scrolled .px-logo-img {
  height: 32px;
}

.px-nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--px-text);
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--px-transition-fast);
  white-space: nowrap;
}

.px-nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--px-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--px-transition);
  border-radius: 2px;
}

.px-nav-link:hover,
.px-nav-link.px-nav-active {
  color: var(--px-primary);
}

.px-nav-link:hover::after,
.px-nav-link.px-nav-active::after {
  transform: scaleX(1);
}

.px-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.4rem;
  background: var(--px-primary);
  color: #fff;
  border-radius: var(--px-radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--px-transition), transform var(--px-transition), box-shadow var(--px-transition);
  box-shadow: 0 2px 8px rgba(37,99,235,0.28);
  white-space: nowrap;
}

.px-nav-cta:hover {
  background: var(--px-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.38);
}


.px-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--px-radius-sm);
  transition: background var(--px-transition-fast);
}

.px-hamburger:hover { background: rgba(26,26,36,0.06); }

.px-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--px-text);
  border-radius: 2px;
  transition: transform var(--px-transition), opacity var(--px-transition);
}

.px-hamburger.px-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.px-hamburger.px-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.px-hamburger.px-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.px-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.5rem 1rem;
  background: rgba(245, 244, 240, 0.98);
  border-top: 1px solid rgba(26,26,36,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding var(--px-transition);
}

.px-mobile-menu.px-mobile-open {
  max-height: 400px;
  padding: 0.75rem 1.5rem 1.25rem;
}

.px-mobile-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--px-text);
  border-bottom: 1px solid rgba(26,26,36,0.06);
  transition: color var(--px-transition-fast);
}

.px-mobile-link:hover { color: var(--px-primary); }
.px-mobile-link:last-child { border-bottom: none; }

.px-mobile-cta {
  margin-top: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--px-primary);
  color: #fff !important;
  border-radius: var(--px-radius-full);
  text-align: center;
  font-weight: 600;
  border-bottom: none !important;
  transition: background var(--px-transition);
}

.px-mobile-cta:hover { background: var(--px-primary-dark); }

/* ============================================
   HERO SECTION
   ============================================ */
.px-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--px-nav-h);
}

.px-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.px-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.px-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(15, 15, 30, 0.96) 0%,
    rgba(15, 15, 30, 0.92) 35%,
    rgba(15, 15, 30, 0.55) 55%,
    rgba(15, 15, 30, 0.08) 100%
  );
}

.px-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
  width: 100%;
}

.px-hero-text {
  max-width: 580px;
}

.px-hero-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.4);
  color: #fba45a;
  border-radius: var(--px-radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.px-hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: #f0efe9;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.px-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(240,239,233,0.78);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.px-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.px-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: var(--px-primary);
  color: #fff;
  border-radius: var(--px-radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: background var(--px-transition), transform var(--px-transition), box-shadow var(--px-transition);
  box-shadow: 0 3px 12px rgba(37,99,235,0.3);
}

.px-btn-primary:hover {
  background: var(--px-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.42);
}

.px-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: transparent;
  color: #f0efe9;
  border: 1.5px solid rgba(240,239,233,0.4);
  border-radius: var(--px-radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--px-transition), border-color var(--px-transition), transform var(--px-transition);
}

.px-btn-ghost:hover {
  background: rgba(240,239,233,0.1);
  border-color: rgba(240,239,233,0.7);
  transform: translateY(-2px);
}

.px-btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--px-radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--px-transition), border-color var(--px-transition), transform var(--px-transition);
}

.px-btn-ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.px-btn-full { width: 100%; justify-content: center; }

/* ============================================
   SECTION TAGS & HEADERS
   ============================================ */
.px-section-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(37,99,235,0.1);
  color: var(--px-primary);
  border-radius: var(--px-radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.px-tag-light {
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
}

.px-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--px-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.px-title-light { color: #f0efe9; }

/* ============================================
   INTRO ANGLED SECTION
   ============================================ */
.px-intro-angled {
  background: var(--px-dark);
  padding: 7rem 2rem 9rem;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  margin-bottom: -3rem;
  position: relative;
  z-index: 1;
}

.px-intro-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.px-intro-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--px-accent);
  margin-bottom: 1.25rem;
}

.px-intro-heading {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #f0efe9;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.px-intro-body {
  font-size: 1.05rem;
  color: rgba(240,239,233,0.72);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================
   BENTO GRID SECTION
   ============================================ */
.px-bento-section {
  padding: 6rem 2rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.px-section-header {
  margin-bottom: 3rem;
}

.px-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1.25rem;
}


.px-bento-cell {
  border-radius: var(--px-radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--px-transition), box-shadow var(--px-transition);
  box-shadow: var(--px-shadow-card);
}

.px-bento-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--px-shadow-lg);
}


.px-cell-wide {
  grid-column: span 2;
}

.px-cell-tall {
  grid-row: span 2;
}


.px-cell-dark {
  background: var(--px-dark);
  color: var(--px-text-light);
}

.px-cell-accent {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  color: #fff;
}

.px-cell-light {
  background: var(--px-surface);
  color: var(--px-text);
  border: 1px solid rgba(26,26,36,0.08);
}

.px-cell-medium {
  background: var(--px-bg-alt);
  color: var(--px-text);
  border: 1px solid rgba(26,26,36,0.06);
}


.px-cell-glass {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--px-text);
  box-shadow: 0 4px 24px rgba(37,99,235,0.08), 0 1px 4px rgba(26,26,36,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
}


.px-cell-image {
  padding: 0;
  min-height: 260px;
}

.px-cell-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.px-bento-cell:hover .px-cell-bg-img {
  transform: scale(1.04);
}

.px-cell-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0.3) 70%, transparent 100%);
  color: #fff;
}

.px-overlay-left {
  background: linear-gradient(105deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.6) 50%, transparent 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  top: 0;
}

.px-cell-image-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
  display: block;
}

.px-cell-image-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.px-cell-image-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  margin-top: 0.5rem;
}


.px-cell-icon {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  color: var(--px-accent);
}

.px-icon-large { font-size: 2.5rem; }

.px-cell-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.875rem;
}

.px-cell-body {
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.85;
}

.px-cell-body-sm {
  font-size: 0.875rem;
  line-height: 1.65;
  opacity: 0.72;
}

.px-cell-divider {
  width: 36px;
  height: 2px;
  background: var(--px-accent);
  border-radius: 2px;
  margin: 1.25rem 0;
}

.px-cell-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--px-accent-light);
  transition: gap var(--px-transition), color var(--px-transition);
}

.px-cell-link:hover { gap: 0.7rem; color: var(--px-accent); }

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.px-how-section {
  background: var(--px-dark-mid);
  padding: 6rem 2rem;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin: -2rem 0;
}

.px-how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.px-how-header {
  text-align: center;
  margin-bottom: 4rem;
}

.px-how-sub {
  font-size: 1.05rem;
  color: rgba(240,239,233,0.65);
  max-width: 580px;
  margin: 1.25rem auto 0;
  line-height: 1.7;
}

.px-how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.px-how-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--px-radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background var(--px-transition), transform var(--px-transition);
}

.px-how-step:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}

.px-how-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--px-accent);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.85;
}

.px-how-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f0efe9;
  margin-bottom: 0.6rem;
}

.px-how-body {
  font-size: 0.9rem;
  color: rgba(240,239,233,0.65);
  line-height: 1.7;
}

/* ============================================
   EDUCATOR HIGHLIGHT SECTION
   ============================================ */
.px-educator-highlight {
  background: linear-gradient(135deg, #1a1a24 0%, #1e3a8a 100%);
  padding: 7rem 2rem;
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.px-educator-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.px-educator-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.px-educator-body {
  font-size: 1.02rem;
  color: rgba(240,239,233,0.72);
  line-height: 1.75;
}

.px-educator-image-wrap {
  border-radius: var(--px-radius-xl);
  overflow: hidden;
  box-shadow: var(--px-shadow-xl);
  aspect-ratio: 4/5;
}

.px-educator-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.px-educator-image-wrap:hover .px-educator-img {
  transform: scale(1.04);
}

/* ============================================
   SESSIONS SWIPER SECTION
   ============================================ */
.px-sessions-section {
  padding: 6rem 2rem;
  background: var(--px-bg);
}

.px-sessions-header {
  max-width: 1280px;
  margin: 0 auto 3rem;
}

.px-sessions-swiper {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 3.5rem !important;
}

.px-session-card {
  background: var(--px-surface);
  border-radius: var(--px-radius-lg);
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(26,26,36,0.08);
  box-shadow: var(--px-shadow-card);
  transition: transform var(--px-transition), box-shadow var(--px-transition);
  display: flex;
  flex-direction: column;
}

.px-session-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--px-shadow-lg);
}

.px-session-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--px-accent);
  margin-bottom: 0.875rem;
}

.px-session-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--px-dark);
  line-height: 1.25;
  margin-bottom: 0.875rem;
}

.px-session-body {
  font-size: 0.9rem;
  color: var(--px-text-muted);
  line-height: 1.7;
  flex: 1;
}

.px-session-meta {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--px-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26,26,36,0.07);
}


.swiper-pagination-bullet {
  background: var(--px-primary) !important;
  opacity: 0.35;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: var(--px-accent) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--px-primary) !important;
}

/* ============================================
   WHO IT'S FOR SECTION
   ============================================ */
.px-for-section {
  padding: 5rem 2rem 6rem;
  background: var(--px-bg-alt);
}

.px-for-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.px-for-header {
  margin-bottom: 3rem;
}

.px-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.px-for-card {
  background: var(--px-surface);
  border-radius: var(--px-radius-lg);
  overflow: hidden;
  box-shadow: var(--px-shadow-card);
  border: 1px solid rgba(26,26,36,0.07);
  transition: transform var(--px-transition), box-shadow var(--px-transition);
}

.px-for-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--px-shadow-lg);
}

.px-for-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.px-for-card:hover .px-for-img { transform: scale(1.04); }

.px-for-card-body {
  padding: 1.5rem;
}

.px-for-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--px-dark);
  margin-bottom: 0.6rem;
}

.px-for-body {
  font-size: 0.9rem;
  color: var(--px-text-muted);
  line-height: 1.7;
}

/* ============================================
   CTA GLASS SECTION
   ============================================ */
.px-cta-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  overflow: hidden;
}

.px-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.px-cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.px-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,20,0.62);
  z-index: 1;
}

.px-cta-glass {
  position: relative;
  z-index: 2;
  max-width: 620px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--px-radius-xl);
  padding: 3.5rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.px-cta-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.px-cta-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.px-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.px-footer {
  background: var(--px-dark);
  padding: 4rem 2rem 2.5rem;
  margin-top: auto;
}

.px-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.px-footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.px-footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.px-footer-tagline {
  font-size: 0.875rem;
  color: rgba(240,239,233,0.5);
}

.px-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 2rem;
}

.px-footer-link {
  font-size: 0.875rem;
  color: rgba(240,239,233,0.62);
  transition: color var(--px-transition-fast);
  padding: 0.25rem 0;
}

.px-footer-link:hover { color: #f0efe9; }

.px-footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  font-size: 0.85rem;
  color: rgba(240,239,233,0.55);
}

.px-footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.px-footer-contact a {
  color: rgba(240,239,233,0.55);
  transition: color var(--px-transition-fast);
}

.px-footer-contact a:hover { color: rgba(240,239,233,0.9); }

.px-footer-contact i {
  color: var(--px-accent);
  font-size: 0.8rem;
}

.px-footer-legal {
  width: 100%;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(240,239,233,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.px-footer-copy {
  font-size: 0.8rem;
  color: rgba(240,239,233,0.4);
}

.px-footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.px-footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(240,239,233,0.4);
  transition: color var(--px-transition-fast);
}

.px-footer-legal-links a:hover { color: rgba(240,239,233,0.8); }

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.px-page-hero {
  background: var(--px-gradient-hero);
  padding: calc(var(--px-nav-h) + 4rem) 2rem 5rem;
  text-align: center;
}

.px-page-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.px-page-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #f0efe9;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.px-page-sub {
  font-size: 1.05rem;
  color: rgba(240,239,233,0.7);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   EDUCATORS PAGE
   ============================================ */
.px-edu-intro {
  padding: 5rem 2rem;
  background: var(--px-bg);
}

.px-edu-intro-inner {
  max-width: 820px;
  margin: 0 auto;
}

.px-edu-intro-text {
  font-size: 1.05rem;
  color: var(--px-text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.px-educators-section {
  padding: 0 2rem 5rem;
  background: var(--px-bg);
}

.px-educators-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.px-educator-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: start;
  background: var(--px-surface);
  border-radius: var(--px-radius-xl);
  overflow: hidden;
  box-shadow: var(--px-shadow-lg);
  border: 1px solid rgba(26,26,36,0.07);
  transition: transform var(--px-transition), box-shadow var(--px-transition);
}

.px-educator-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--px-shadow-xl);
}

.px-educator-card-reverse {
  direction: rtl;
}

.px-educator-card-reverse > * {
  direction: ltr;
}

.px-educator-card-img-wrap {
  height: 400px;
  overflow: hidden;
}

.px-educator-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.px-educator-card:hover .px-educator-card-img { transform: scale(1.04); }

.px-educator-card-body {
  padding: 2.5rem 2.5rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.px-educator-card-reverse .px-educator-card-body {
  padding: 2.5rem 0 2.5rem 2.5rem;
}

.px-educator-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--px-accent);
  margin-bottom: 0.6rem;
}

.px-educator-name {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--px-dark);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.px-educator-bio {
  font-size: 0.95rem;
  color: var(--px-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.px-educator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.px-edu-tag {
  padding: 0.3rem 0.85rem;
  background: rgba(37,99,235,0.09);
  color: var(--px-primary);
  border-radius: var(--px-radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}


.px-philosophy-section {
  padding: 6rem 2rem;
  background: var(--px-dark);
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
  margin-top: 2rem;
}

.px-philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.px-philosophy-header {
  margin-bottom: 3.5rem;
}

.px-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.px-philosophy-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--px-radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background var(--px-transition), transform var(--px-transition);
}

.px-philosophy-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

.px-philosophy-icon {
  font-size: 1.75rem;
  color: var(--px-accent);
  margin-bottom: 1.25rem;
}

.px-philosophy-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f0efe9;
  margin-bottom: 0.75rem;
}

.px-philosophy-body {
  font-size: 0.9rem;
  color: rgba(240,239,233,0.62);
  line-height: 1.7;
}

/* ============================================
   SPECIALIZED TRAININGS PAGE
   ============================================ */
.px-series-overview {
  padding: 5rem 2rem;
  background: var(--px-bg);
}

.px-series-overview-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.px-series-body {
  font-size: 1rem;
  color: var(--px-text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.px-series-overview-meta {
  background: var(--px-surface);
  border-radius: var(--px-radius-lg);
  padding: 2rem;
  box-shadow: var(--px-shadow-md);
  border: 1px solid rgba(26,26,36,0.07);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.px-meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.px-meta-icon {
  width: 44px;
  height: 44px;
  background: rgba(37,99,235,0.1);
  border-radius: var(--px-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--px-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.px-meta-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--px-text-muted);
  margin-bottom: 0.2rem;
}

.px-meta-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--px-dark);
}


.px-sessions-detail {
  padding: 0 2rem 5rem;
  background: var(--px-bg);
}

.px-sessions-detail-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.px-session-detail-card {
  background: var(--px-surface);
  border-radius: var(--px-radius-lg);
  overflow: hidden;
  box-shadow: var(--px-shadow-card);
  border: 1px solid rgba(26,26,36,0.08);
  transition: box-shadow var(--px-transition), transform var(--px-transition);
}

.px-session-detail-card:hover {
  box-shadow: var(--px-shadow-lg);
  transform: translateY(-2px);
}

.px-sdc-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--px-dark);
  border-bottom: none;
}

.px-sdc-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--px-accent);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.8;
  min-width: 56px;
}

.px-sdc-title-wrap {
  flex: 1;
}

.px-sdc-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,239,233,0.5);
  display: block;
  margin-bottom: 0.25rem;
}

.px-sdc-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f0efe9;
  line-height: 1.2;
}

.px-sdc-duration {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(240,239,233,0.55);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.px-sdc-body {
  padding: 2rem;
}

.px-sdc-body p {
  font-size: 0.95rem;
  color: var(--px-text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.px-sdc-body p:last-of-type { margin-bottom: 1.25rem; }

.px-sdc-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.px-sdc-topic {
  padding: 0.3rem 0.85rem;
  background: rgba(37,99,235,0.08);
  color: var(--px-primary);
  border-radius: var(--px-radius-full);
  font-size: 0.78rem;
  font-weight: 600;
}


.px-specialized-formats {
  padding: 5rem 2rem 6rem;
  background: var(--px-bg-alt);
}

.px-specialized-formats-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.px-specialized-header {
  margin-bottom: 3rem;
}

.px-specialized-sub {
  font-size: 1rem;
  color: var(--px-text-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-top: 1rem;
}

.px-specialized-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.px-specialized-card {
  background: var(--px-surface);
  border-radius: var(--px-radius-lg);
  padding: 2rem;
  box-shadow: var(--px-shadow-card);
  border: 1px solid rgba(26,26,36,0.07);
  transition: transform var(--px-transition), box-shadow var(--px-transition);
  position: relative;
}

.px-specialized-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--px-shadow-lg);
}

.px-specialized-icon {
  font-size: 1.75rem;
  color: var(--px-accent);
  margin-bottom: 1.25rem;
}

.px-specialized-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--px-dark);
  line-height: 1.3;
  margin-bottom: 0.875rem;
}

.px-specialized-body {
  font-size: 0.9rem;
  color: var(--px-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.px-specialized-format {
  display: inline-block;
  padding: 0.28rem 0.8rem;
  background: rgba(249,115,22,0.1);
  color: var(--px-accent-dark);
  border-radius: var(--px-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ============================================
   FAQ PAGE
   ============================================ */
.px-faq-section {
  padding: 5rem 2rem 6rem;
  background: var(--px-bg);
}

.px-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.px-faq-group {
  margin-bottom: 3.5rem;
}

.px-faq-group-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--px-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--px-accent);
  display: inline-block;
}

.px-faq-item {
  border: 1px solid rgba(26,26,36,0.09);
  border-radius: var(--px-radius-md);
  margin-bottom: 0.75rem;
  background: var(--px-surface);
  overflow: hidden;
  transition: box-shadow var(--px-transition);
}

.px-faq-item:hover { box-shadow: var(--px-shadow-md); }

.px-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--px-dark);
  gap: 1rem;
  transition: color var(--px-transition-fast);
}

.px-faq-question:hover { color: var(--px-primary); }

.px-faq-icon {
  flex-shrink: 0;
  transition: transform var(--px-transition);
  color: var(--px-text-muted);
  font-size: 0.875rem;
}

.px-faq-item.px-faq-open .px-faq-icon {
  transform: rotate(180deg);
  color: var(--px-primary);
}

.px-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.px-faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--px-text-muted);
  line-height: 1.75;
}

.px-faq-answer p + p {
  padding-top: 0;
}

.px-faq-contact-prompt {
  text-align: center;
  padding: 3rem;
  background: var(--px-dark);
  border-radius: var(--px-radius-xl);
  margin-top: 2rem;
}

.px-faq-contact-prompt p {
  font-size: 1.1rem;
  color: rgba(240,239,233,0.75);
  margin-bottom: 1.5rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.px-contact-section {
  padding: 5rem 2rem;
  background: var(--px-bg);
}

.px-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.px-contact-map {
  border-radius: var(--px-radius-lg);
  overflow: hidden;
  height: 520px;
  box-shadow: var(--px-shadow-lg);
  border: 1px solid rgba(26,26,36,0.08);
}

.px-contact-form-wrap {
  background: var(--px-surface);
  border-radius: var(--px-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--px-shadow-lg);
  border: 1px solid rgba(26,26,36,0.07);
}

.px-contact-form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--px-dark);
  margin-bottom: 0.6rem;
}

.px-contact-form-sub {
  font-size: 0.9rem;
  color: var(--px-text-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}


.px-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.px-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.px-form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--px-text);
  letter-spacing: 0.02em;
}

.px-form-input {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(26,26,36,0.15);
  border-radius: var(--px-radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--px-text);
  background: var(--px-bg);
  transition: border-color var(--px-transition), box-shadow var(--px-transition);
  outline: none;
}

.px-form-input:focus {
  border-color: var(--px-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
  background: #fff;
}

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

.px-form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.px-form-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--px-primary);
  cursor: pointer;
}

.px-form-check-label {
  font-size: 0.85rem;
  color: var(--px-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.px-form-link {
  color: var(--px-primary);
  text-decoration: underline;
  transition: color var(--px-transition-fast);
}

.px-form-link:hover { color: var(--px-primary-dark); }

.px-form-error {
  padding: 0.75rem 1rem;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--px-radius-sm);
  font-size: 0.875rem;
  color: #dc2626;
}


.px-urgent-section {
  padding: 4rem 2rem;
  background: var(--px-dark);
}

.px-urgent-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.px-urgent-icon {
  font-size: 2.5rem;
  color: var(--px-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.px-urgent-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0efe9;
  margin-bottom: 0.875rem;
}

.px-urgent-body {
  font-size: 0.95rem;
  color: rgba(240,239,233,0.65);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.px-urgent-contacts {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.px-urgent-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--px-radius-full);
  color: #f0efe9;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--px-transition), transform var(--px-transition);
}

.px-urgent-contact-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.px-urgent-contact-item i { color: var(--px-accent); }

/* ============================================
   THANKS PAGE
   ============================================ */
.px-thanks-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--px-nav-h) + 3rem) 2rem 5rem;
  background: var(--px-gradient-hero);
  min-height: 100vh;
}

.px-thanks-inner {
  max-width: 680px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.px-thanks-quote-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--px-radius-xl);
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.px-quote-icon {
  font-size: 2.5rem;
  color: var(--px-accent);
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

.px-thanks-quote {
  font-size: 1.1rem;
  color: rgba(240,239,233,0.88);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.px-thanks-cite {
  font-size: 0.82rem;
  color: rgba(240,239,233,0.5);
  font-style: normal;
  font-weight: 500;
}

.px-thanks-message {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.px-thanks-check {
  font-size: 3rem;
  color: #22c55e;
}

.px-thanks-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #f0efe9;
  letter-spacing: -0.02em;
}

.px-thanks-body {
  font-size: 1rem;
  color: rgba(240,239,233,0.65);
  line-height: 1.7;
  max-width: 480px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.px-legal-hero {
  background: var(--px-dark-mid);
  padding: calc(var(--px-nav-h) + 3rem) 2rem 4rem;
  text-align: center;
}

.px-legal-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #f0efe9;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.px-legal-date {
  font-size: 0.875rem;
  color: rgba(240,239,233,0.5);
}

.px-legal-section {
  padding: 4rem 2rem 6rem;
  background: var(--px-bg);
}

.px-legal-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.px-legal-card {
  background: var(--px-surface);
  border-radius: var(--px-radius-lg);
  padding: 2.25rem;
  box-shadow: var(--px-shadow-card);
  border: 1px solid rgba(26,26,36,0.07);
}

.px-legal-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--px-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(37,99,235,0.15);
}

.px-legal-card p {
  font-size: 0.92rem;
  color: var(--px-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.px-legal-card p:last-child { margin-bottom: 0; }


.px-terms-inner { gap: 1.25rem; }

.px-terms-card {
  border-left: 3px solid var(--px-primary);
  border-radius: 0 var(--px-radius-lg) var(--px-radius-lg) 0;
}


.px-cookies-inner { gap: 1.75rem; }

.px-cookie-card {
  position: relative;
}

.px-cookie-card-intro {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  border: 1px solid rgba(37,99,235,0.15);
}

.px-cookie-card-icon {
  font-size: 1.5rem;
  color: var(--px-accent);
  margin-bottom: 1rem;
}

.px-cookie-intro-text {
  font-size: 0.97rem;
  color: var(--px-text);
  line-height: 1.8;
  margin: 0;
}

/* ============================================
   COOKIE CONSENT MODAL
   ============================================ */
.px-cookie-modal {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 9999;
  width: 360px;
  max-width: calc(100vw - 3rem);
  background: var(--px-surface);
  border-radius: var(--px-radius-lg);
  box-shadow: 0 8px 40px rgba(26,26,36,0.2), 0 2px 8px rgba(26,26,36,0.1), 0 0 0 1px rgba(26,26,36,0.08);
  padding: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s cubic-bezier(0.4,0,0.2,1);
}

.px-cookie-modal.px-cookie-hidden {
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}

.px-cookie-modal-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--px-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.px-cookie-modal-title i { color: var(--px-accent); }

.px-cookie-modal-text {
  font-size: 0.82rem;
  color: var(--px-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.px-cookie-modal-text a {
  color: var(--px-primary);
  text-decoration: underline;
}

.px-cookie-modal-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.px-cookie-btn-accept {
  padding: 0.65rem 1rem;
  background: var(--px-primary);
  color: #fff;
  border-radius: var(--px-radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background var(--px-transition);
}

.px-cookie-btn-accept:hover { background: var(--px-primary-dark); }

.px-cookie-btn-necessary {
  padding: 0.65rem 1rem;
  background: transparent;
  color: var(--px-text-muted);
  border: 1px solid rgba(26,26,36,0.15);
  border-radius: var(--px-radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background var(--px-transition), color var(--px-transition);
}

.px-cookie-btn-necessary:hover {
  background: var(--px-bg);
  color: var(--px-text);
}

.px-cookie-btn-customize {
  padding: 0.4rem;
  background: transparent;
  color: var(--px-primary);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: color var(--px-transition-fast);
  text-decoration: underline;
}

.px-cookie-btn-customize:hover { color: var(--px-primary-dark); }

.px-cookie-customize-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1);
}

.px-cookie-customize-panel.px-panel-open {
  max-height: 300px;
}

.px-cookie-customize-inner {
  padding: 1rem 0 0.5rem;
  border-top: 1px solid rgba(26,26,36,0.08);
  margin-top: 0.75rem;
}

.px-cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(26,26,36,0.06);
}

.px-cookie-category:last-child { border-bottom: none; }

.px-cookie-cat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--px-text);
}

.px-cookie-cat-desc {
  font-size: 0.75rem;
  color: var(--px-text-muted);
  margin-top: 0.15rem;
}

.px-cookie-toggle {
  position: relative;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}

.px-cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.px-cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  border-radius: 20px;
  transition: background var(--px-transition);
}

.px-cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--px-transition);
}

.px-cookie-toggle input:checked + .px-cookie-toggle-slider {
  background: var(--px-primary);
}

.px-cookie-toggle input:checked + .px-cookie-toggle-slider::before {
  transform: translateX(16px);
}

.px-cookie-toggle input:disabled + .px-cookie-toggle-slider {
  opacity: 0.7;
  cursor: not-allowed;
}

.px-cookie-save-btn {
  margin-top: 0.75rem;
  width: 100%;
  padding: 0.6rem;
  background: var(--px-accent);
  color: #fff;
  border-radius: var(--px-radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--px-transition);
}

.px-cookie-save-btn:hover { background: var(--px-accent-dark); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .px-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .px-cell-wide { grid-column: span 2; }
  .px-cell-tall { grid-row: span 1; }

  .px-how-grid { grid-template-columns: 1fr; }

  .px-educator-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .px-series-overview-inner {
    grid-template-columns: 1fr;
  }

  .px-educator-card {
    grid-template-columns: 260px 1fr;
  }

  .px-educator-card-img-wrap { height: 320px; }
}

@media (max-width: 768px) {
  :root {
    --px-nav-h: 68px;
  }

  .px-nav-left,
  .px-nav-right {
    display: none;
  }

  .px-hamburger {
    display: flex;
  }

  .px-mobile-menu {
    display: flex;
  }

  .px-bento-grid {
    grid-template-columns: 1fr;
  }

  .px-cell-wide { grid-column: span 1; }

  .px-hero-text { max-width: 100%; }

  .px-for-grid {
    grid-template-columns: 1fr;
  }

  .px-contact-inner {
    grid-template-columns: 1fr;
  }

  .px-contact-map { height: 280px; }

  .px-educator-card {
    grid-template-columns: 1fr;
  }

  .px-educator-card-reverse { direction: ltr; }

  .px-educator-card-img-wrap { height: 260px; }

  .px-educator-card-body {
    padding: 1.75rem !important;
  }

  .px-philosophy-grid {
    grid-template-columns: 1fr;
  }

  .px-specialized-grid {
    grid-template-columns: 1fr;
  }

  .px-how-section {
    clip-path: none;
    margin: 0;
    padding: 4rem 2rem;
  }

  .px-intro-angled {
    clip-path: none;
    padding: 4rem 2rem;
    margin-bottom: 0;
  }

  .px-educator-highlight {
    clip-path: none;
    padding: 4rem 2rem;
  }

  .px-philosophy-section {
    clip-path: none;
    padding: 4rem 2rem;
  }

  .px-cta-glass {
    padding: 2.25rem 1.5rem;
  }

  .px-footer-legal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .px-hero-actions { flex-direction: column; }

  .px-btn-primary,
  .px-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .px-urgent-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .px-sdc-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .px-sdc-duration { order: -1; width: 100%; }
}

@media (max-width: 480px) {
  .px-bento-section,
  .px-for-section,
  .px-sessions-section,
  .px-faq-section,
  .px-contact-section,
  .px-series-overview,
  .px-sessions-detail,
  .px-specialized-formats,
  .px-educators-section,
  .px-edu-intro,
  .px-legal-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .px-hero-content { padding: 3rem 1rem; }

  .px-page-hero { padding: calc(var(--px-nav-h) + 2rem) 1rem 3rem; }

  .px-bento-cell { padding: 1.5rem; }

  .px-cta-glass { padding: 2rem 1.25rem; }

  .px-footer-nav { gap: 0.5rem 1.25rem; }

  .px-cookie-modal { left: 1rem; right: 1rem; width: auto; }
}