/* ══════════════════════════════════════════════════════════════════════════════
   Zahraajet Landing Page Styles
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Root Variables ───────────────────────────────────────────────────────── */
:root {
  --z-coral: #e07256;
  --z-coral-light: #fef7f4;
  --z-coral-dark: #a85544;
  --z-rose: #e0506a;
  --z-rose-light: #fef4f5;
  --z-violet: #9140e8;
  --z-violet-light: #f8f0ff;
  --z-violet-dark: #62316f;
  --z-gold: #FFD400;
  --z-gold-dark: #cc9a00;
  --z-dust-50: #fffaf6;
  --z-dust-100: #fff3ea;
  --z-dust-200: #f0e0cc;
  --z-dust-600: #7e6a5e;
  --z-dust-800: #3e3230;
  --z-indigo-800: #342b27;
  --z-indigo-900: #1e1714;
  --z-indigo-950: #110d0b;
  --z-radius: 1rem;
  --z-radius-lg: 1.5rem;
  --z-radius-xl: 2rem;
  --z-transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset / Base ─────────────────────────────────────────────────────────── */
.landing-page {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.landing-page *,
.landing-page *::before,
.landing-page *::after {
  box-sizing: border-box;
}

/* ── Smooth Scroll ────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 1rem 2rem;
  transition: all 0.4s var(--z-transition);
}
.landing-nav.scrolled {
  background: rgba(255,250,246,0.88);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
  padding: 0.65rem 2rem;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--z-indigo-800);
}
.nav-logo-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(224,80,106,0.3);
  transition: transform 0.3s var(--z-transition), box-shadow 0.3s;
}
.nav-logo:hover .nav-logo-icon {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 6px 24px rgba(224,80,106,0.4);
}
.nav-logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--z-dust-600);
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.3s var(--z-transition);
}
.nav-link:hover {
  color: var(--z-coral);
  background: rgba(224,114,86,0.08);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--z-coral);
  border-radius: 1px;
  transition: all 0.3s var(--z-transition);
  transform: translateX(-50%);
}
.nav-link:hover::after {
  width: 60%;
}
.nav-cta-btn {
  margin-left: 0.75rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose));
  border-radius: 0.75rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(224,80,106,0.25);
  transition: all 0.3s var(--z-transition);
  border: none;
  cursor: pointer;
}
.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,80,106,0.35);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--z-indigo-800);
  border-radius: 2px;
  transition: all 0.3s var(--z-transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0s linear 0.3s;
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s;
}
/* Full-screen mobile menu */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 6rem 1.85rem 2.25rem;
  background: linear-gradient(165deg, var(--z-dust-50) 0%, #fff3ea 55%, #fef4f5 100%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
  transition: opacity 0.35s var(--z-transition), transform 0.4s var(--z-transition), visibility 0s linear 0.4s;
  overflow-y: auto;
}
.mobile-nav-drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.35s var(--z-transition), transform 0.45s var(--z-transition);
}

/* soft decorative glow inside the menu */
.mobile-nav-drawer::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 114, 86, 0.16), transparent 70%);
  pointer-events: none;
}

.mobile-nav-list {
  position: relative;
  margin: auto 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav-drawer .nav-link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.05rem 0.25rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--z-indigo-800);
  border-bottom: 1px solid rgba(52, 43, 39, 0.08);
  transition: color 0.25s, padding-left 0.3s var(--z-transition);
}
.mobile-nav-drawer .nav-link.active,
.mobile-nav-drawer .nav-link:hover {
  color: var(--z-coral);
  padding-left: 0.85rem;
}

.mobile-nav-foot {
  position: relative;
  margin-top: 1.5rem;
}
.mobile-nav-drawer .nav-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.05rem 1.5rem;
  font-size: 1.05rem;
  border-radius: 1rem;
}
.mobile-nav-tagline {
  margin: 1.1rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--z-dust-600);
}

/* staggered entrance */
.mobile-nav-drawer .nav-link,
.mobile-nav-drawer .mobile-nav-foot {
  opacity: 0;
  transform: translateY(14px);
}
.mobile-nav-drawer.open .nav-link,
.mobile-nav-drawer.open .mobile-nav-foot {
  opacity: 1;
  transform: none;
  transition: opacity 0.4s ease, transform 0.45s var(--z-transition);
}
.mobile-nav-drawer.open .nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-drawer.open .nav-link:nth-child(2) { transition-delay: 0.16s; }
.mobile-nav-drawer.open .nav-link:nth-child(3) { transition-delay: 0.22s; }
.mobile-nav-drawer.open .mobile-nav-foot { transition-delay: 0.3s; }


/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--z-dust-50) 0%, #fff3ea 30%, #fef4f5 60%, var(--z-dust-50) 100%);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  will-change: transform;
}
.hero-shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--z-coral) 0%, transparent 70%);
  top: -15%; right: -10%;
  animation: heroFloat1 12s ease-in-out infinite;
}
.hero-shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--z-violet) 0%, transparent 70%);
  bottom: -10%; left: -5%;
  animation: heroFloat2 15s ease-in-out infinite;
}
.hero-shape-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--z-gold) 0%, transparent 70%);
  top: 30%; left: 15%;
  animation: heroFloat3 10s ease-in-out infinite;
}
@keyframes heroFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(15px, -25px) scale(0.95); }
}
@keyframes heroFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}
@keyframes heroFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 15px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text { max-width: 600px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(224,114,86,0.1), rgba(224,80,106,0.1));
  border: 1px solid rgba(224,114,86,0.2);
  border-radius: 2rem;
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--z-coral-dark);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--z-coral);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--z-indigo-800);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose), var(--z-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .word-rotate-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.1em;
  position: relative;
}
.hero-title .word-rotate-track {
  display: flex;
  flex-direction: column;
  animation: wordRotate 9s ease-in-out infinite;
}
.hero-title .word-rotate-track span {
  height: 1.1em;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose), var(--z-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes wordRotate {
  0%, 25%   { transform: translateY(0); }
  30%, 55%  { transform: translateY(-1.1em); }
  60%, 85%  { transform: translateY(-2.2em); }
  90%, 100% { transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--z-dust-600);
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose));
  border-radius: var(--z-radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(224,80,106,0.3);
  transition: all 0.4s var(--z-transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(224,80,106,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--z-indigo-800);
  background: white;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--z-radius);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--z-transition);
}
.btn-secondary:hover {
  border-color: var(--z-coral);
  color: var(--z-coral);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* Hero stats ticker */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--z-indigo-800);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.813rem;
  color: var(--z-dust-600);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* Hero Image Side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-container {
  position: relative;
  width: 420px;
  height: 520px;
}
.hero-image-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--z-radius-xl);
  box-shadow: 0 32px 80px rgba(0,0,0,0.12);
  z-index: 2;
}
.hero-image-ring {
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: calc(var(--z-radius-xl) + 4px);
  border: 3px solid rgba(224,114,86,0.2);
  animation: ringPulse 4s ease-in-out infinite;
  z-index: 1;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.03); opacity: 1; }
}
/* Floating cards around hero image */
.hero-float-card {
  position: absolute;
  padding: 0.75rem 1.25rem;
  background: white;
  border-radius: var(--z-radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  font-size: 0.813rem;
  font-weight: 600;
  color: var(--z-indigo-800);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: cardFloat 5s ease-in-out infinite;
  white-space: nowrap;
}
.hero-float-card:nth-child(2) { animation-delay: -1.5s; }
.hero-float-card:nth-child(3) { animation-delay: -3s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-float-card.card-1 { top: 60px; right: -40px; }
.hero-float-card.card-2 { bottom: 80px; left: -50px; }
.hero-float-card.card-3 { top: 240px; right: -60px; }
.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Section Shared ───────────────────────────────────────────────────────── */
.landing-section {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.813rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--z-coral);
  margin-bottom: 1rem;
}
.section-label-icon {
  width: 6px;
  height: 6px;
  background: var(--z-coral);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--z-indigo-800);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--z-dust-600);
  line-height: 1.7;
}

/* ── About / Meet Zahra ───────────────────────────────────────────────────── */
.about-section {
  background: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images {
  position: relative;
  height: 500px;
}
.about-img {
  position: absolute;
  border-radius: var(--z-radius-lg);
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transition: transform 0.5s var(--z-transition);
}
.about-img:hover {
  transform: scale(1.03) rotate(-1deg);
}
.about-img.img-1 {
  width: 280px;
  height: 360px;
  top: 0;
  left: 0;
  z-index: 2;
}
.about-img.img-2 {
  width: 240px;
  height: 300px;
  top: 80px;
  right: 0;
  z-index: 1;
}
.about-images-deco {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(224,114,86,0.15), rgba(145,64,232,0.1));
  bottom: 20px;
  left: 60px;
  z-index: 0;
  animation: decoFloat 8s ease-in-out infinite;
}
@keyframes decoFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -15px); }
}

.about-content { }
.about-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--z-indigo-800);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-desc {
  font-size: 1.0625rem;
  color: var(--z-dust-600);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--z-dust-50);
  border-radius: var(--z-radius);
  transition: all 0.3s var(--z-transition);
}
.about-highlight:hover {
  background: var(--z-coral-light);
  transform: translateX(4px);
}
.about-highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.about-highlight-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--z-indigo-800);
  margin: 0 0 0.25rem;
}
.about-highlight-text p {
  font-size: 0.8125rem;
  color: var(--z-dust-600);
  margin: 0;
  line-height: 1.5;
}


/* ── Webinars Section ─────────────────────────────────────────────────────── */
.webinars-section {
  background: linear-gradient(180deg, var(--z-dust-50) 0%, white 100%);
}
.webinar-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.webinar-visual {
  position: relative;
  padding: 2rem;
}
.webinar-screen {
  background: linear-gradient(160deg, var(--z-indigo-900), #2a1f1c);
  border-radius: var(--z-radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.15);
}
.webinar-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--z-coral), var(--z-rose), var(--z-violet), var(--z-gold));
  animation: gradientSlide 4s linear infinite;
  background-size: 200% 100%;
}
@keyframes gradientSlide {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.webinar-screen-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.webinar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.webinar-dot.live {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239,68,68,0.5);
  animation: pulseDot 1.5s ease-in-out infinite;
}
.webinar-dot.amber { background: #f59e0b; }
.webinar-dot.green { background: #22c55e; }
.webinar-screen-title {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 0.5rem;
}
.webinar-preview-img {
  width: 100%;
  height: 200px;
  border-radius: 0.75rem;
  object-fit: cover;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.webinar-participants {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.webinar-avatars {
  display: flex;
}
.webinar-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--z-indigo-900);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}
.webinar-avatar:first-child { margin-left: 0; }
.webinar-count {
  color: rgba(255,255,255,0.6);
  font-size: 0.8125rem;
}

/* Floating decoration around webinar */
.webinar-float-deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: decoFloat 10s ease-in-out infinite;
}

.webinar-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.webinar-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--z-radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.4s var(--z-transition);
}
.webinar-feature:hover {
  border-color: rgba(224,114,86,0.2);
  box-shadow: 0 8px 32px rgba(224,114,86,0.08);
  transform: translateX(6px);
}
.webinar-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--z-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.webinar-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--z-indigo-800);
  margin: 0 0 0.375rem;
}
.webinar-feature p {
  font-size: 0.875rem;
  color: var(--z-dust-600);
  margin: 0;
  line-height: 1.6;
}


/* ── Courses Section ──────────────────────────────────────────────────────── */
.courses-section {
  background: white;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.course-card {
  background: var(--z-dust-50);
  border-radius: var(--z-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--z-transition);
  cursor: default;
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: rgba(224,114,86,0.15);
}
.course-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--z-coral-light), var(--z-violet-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.course-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(255,255,255,0.3));
}
.course-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}
.course-card-body {
  padding: 1.5rem;
}
.course-card-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--z-indigo-800);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.course-card-desc {
  font-size: 0.8125rem;
  color: var(--z-dust-600);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.course-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--z-dust-600);
}
.course-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}


/* ── How It Works ─────────────────────────────────────────────────────────── */
.how-section {
  background: linear-gradient(180deg, var(--z-dust-50) 0%, white 100%);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
/* Connecting line */
.how-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--z-coral), var(--z-rose), var(--z-violet), var(--z-gold));
  z-index: 0;
  border-radius: 1px;
}
.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}
.how-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--z-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--z-coral);
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(224,114,86,0.15);
  transition: all 0.4s var(--z-transition);
}
.how-step:hover .how-step-number {
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose));
  color: white;
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(224,80,106,0.3);
}
.how-step-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.how-step h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--z-indigo-800);
  margin: 0 0 0.5rem;
}
.how-step p {
  font-size: 0.8125rem;
  color: var(--z-dust-600);
  line-height: 1.6;
  margin: 0;
}


/* ── Testimonials ─────────────────────────────────────────────────────────── */
.testimonials-section {
  background: linear-gradient(160deg, var(--z-indigo-950), #1a1210);
  color: white;
  position: relative;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(224,114,86,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(145,64,232,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.testimonials-section .section-label { color: var(--z-gold); }
.testimonials-section .section-label-icon { background: var(--z-gold); }
.testimonials-section .section-title { color: white; }
.testimonials-section .section-desc { color: rgba(255,255,255,0.6); }

.testimonials-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0 2rem;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.34rem);
  min-width: 300px;
  scroll-snap-align: start;
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--z-radius-lg);
  transition: all 0.4s var(--z-transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(224,114,86,0.2);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.testimonial-star {
  color: var(--z-gold);
  font-size: 1rem;
}
.testimonial-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  color: white;
}
.testimonial-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
}
.testimonial-location {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}


/* ── Pricing ──────────────────────────────────────────────────────────────── */
.pricing-section {
  background: white;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}
.pricing-card {
  background: var(--z-dust-50);
  border-radius: var(--z-radius-xl);
  padding: 2.5rem 2rem;
  border: 2px solid transparent;
  transition: all 0.4s var(--z-transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.pricing-card.featured {
  background: linear-gradient(160deg, var(--z-indigo-950), #2a1f1c);
  border-color: rgba(224,114,86,0.3);
  color: white;
}
.pricing-card.featured:hover {
  box-shadow: 0 20px 60px rgba(224,80,106,0.15);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1.25rem;
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(224,80,106,0.3);
}
.pricing-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.pricing-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.pricing-price .currency { font-size: 1.25rem; vertical-align: top; }
.pricing-period {
  font-size: 0.8125rem;
  color: var(--z-dust-600);
  margin-bottom: 2rem;
}
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  color: var(--z-dust-600);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.06);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-check { color: #22c55e; font-size: 1rem; }
.pricing-card.featured .pricing-check { color: var(--z-gold); }

.pricing-btn {
  display: block;
  width: 100%;
  padding: 0.875rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--z-radius);
  text-decoration: none;
  transition: all 0.3s var(--z-transition);
  border: none;
  cursor: pointer;
}
.pricing-btn-default {
  background: white;
  color: var(--z-indigo-800);
  border: 2px solid rgba(0,0,0,0.08);
}
.pricing-btn-default:hover {
  border-color: var(--z-coral);
  color: var(--z-coral);
}
.pricing-btn-featured {
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose));
  color: white;
  box-shadow: 0 8px 24px rgba(224,80,106,0.3);
}
.pricing-btn-featured:hover {
  box-shadow: 0 12px 36px rgba(224,80,106,0.4);
  transform: translateY(-2px);
}


/* ── FAQ Section ──────────────────────────────────────────────────────────── */
.faq-section {
  background: linear-gradient(180deg, var(--z-dust-50) 0%, white 100%);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: white;
  border-radius: var(--z-radius);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s var(--z-transition);
}
.faq-item:hover {
  border-color: rgba(224,114,86,0.15);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--z-indigo-800);
  text-align: left;
  font-family: inherit;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--z-coral); }
.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--z-transition);
  flex-shrink: 0;
  color: var(--z-dust-600);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--z-transition), padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--z-dust-600);
  line-height: 1.7;
}


/* ── CTA Section ──────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(160deg, var(--z-indigo-950) 0%, #2a1f1c 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(224,114,86,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.cta-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--z-radius);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--z-transition);
}
.cta-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
/* Animated sparkles in CTA */
.cta-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--z-gold);
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 3s ease-in-out infinite;
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}


/* ── Footer ───────────────────────────────────────────────────────────────── */
.landing-footer {
  background: var(--z-indigo-950);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin: 0 0 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 0.375rem 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--z-coral); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }


/* ── Scroll-Triggered Reveal Animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--z-transition), transform 0.8s var(--z-transition);
}
.reveal.from-left {
  transform: translateX(-60px);
}
.reveal.from-right {
  transform: translateX(60px);
}
.reveal.from-scale {
  transform: scale(0.88);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
/* Stagger for children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--z-transition), transform 0.6s var(--z-transition);
}
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > *.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }

/* ── Marquee ──────────────────────────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  white-space: nowrap;
  padding: 1.25rem 0;
  background: linear-gradient(90deg, var(--z-coral-light), var(--z-violet-light), var(--z-coral-light));
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--z-dust-600);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--z-coral);
  opacity: 0.5;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ── Parallax Floating Particles ──────────────────────────────────────────── */
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
  will-change: transform;
}


/* ── Counter Animation ────────────────────────────────────────────────────── */
.counter[data-target] {
  font-variant-numeric: tabular-nums;
}


/* ═══════════════════ Responsive ══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 7rem;
  }
  .hero-text { margin: 0 auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-image-container { width: 300px; height: 380px; margin: 0 auto; }
  .hero-float-card.card-1 { right: -20px; top: 30px; }
  .hero-float-card.card-2 { left: -20px; bottom: 40px; }
  .hero-float-card.card-3 { right: -30px; top: 180px; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 350px; margin: 0 auto; width: 100%; max-width: 500px; }

  .webinar-showcase { grid-template-columns: 1fr; }
  .webinar-visual { order: -1; max-width: 500px; margin: 0 auto; }

  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .how-steps::before { display: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .testimonial-card { flex: 0 0 calc(50% - 1rem); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav-overlay { display: block; }

  .landing-section { padding: 4rem 1.25rem; }
  .section-header { margin-bottom: 2.5rem; }

  .hero-content { padding-top: 6rem; gap: 2rem; }
  .hero-image-container { width: 240px; height: 300px; }
  .hero-float-card { font-size: 0.75rem; padding: 0.5rem 0.75rem; }
  .hero-float-card .float-icon { width: 26px; height: 26px; font-size: 0.8rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .hero-stat-num { font-size: 1.5rem; }

  .about-images { height: 300px; }
  .about-img.img-1 { width: 200px; height: 260px; }
  .about-img.img-2 { width: 170px; height: 220px; }

  .courses-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .testimonials-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
  }
  .testimonial-card {
    flex: none;
    min-width: 0;
    width: 100%;
    scroll-snap-align: unset;
  }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card:last-child { grid-column: auto; max-width: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-image-container { width: 200px; height: 260px; }
  .hero-float-card.card-3 { display: none; }
  .btn-primary, .btn-secondary { padding: 0.875rem 1.5rem; font-size: 0.875rem; }
  .cta-title { font-size: 1.75rem; }
}


/* ══════════════════════════════════════════════════════════════════════════════
   ENHANCED ANIMATION SYSTEM & NEW PAGE STYLES
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Scroll Progress Bar ─────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: linear-gradient(90deg, var(--z-coral), var(--z-rose), var(--z-violet), var(--z-gold));
  transform-origin: left;
  transform: scaleX(0);
  pointer-events: none;
}

/* ── Page Transition Overlay ─────────────────────────────────────────────── */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose));
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
.page-transition.active {
  transform: scaleY(1);
  pointer-events: all;
}
.page-transition.exit {
  transform-origin: top;
  transform: scaleY(0);
}

/* ── Creative Entrance Animations ────────────────────────────────────────── */
.anim-in {
  opacity: 0;
  will-change: transform, opacity;
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-in.visible {
  opacity: 1;
  transform: none !important;
  filter: none !important;
  clip-path: none !important;
}
.anim-fade-up { transform: translateY(50px); }
.anim-fade-down { transform: translateY(-50px); }
.anim-slide-left { transform: translateX(-80px); }
.anim-slide-right { transform: translateX(80px); }
.anim-scale-in { transform: scale(0.8); }
.anim-clip-up { clip-path: inset(100% 0 0 0); }
.anim-clip-left { clip-path: inset(0 100% 0 0); }
.anim-clip-right { clip-path: inset(0 0 0 100%); }
.anim-rotate-in { transform: rotate(-8deg) scale(0.85); }
.anim-blur-in { filter: blur(12px); opacity: 0; }
.anim-bounce-in {
  transform: scale(0.3);
  animation-fill-mode: forwards;
}
.anim-bounce-in.visible {
  animation: bounceInKF 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes bounceInKF {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.08); opacity: 1; }
  70% { transform: scale(0.96); }
  100% { transform: scale(1); opacity: 1; }
}

/* ── Enhanced Stagger System ─────────────────────────────────────────────── */
.stagger-children > * {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.32s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.56s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(9) { transition-delay: 0.64s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.72s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(11) { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(12) { transition-delay: 0.88s; opacity: 1; transform: translateY(0); }

/* Scale variant */
.stagger-scale > * {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-scale.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: scale(1); }
.stagger-scale.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: scale(1); }
.stagger-scale.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: scale(1); }
.stagger-scale.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: scale(1); }
.stagger-scale.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: scale(1); }
.stagger-scale.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: scale(1); }

/* ── Looping Ambient Animations ──────────────────────────────────────────── */
.float-slow { animation: floatSlow 6s ease-in-out infinite; }
.float-medium { animation: floatMedium 4s ease-in-out infinite; }
.float-fast { animation: floatFast 2.5s ease-in-out infinite; }
.pulse-glow { animation: pulseGlow 3s ease-in-out infinite; }
.morph-blob { animation: morphBlob 8s ease-in-out infinite; }
.spin-slow { animation: spinSlow 20s linear infinite; }
.gradient-flow { background-size: 200% 200%; animation: gradientFlow 6s ease infinite; }
.wiggle { animation: wiggle 3s ease-in-out infinite; }

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes floatMedium {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(3deg); }
}
@keyframes floatFast {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(224,114,86,0.15); }
  50% { box-shadow: 0 0 40px rgba(224,114,86,0.35), 0 0 80px rgba(224,80,106,0.1); }
}
@keyframes morphBlob {
  0%, 100% { border-radius: 42% 58% 60% 40% / 45% 55% 45% 55%; }
  25% { border-radius: 55% 45% 40% 60% / 60% 40% 55% 45%; }
  50% { border-radius: 40% 60% 55% 45% / 50% 50% 40% 60%; }
  75% { border-radius: 60% 40% 45% 55% / 40% 60% 50% 50%; }
}
@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(3deg); }
  75% { transform: rotate(-3deg); }
}

/* ── Morphing Blob Decorations ───────────────────────────────────────────── */
.blob-deco {
  position: absolute;
  border-radius: 42% 58% 60% 40% / 45% 55% 45% 55%;
  opacity: 0.08;
  pointer-events: none;
  will-change: border-radius;
  animation: morphBlob 8s ease-in-out infinite;
  z-index: 0;
}
.blob-deco.coral { background: var(--z-coral); }
.blob-deco.violet { background: var(--z-violet); }
.blob-deco.rose { background: var(--z-rose); }
.blob-deco.gold { background: var(--z-gold); }
.blob-deco.lg { width: 400px; height: 400px; }
.blob-deco.md { width: 250px; height: 250px; }
.blob-deco.sm { width: 150px; height: 150px; }

/* ── Glassmorphism Cards ─────────────────────────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--z-radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: all 0.4s var(--z-transition);
}
.glass-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: rgba(224,114,86,0.2);
}
.glass-card-dark {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--z-radius-lg);
  transition: all 0.4s var(--z-transition);
}
.glass-card-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(224,114,86,0.25);
  transform: translateY(-4px);
}

/* ── Interactive Effects ──────────────────────────────────────────────────── */
.hover-lift {
  transition: transform 0.4s var(--z-transition), box-shadow 0.4s var(--z-transition);
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.hover-glow {
  transition: box-shadow 0.4s var(--z-transition);
}
.hover-glow:hover {
  box-shadow: 0 0 30px rgba(224,114,86,0.2), 0 0 60px rgba(224,80,106,0.08);
}
.magnetic-btn {
  will-change: transform;
  transition: transform 0.2s ease-out;
}

/* ── Gradient Text Animation ─────────────────────────────────────────────── */
.gradient-text-animated {
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose), var(--z-violet), var(--z-gold), var(--z-coral));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientTextFlow 6s ease infinite;
}
@keyframes gradientTextFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gradient-text {
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose), var(--z-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Image Creative Treatments ───────────────────────────────────────────── */
.img-glow {
  position: relative;
}
.img-glow::after {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: inherit;
  background: inherit;
  filter: blur(40px);
  opacity: 0.3;
  z-index: -1;
}
.img-hover-zoom {
  overflow: hidden;
  border-radius: var(--z-radius-lg);
}
.img-hover-zoom img {
  transition: transform 0.6s var(--z-transition);
}
.img-hover-zoom:hover img {
  transform: scale(1.08);
}

/* ── Nav Active State ────────────────────────────────────────────────────── */
.nav-link.active {
  color: var(--z-coral);
}
.nav-link.active::after {
  width: 60%;
}

/* ── Impact / Stats Section ──────────────────────────────────────────────── */
.impact-section {
  padding: 5rem 2rem;
  background: linear-gradient(160deg, var(--z-indigo-950), #2a1f1c);
  color: white;
  position: relative;
  overflow: hidden;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.impact-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--z-radius-xl);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s var(--z-transition);
}
.impact-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(224,114,86,0.3);
}
.impact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: floatSlow 5s ease-in-out infinite;
}
.impact-number {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--z-coral), var(--z-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.impact-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ── Mission / Quote Section ─────────────────────────────────────────────── */
.mission-section {
  padding: 7rem 2rem;
  background: linear-gradient(160deg, var(--z-indigo-950) 0%, #1a1210 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.mission-quote-mark {
  font-size: 6rem;
  line-height: 1;
  opacity: 0.15;
  font-family: Georgia, serif;
  color: var(--z-coral);
}
.mission-text {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin: 1rem 0 2rem;
}
.mission-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.mission-author-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(224,114,86,0.4);
}
.mission-author-name {
  font-size: 1rem;
  font-weight: 700;
}
.mission-author-title {
  font-size: 0.813rem;
  color: rgba(255,255,255,0.4);
}

/* ── Webinars Page ───────────────────────────────────────────────────────── */
.wbn-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  background: linear-gradient(160deg, var(--z-indigo-950), #2a1f1c 60%, #1a1210);
  color: white;
  position: relative;
  overflow: hidden;
}
.wbn-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.wbn-hero-text { max-width: 560px; }
.wbn-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 2rem;
  font-size: 0.813rem;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.wbn-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulseDot 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(239,68,68,0.6);
}
.wbn-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.wbn-hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.wbn-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.wbn-hero-img-wrap {
  position: relative;
  width: 380px;
  height: 460px;
  border-radius: var(--z-radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
.wbn-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wbn-hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17,13,11,0.6));
  z-index: 1;
}

.wbn-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.wbn-feature-card {
  padding: 2rem;
  border-radius: var(--z-radius-lg);
  background: var(--z-dust-50);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all 0.4s var(--z-transition);
}
.wbn-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  border-color: rgba(224,114,86,0.15);
}
.wbn-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--z-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.wbn-feature-card h4 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--z-indigo-800);
  margin: 0 0 0.375rem;
}
.wbn-feature-card p {
  font-size: 0.875rem;
  color: var(--z-dust-600);
  line-height: 1.6;
  margin: 0;
}

/* Webinar timeline steps */
.wbn-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.wbn-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--z-coral), var(--z-violet), var(--z-gold));
  border-radius: 2px;
}
.wbn-timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
  position: relative;
}
.wbn-timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--z-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--z-coral);
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(224,114,86,0.15);
  transition: all 0.4s var(--z-transition);
}
.wbn-timeline-step:hover .wbn-timeline-dot {
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose));
  color: white;
  transform: scale(1.15);
}
.wbn-timeline-content {
  padding-top: 0.5rem;
}
.wbn-timeline-content h4 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--z-indigo-800);
  margin: 0 0 0.375rem;
}
.wbn-timeline-content p {
  font-size: 0.875rem;
  color: var(--z-dust-600);
  line-height: 1.6;
  margin: 0;
}

/* Topic cards */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.topic-card {
  padding: 2rem;
  border-radius: var(--z-radius-lg);
  background: white;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.4s var(--z-transition);
  cursor: default;
}
.topic-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: rgba(224,114,86,0.2);
}
.topic-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.topic-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--z-indigo-800);
  margin: 0 0 0.5rem;
}
.topic-card p {
  font-size: 0.8125rem;
  color: var(--z-dust-600);
  line-height: 1.6;
  margin: 0;
}

/* ── About Page ──────────────────────────────────────────────────────────── */
.abt-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  background: linear-gradient(160deg, var(--z-dust-50) 0%, #fff3ea 30%, #fef4f5 60%, var(--z-dust-50) 100%);
  position: relative;
  overflow: hidden;
}
.abt-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.abt-hero-text { max-width: 560px; }
.abt-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--z-indigo-800);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.abt-hero-desc {
  font-size: 1.125rem;
  color: var(--z-dust-600);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.abt-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.abt-hero-img {
  width: 420px;
  height: 520px;
  border-radius: var(--z-radius-xl);
  object-fit: cover;
  box-shadow: 0 32px 80px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
}

/* Story section */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 0;
}
.story-block.reverse {
  direction: rtl;
}
.story-block.reverse > * {
  direction: ltr;
}
.story-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--z-indigo-800);
  margin: 0 0 1rem;
  line-height: 1.3;
}
.story-text p {
  font-size: 1rem;
  color: var(--z-dust-600);
  line-height: 1.8;
  margin: 0 0 1rem;
}
.story-img {
  width: 100%;
  height: 350px;
  border-radius: var(--z-radius-xl);
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

/* Mission/Vision cards */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.mv-card {
  padding: 2.5rem;
  border-radius: var(--z-radius-xl);
  background: white;
  border: 2px solid transparent;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--z-transition);
}
.mv-card::before {
  content: none;
}
.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.mv-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.mv-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--z-indigo-800);
  margin: 0 0 0.75rem;
}
.mv-card p {
  font-size: 0.9375rem;
  color: var(--z-dust-600);
  line-height: 1.7;
  margin: 0;
}

/* Differentiators */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.diff-card {
  padding: 2rem;
  border-radius: var(--z-radius-lg);
  background: var(--z-dust-50);
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center;
  transition: all 0.4s var(--z-transition);
}
.diff-card:hover {
  background: white;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.diff-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--z-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}
.diff-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--z-indigo-800);
  margin: 0 0 0.5rem;
}
.diff-card p {
  font-size: 0.8125rem;
  color: var(--z-dust-600);
  line-height: 1.6;
  margin: 0;
}

/* Photo gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.photo-gallery-item {
  border-radius: var(--z-radius-lg);
  overflow: hidden;
  position: relative;
  cursor: default;
}
.photo-gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s var(--z-transition);
}
.photo-gallery-item:hover img {
  transform: scale(1.08);
}
.photo-gallery-item:nth-child(2) {
  margin-top: 2rem;
}

/* ── Pricing Page ────────────────────────────────────────────────────────── */
.prc-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--z-dust-50) 0%, white 100%);
  position: relative;
  overflow: hidden;
}
.prc-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--z-indigo-800);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.prc-hero-desc {
  font-size: 1.125rem;
  color: var(--z-dust-600);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 3rem;
}

/* Included features grid */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.included-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--z-radius-lg);
  background: white;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--z-transition);
}
.included-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}
.included-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.included-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--z-indigo-800);
  margin: 0 0 0.375rem;
}
.included-card p {
  font-size: 0.8125rem;
  color: var(--z-dust-600);
  margin: 0;
  line-height: 1.5;
}

/* Feature comparison table */
.comparison-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--z-radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.9375rem;
}
.comparison-table thead th {
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  border-bottom: 2px solid rgba(0,0,0,0.06);
  color: var(--z-indigo-800);
}
.comparison-table thead th:first-child {
  text-align: left;
}
.comparison-table thead th.featured-col {
  background: linear-gradient(180deg, rgba(224,114,86,0.06), transparent);
  color: var(--z-coral);
}
.comparison-table tbody td {
  padding: 1rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: var(--z-dust-600);
}
.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--z-indigo-800);
}
.comparison-table tbody td.featured-col {
  background: rgba(224,114,86,0.02);
}
.comparison-table tbody tr:hover td {
  background: rgba(224,114,86,0.03);
}
.check-yes { color: #22c55e; font-weight: 700; }
.check-no { color: #d1d5db; }

/* Why upgrade cards */
.upgrade-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.upgrade-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: var(--z-radius-lg);
  background: var(--z-dust-50);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--z-transition);
}
.upgrade-card:hover {
  background: white;
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.upgrade-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--z-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.upgrade-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--z-indigo-800);
  margin: 0 0 0.375rem;
}
.upgrade-card p {
  font-size: 0.875rem;
  color: var(--z-dust-600);
  line-height: 1.6;
  margin: 0;
}

/* ── Generic CTA Section (reusable on sub-pages) ─────────────────────────── */
.sub-cta-section {
  background: linear-gradient(160deg, var(--z-indigo-950) 0%, #2a1f1c 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sub-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(224,114,86,0.12), transparent 60%);
  pointer-events: none;
}
.sub-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.sub-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.sub-cta-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Enhanced Responsive for New Sections ────────────────────────────────── */

@media (max-width: 1024px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .wbn-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .wbn-hero-text { margin: 0 auto; }
  .wbn-hero-visual { order: -1; }
  .wbn-hero-img-wrap { width: 300px; height: 380px; margin: 0 auto; }
  .wbn-feature-grid { grid-template-columns: 1fr; max-width: 600px; }
  .abt-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .abt-hero-text { margin: 0 auto; }
  .abt-hero-visual { order: -1; }
  .abt-hero-img { width: 300px; height: 380px; margin: 0 auto; }
  .story-block { grid-template-columns: 1fr; gap: 2rem; }
  .story-block.reverse { direction: ltr; }
  .story-img { height: 280px; }
  .mv-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-gallery-item:nth-child(2) { margin-top: 0; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .upgrade-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .impact-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .impact-card { padding: 1.5rem 1rem; }
  .impact-number { font-size: 2rem; }
  .wbn-timeline::before { left: 20px; }
  .wbn-timeline-dot { width: 40px; height: 40px; font-size: 1rem; }
  .topic-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .photo-gallery { grid-template-columns: 1fr; }
  .photo-gallery-item img { height: 250px; }
  .included-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.8125rem; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: 0.75rem 0.75rem; }
}

@media (max-width: 480px) {
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .impact-number { font-size: 1.75rem; }
  .wbn-hero-img-wrap { width: 240px; height: 300px; }
  .abt-hero-img { width: 240px; height: 300px; }
  .mission-text { font-size: 1.125rem; }
}

/* ── Reduced Motion Support ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.2s !important;
    scroll-behavior: auto !important;
  }
  .anim-in { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
  .stagger-children > *, .stagger-scale > * { opacity: 1 !important; transform: none !important; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}


/* ══════════════════════════════════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES: New Sections & Sub-pages
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Section Eyebrow ─────────────────────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--z-coral);
  margin: 0 0 0.75rem;
}

/* ── Gradient Text Utilities ─────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose), var(--z-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Subtitle ────────────────────────────────────────────────────── */
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--z-dust-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Button Styles ───────────────────────────────────────────────────────── */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid var(--z-coral);
  color: var(--z-coral);
  background: transparent;
  text-decoration: none;
  transition: all 0.3s var(--z-transition);
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--z-coral);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224,114,86,0.25);
}

/* ══════════════════════════════════════════════════════════════════════════════
   IMPACT STATS SECTION (Home)
   ══════════════════════════════════════════════════════════════════════════════ */
.impact-section {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(160deg, var(--z-indigo-950) 0%, #1a1015 50%, #1e0a25 100%);
  overflow: hidden;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.impact-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--z-radius-lg);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: all 0.35s var(--z-transition);
}
.impact-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
}
.impact-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.impact-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.impact-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
@media (max-width: 768px) {
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .impact-number { font-size: 2rem; }
  .impact-section { padding: 4rem 1.25rem; }
}
@media (max-width: 480px) {
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .impact-card { padding: 1.5rem 1rem; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   MISSION QUOTE SECTION (Home + About)
   ══════════════════════════════════════════════════════════════════════════════ */
.mission-section {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(160deg, var(--z-indigo-950) 0%, #1a1015 50%, #1e0a25 100%);
  overflow: hidden;
}
.mission-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.mission-quote-mark {
  font-size: 6rem;
  line-height: 1;
  font-weight: 900;
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: -1rem;
}
.mission-text {
  font-size: 1.375rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  margin: 0 0 2.5rem;
}
.mission-author {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.mission-author-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.15);
}
.mission-author-name {
  font-weight: 700;
  color: white;
  font-size: 1rem;
}
.mission-author-title {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 768px) {
  .mission-text { font-size: 1.125rem; }
  .mission-quote-mark { font-size: 4rem; }
  .mission-section { padding: 4rem 1.25rem; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SUB-PAGE CTA SECTION (Webinars, About, Pricing)
   ══════════════════════════════════════════════════════════════════════════════ */
.sub-cta-section {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(160deg, var(--z-indigo-950) 0%, #1a1015 50%, #1e0a25 100%);
  overflow: hidden;
  text-align: center;
}
.sub-cta-inner {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sub-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin: 0 0 1.25rem;
}
.sub-cta-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0 0 2rem;
}
@media (max-width: 768px) {
  .sub-cta-title { font-size: 1.75rem; }
  .sub-cta-section { padding: 4rem 1.25rem; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   WEBINARS PAGE
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Webinars Hero ─────────────────────────────────────────────────────────── */
.wbn-hero {
  position: relative;
  padding: 10rem 2rem 6rem;
  background: linear-gradient(160deg, #fffaf6 0%, #fef2ee 50%, #fff 100%);
  overflow: hidden;
}
.wbn-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.wbn-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #dc2626;
  margin-bottom: 1.25rem;
}
.wbn-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dc2626;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(220,38,38,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(220,38,38,0); }
}
.wbn-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: var(--z-indigo-800);
}
.wbn-hero-desc {
  font-size: 1.0625rem;
  color: var(--z-dust-600);
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 500px;
}
.wbn-hero-visual {
  display: flex;
  justify-content: center;
}
.wbn-hero-img-wrap {
  width: 100%;
  max-width: 420px;
  border-radius: var(--z-radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
}
.wbn-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .wbn-hero { padding: 7rem 1.25rem 3rem; }
  .wbn-hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .wbn-hero-title { font-size: 2.25rem; }
  .wbn-hero-desc { max-width: 100%; }
  .wbn-hero-img-wrap { max-width: 300px; }
}

/* ── Webinars Feature Grid ─────────────────────────────────────────────────── */
.wbn-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.wbn-feature-card {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  background: white;
  border-radius: var(--z-radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s var(--z-transition);
}
.wbn-feature-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--z-indigo-800);
}
.wbn-feature-card p {
  font-size: 0.9375rem;
  color: var(--z-dust-600);
  line-height: 1.65;
  margin: 0;
}
.wbn-feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--z-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .wbn-feature-grid { grid-template-columns: 1fr; }
  .wbn-feature-card { flex-direction: column; gap: 1rem; text-align: center; align-items: center; }
}

/* ── Webinars Timeline ─────────────────────────────────────────────────────── */
.wbn-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}
.wbn-timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--z-coral), var(--z-violet));
  border-radius: 2px;
}
.wbn-timeline-step {
  position: relative;
  padding: 0 0 2.5rem 1.5rem;
}
.wbn-timeline-step:last-child { padding-bottom: 0; }
.wbn-timeline-dot {
  position: absolute;
  left: -2.95rem;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose));
  color: white;
  font-weight: 700;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(224,114,86,0.25);
}
.wbn-timeline-content h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--z-indigo-800);
}
.wbn-timeline-content p {
  font-size: 0.9375rem;
  color: var(--z-dust-600);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 480px) {
  .wbn-timeline { padding-left: 2.5rem; }
  .wbn-timeline-dot { left: -2.45rem; width: 30px; height: 30px; font-size: 0.75rem; }
}

/* ── Topic Cards ───────────────────────────────────────────────────────────── */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.topic-card {
  background: white;
  border-radius: var(--z-radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s var(--z-transition);
}
.topic-card-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.topic-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--z-indigo-800);
}
.topic-card p {
  font-size: 0.875rem;
  color: var(--z-dust-600);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 768px) {
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .topic-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── About Hero ────────────────────────────────────────────────────────────── */
.abt-hero {
  position: relative;
  padding: 10rem 2rem 6rem;
  background: linear-gradient(160deg, #fffaf6 0%, #fef2ee 50%, #fff 100%);
  overflow: hidden;
}
.abt-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.abt-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: var(--z-indigo-800);
}
.abt-hero-desc {
  font-size: 1.0625rem;
  color: var(--z-dust-600);
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 500px;
}
.abt-hero-visual { display: flex; justify-content: center; }
.abt-hero-img {
  width: 100%;
  max-width: 380px;
  border-radius: var(--z-radius-xl);
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
}
@media (max-width: 768px) {
  .abt-hero { padding: 7rem 1.25rem 3rem; }
  .abt-hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .abt-hero-title { font-size: 2.25rem; }
  .abt-hero-desc { max-width: 100%; }
  .abt-hero-img { max-width: 280px; }
}

/* ── Story Blocks ──────────────────────────────────────────────────────────── */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.story-block.reverse { direction: rtl; }
.story-block.reverse > * { direction: ltr; }
.story-block:last-child { margin-bottom: 0; }
.story-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--z-indigo-800);
}
.story-text p {
  font-size: 1rem;
  color: var(--z-dust-600);
  line-height: 1.75;
  margin: 0 0 1rem;
}
.story-text p:last-child { margin-bottom: 0; }
.story-img {
  width: 100%;
  border-radius: var(--z-radius-xl);
  object-fit: cover;
  box-shadow: 0 16px 60px rgba(0,0,0,0.08);
  max-height: 350px;
}
@media (max-width: 768px) {
  .story-block, .story-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    text-align: center;
  }
  .story-img { max-height: 260px; }
}

/* ── Mission / Vision Cards ────────────────────────────────────────────────── */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.mv-card {
  background: white;
  border-radius: var(--z-radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s var(--z-transition);
}
.mv-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.mv-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--z-indigo-800);
}
.mv-card p {
  font-size: 0.9375rem;
  color: var(--z-dust-600);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
}

/* ── Differentiators Grid ──────────────────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.diff-card {
  background: white;
  border-radius: var(--z-radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s var(--z-transition);
}
.diff-card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: var(--z-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.diff-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--z-indigo-800);
}
.diff-card p {
  font-size: 0.875rem;
  color: var(--z-dust-600);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 768px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .diff-grid { grid-template-columns: 1fr; }
}
/* ── Animated Illustrations ────────────────────────────────────────────────── */
.abt-illust-hero, .abt-illust-question, .abt-illust-network, .abt-illust-community {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Illustration */
.abt-illust-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(224, 114, 86, 0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.abt-illust-hero-ring.ring-1 { width: 150px; height: 150px; border-color: rgba(224, 114, 86, 0.4); border-style: solid; }
.abt-illust-hero-ring.ring-2 { width: 250px; height: 250px; }
.abt-illust-hero-ring.ring-3 { width: 350px; height: 350px; border-color: rgba(145, 64, 232, 0.2); }

.abt-illust-hero-center {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(224, 114, 86, 0.3);
  z-index: 10;
}
.abt-illust-hero-z {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
}

.abt-illust-hero-card {
  position: absolute;
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--z-radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  z-index: 11;
  white-space: nowrap;
}
.abt-illust-hero-card.card-1 { top: 15%; left: 0%; }
.abt-illust-hero-card.card-2 { bottom: 20%; right: -5%; }
.abt-illust-hero-card.card-3 { top: 40%; right: 5%; }

.abt-illust-hero-dot {
  position: absolute;
  border-radius: 50%;
}
.abt-illust-hero-dot.dot-1 { width: 12px; height: 12px; background: var(--z-coral); top: 20%; right: 20%; }
.abt-illust-hero-dot.dot-2 { width: 8px; height: 8px; background: var(--z-violet); bottom: 15%; left: 25%; }
.abt-illust-hero-dot.dot-3 { width: 16px; height: 16px; background: var(--z-gold); top: 60%; left: 10%; }

/* Question Illustration */
.abt-illust-question {
  background: radial-gradient(circle, rgba(255,212,0,0.1) 0%, transparent 60%);
}
.abt-iq-bulb {
  font-size: 5rem;
  z-index: 10;
  position: relative;
  text-shadow: 0 0 40px rgba(255,212,0,0.4);
}
.abt-iq-marks {
  position: absolute;
  width: 100%;
  height: 100%;
}
.abt-iq-mark {
  position: absolute;
  font-weight: 800;
  color: var(--z-dust-200);
}
.abt-iq-mark.mark-1 { font-size: 3rem; top: 15%; left: 20%; color: var(--z-coral); opacity: 0.5; transform: rotate(-15deg); }
.abt-iq-mark.mark-2 { font-size: 4rem; top: 30%; right: 15%; color: var(--z-violet); opacity: 0.3; transform: rotate(20deg); }
.abt-iq-mark.mark-3 { font-size: 2.5rem; bottom: 25%; left: 30%; color: var(--z-gold); opacity: 0.6; transform: rotate(10deg); }
.abt-iq-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px dashed rgba(0,0,0,0.05);
  animation: spinSlow 20s linear infinite;
}

/* Network Illustration */
.abt-illust-network {
  background: radial-gradient(circle, rgba(145,64,232,0.05) 0%, transparent 70%);
}
.abt-net-globe {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--z-violet), var(--z-rose));
  position: relative;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(145,64,232,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.abt-net-globe-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  position: relative;
}
.abt-net-meridian, .abt-net-equator {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}
.abt-net-meridian.m-1 { width: 40%; height: 100%; left: 30%; top: 0; }
.abt-net-meridian.m-2 { width: 80%; height: 100%; left: 10%; top: 0; }
.abt-net-equator { width: 100%; height: 40%; top: 30%; left: 0; }
.abt-net-node {
  position: absolute;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  font-size: 1.25rem;
  z-index: 10;
}
.abt-net-node.node-1 { top: 15%; left: 15%; }
.abt-net-node.node-2 { top: 20%; right: 15%; }
.abt-net-node.node-3 { bottom: 15%; right: 15%; }
.abt-net-node.node-4 { bottom: 20%; left: 10%; }
.abt-net-node.node-5 { top: -5%; left: 45%; }
.abt-net-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Community Illustration */
.abt-illust-community {
  background: radial-gradient(circle, rgba(224,80,106,0.05) 0%, transparent 60%);
}
.abt-comm-heart {
  position: relative;
  z-index: 10;
}
.abt-comm-heart-inner {
  font-size: 4rem;
  position: relative;
  z-index: 2;
}
.abt-comm-heart-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(224,80,106,0.2);
  border-radius: 50%;
  animation: livePulse 2s ease-in-out infinite;
  z-index: 1;
}
.abt-comm-heart-pulse.pulse-2 {
  width: 140px;
  height: 140px;
  background: rgba(224,80,106,0.1);
  animation-delay: -1s;
}
.abt-comm-person {
  position: absolute;
  z-index: 5;
}
.abt-comm-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border: 2px solid white;
}
.abt-comm-person.p-1 { top: 10%; left: 40%; }
.abt-comm-person.p-2 { top: 25%; right: 15%; }
.abt-comm-person.p-3 { bottom: 30%; right: 10%; }
.abt-comm-person.p-4 { bottom: 10%; left: 40%; }
.abt-comm-person.p-5 { bottom: 25%; left: 15%; }
.abt-comm-person.p-6 { top: 30%; left: 10%; }

.abt-comm-badge {
  position: absolute;
  font-size: 1.5rem;
  z-index: 4;
}
.abt-comm-badge.badge-1 { top: 20%; left: 25%; }
.abt-comm-badge.badge-2 { bottom: 20%; right: 30%; }
.abt-comm-badge.badge-3 { top: 15%; right: 35%; }

/* ── Photo Gallery ─────────────────────────────────────────────────────────── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.photo-gallery-item {
  border-radius: var(--z-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
}
.photo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--z-transition);
}
.img-hover-zoom:hover img {
  transform: scale(1.06);
}
@media (max-width: 768px) {
  .photo-gallery { grid-template-columns: 1fr 1fr; }
  .photo-gallery-item:nth-child(3) { grid-column: span 2; aspect-ratio: 16 / 9; }
}
@media (max-width: 480px) {
  .photo-gallery { grid-template-columns: 1fr; }
  .photo-gallery-item:nth-child(3) { grid-column: span 1; aspect-ratio: 4 / 5; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   PRICING PAGE
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Pricing Hero ──────────────────────────────────────────────────────────── */
.prc-hero {
  position: relative;
  padding: 10rem 2rem 4rem;
  background: linear-gradient(160deg, #fffaf6 0%, #fef2ee 50%, #fff 100%);
  text-align: center;
  overflow: hidden;
}
.prc-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: var(--z-indigo-800);
}
.prc-hero-desc {
  font-size: 1.0625rem;
  color: var(--z-dust-600);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 768px) {
  .prc-hero { padding: 7rem 1.25rem 2rem; }
  .prc-hero-title { font-size: 2rem; }
}

/* ── Pricing Cards Grid ────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}
.pricing-card {
  background: white;
  border-radius: var(--z-radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--z-transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.pricing-card.featured {
  background: linear-gradient(160deg, var(--z-indigo-950), #1e0a25);
  border: 2px solid rgba(224,114,86,0.3);
  color: white;
  position: relative;
  transform: scale(1.03);
  z-index: 1;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1.25rem;
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-card-header { margin-bottom: 1.5rem; }
.pricing-tier-name {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  opacity: 0.7;
}
.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 0.25rem;
}
.pricing-card.featured .pricing-price {
  background: linear-gradient(135deg, var(--z-coral), var(--z-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-period {
  font-size: 0.875rem;
  opacity: 0.5;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}
.pricing-features li {
  padding: 0.625rem 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(128,128,128,0.08);
  color: var(--z-dust-600);
}
.pricing-card.featured .pricing-features li {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.06);
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
}

/* ── Comparison Table ──────────────────────────────────────────────────────── */
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--z-radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.comparison-table th,
.comparison-table td {
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
}
.comparison-table th {
  background: var(--z-dust-50);
  font-weight: 700;
  color: var(--z-indigo-800);
  border-bottom: 2px solid rgba(0,0,0,0.06);
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}
.comparison-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.comparison-table tbody tr:nth-child(even) {
  background: rgba(255,250,246,0.5);
}
.featured-col {
  background: rgba(224,114,86,0.04);
}
.comparison-table th.featured-col {
  background: rgba(224,114,86,0.1);
  color: var(--z-coral);
}
.check-yes {
  color: #22c55e;
  font-weight: 700;
  font-size: 1.125rem;
}
.check-no {
  color: var(--z-dust-200);
  font-size: 1rem;
}

@media (max-width: 700px) {
  .comparison-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .comparison-table {
    min-width: 0;
    background: transparent;
  }
  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }
  .comparison-table thead {
    display: none;
  }
  .comparison-table tbody {
    display: grid;
    gap: 1rem;
  }
  .comparison-table tbody tr {
    padding: 1rem;
    border: 1px solid rgba(224,114,86,0.14);
    border-radius: 1.5rem;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 18px 40px rgba(52,43,39,0.08);
  }
  .comparison-table tbody tr:nth-child(even) {
    background: rgba(255,250,246,0.96);
  }
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0;
    font-size: 0.9375rem;
  }
  .comparison-table tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: right;
    border-bottom: 1px solid rgba(52,43,39,0.08);
    background: transparent;
  }
  .comparison-table tbody td:first-child {
    display: block;
    padding-top: 0;
    padding-bottom: 0.85rem;
    margin-bottom: 0.1rem;
    text-align: left;
    font-weight: 800;
    color: var(--z-indigo-800);
    border-bottom-color: rgba(224,114,86,0.16);
  }
  .comparison-table tbody td:not(:first-child)::before {
    content: attr(data-label);
    font-weight: 800;
    color: var(--z-dust-600);
  }
  .comparison-table tbody td:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .comparison-table tbody td.featured-col {
    color: var(--z-coral);
    background: transparent;
  }
}

/* ── Included Cards ────────────────────────────────────────────────────────── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.included-card {
  background: white;
  border-radius: var(--z-radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s var(--z-transition);
}
.included-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.included-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--z-indigo-800);
}
.included-card p {
  font-size: 0.875rem;
  color: var(--z-dust-600);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 768px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .included-grid { grid-template-columns: 1fr; }
}

/* ── Upgrade Grid ──────────────────────────────────────────────────────────── */
.upgrade-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.upgrade-card {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  background: white;
  border-radius: var(--z-radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s var(--z-transition);
}
.upgrade-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.upgrade-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--z-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.upgrade-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 0.375rem;
  color: var(--z-indigo-800);
}
.upgrade-card p {
  font-size: 0.9375rem;
  color: var(--z-dust-600);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .upgrade-grid { grid-template-columns: 1fr; }
  .upgrade-card { flex-direction: column; text-align: center; align-items: center; }
}

/* Public landing consistency pass */
.landing-page .section-label,
.landing-page .section-eyebrow {
    display: none !important;
}

.landing-page .nav-links {
    gap: 1.55rem;
}

.landing-page .how-steps::before {
    top: 32px !important;
}

.landing-page .public-courses-main {
    background: white;
    padding: 0 1.5rem 8rem;
}

.landing-page .public-course-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 0 1.75rem;
}

.landing-page .public-filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(224, 114, 86, 0.18);
    border-radius: 999px;
    background: rgba(255, 250, 246, 0.94);
    color: #7e6a5e;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(52, 43, 39, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.landing-page .public-filter-chip:hover,
.landing-page .public-filter-chip.is-active {
    transform: translateY(-2px);
    color: white;
    background: linear-gradient(135deg, var(--z-coral), var(--z-rose));
    box-shadow: 0 16px 34px rgba(224, 114, 86, 0.22);
}

.landing-page .courses-grid,
.landing-page .public-course-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.landing-page .public-course-grid {
    align-items: start;
}

.landing-page .course-card,
.landing-page .public-course-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(52, 43, 39, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    color: inherit;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(52, 43, 39, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.landing-page .public-course-card {
    align-self: start;
    height: auto;
}

.landing-page .course-card:hover,
.landing-page .public-course-card:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 114, 86, 0.22);
    box-shadow: 0 24px 56px rgba(52, 43, 39, 0.13);
}

.landing-page .course-card-img {
    position: relative;
    min-height: 172px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.landing-page .course-card-badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 1;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84) !important;
    color: #7b4b91 !important;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(52, 43, 39, 0.12);
    backdrop-filter: blur(12px);
}

.landing-page .course-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.2rem;
}

.landing-page .public-course-grid .course-card-body {
    flex: 0 0 auto;
}

.landing-page .course-card-title {
    margin: 0 0 0.55rem;
    color: #2f384d;
    font-size: 1.03rem;
    line-height: 1.25;
}

.landing-page .course-card-desc {
    flex: 1;
    margin: 0 0 1.1rem;
    color: #6f7a8a;
    font-size: 0.88rem;
    line-height: 1.55;
}

.landing-page .public-course-grid .course-card-desc {
    flex: 0 0 auto;
}

.landing-page .course-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    color: #8b95a6;
    font-size: 0.76rem;
    font-weight: 700;
}

.landing-page .course-card-action {
    margin-left: auto;
    color: var(--z-coral);
}

.landing-page .public-empty-state {
    grid-column: 1 / -1;
    padding: 4rem 1.5rem;
    text-align: center;
    color: var(--z-dust-600);
}

.landing-page .about-highlights-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2.25rem;
}

.landing-page .about-highlights-row .topic-card,
.landing-page .webinar-feature,
.landing-page .wbn-feature-card,
.landing-page .upgrade-card {
    display: block;
    min-width: 0;
    padding: 2rem;
    border: 1px solid rgba(52, 43, 39, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    text-align: center;
    box-shadow: 0 18px 48px rgba(52, 43, 39, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.landing-page .about-highlights-row .topic-card:hover,
.landing-page .webinar-feature:hover,
.landing-page .wbn-feature-card:hover,
.landing-page .upgrade-card:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 114, 86, 0.18);
    box-shadow: 0 26px 58px rgba(52, 43, 39, 0.12);
}

.landing-page .about-highlights-row .topic-card-icon,
.landing-page .webinar-feature-icon,
.landing-page .wbn-feature-icon,
.landing-page .upgrade-card-icon,
.landing-page .diff-card-icon {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0 auto 1.05rem;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none;
    font-size: 2.35rem;
    line-height: 1;
}

.landing-page .about-highlights-row h4,
.landing-page .webinar-feature h4,
.landing-page .wbn-feature-card h4,
.landing-page .upgrade-card h4 {
    margin: 0 0 0.6rem;
    color: #2f384d;
    font-size: 1.02rem;
    line-height: 1.25;
}

.landing-page .about-highlights-row p,
.landing-page .webinar-feature p,
.landing-page .wbn-feature-card p,
.landing-page .upgrade-card p {
    margin: 0;
    color: #6f7a8a;
    font-size: 0.92rem;
    line-height: 1.6;
}

.landing-page .webinar-features,
.landing-page .wbn-feature-grid,
.landing-page .upgrade-grid {
    gap: 1.15rem;
}

.landing-page .wbn-feature-grid,
.landing-page .upgrade-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1200px;
}

.landing-page .pricing-grid,
.landing-page .pricing-card {
    overflow: visible !important;
}

@media (max-width: 1024px) {
    .landing-page .courses-grid,
    .landing-page .public-course-grid,
    .landing-page .wbn-feature-grid,
    .landing-page .upgrade-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-page .about-highlights-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .landing-page .public-courses-main {
        padding-inline: 1rem;
    }

    .landing-page .courses-grid,
    .landing-page .public-course-grid,
    .landing-page .wbn-feature-grid,
    .landing-page .upgrade-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .course-card-img {
        min-height: 150px;
    }

    .landing-page .course-card-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.45rem;
    }

    .landing-page .course-card-action {
        margin-left: 0;
    }

    .landing-page .public-course-grid.reveal-stagger > * {
        animation: mobileCourseReveal 0.6s var(--z-transition) both;
        opacity: 1;
        transform: none;
    }

    .landing-page .public-course-grid.reveal-stagger > *:nth-child(1) { animation-delay: 0.02s; }
    .landing-page .public-course-grid.reveal-stagger > *:nth-child(2) { animation-delay: 0.08s; }
    .landing-page .public-course-grid.reveal-stagger > *:nth-child(3) { animation-delay: 0.14s; }
    .landing-page .public-course-grid.reveal-stagger > *:nth-child(4) { animation-delay: 0.2s; }
    .landing-page .public-course-grid.reveal-stagger > *:nth-child(5) { animation-delay: 0.26s; }
    .landing-page .public-course-grid.reveal-stagger > *:nth-child(n+6) { animation-delay: 0.32s; }

    .landing-page .about-highlights-row .topic-card,
    .landing-page .webinar-feature,
    .landing-page .wbn-feature-card,
    .landing-page .upgrade-card {
        padding: 1.5rem;
    }
}

@keyframes mobileCourseReveal {
    from {
        opacity: 0;
        transform: translateY(1.5rem) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Latest public landing polish */
.landing-page .hero-stats > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.landing-page .hero-float-card .float-icon {
    width: auto;
    height: auto;
    min-width: 2.4rem;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none;
    line-height: 1;
}

.landing-page .hero-float-card.card-1 .float-icon {
    font-size: 2rem;
}

.landing-page .hero-float-card.card-2 .float-icon {
    color: #9140e8;
    font-size: 37px;
}

.landing-page .hero-float-card.card-3 .float-icon {
    font-size: 30px;
}

.landing-page .webinar-showcase {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}

.landing-page .webinar-visual {
    width: min(100%, 980px);
    margin: 0 auto;
}

.landing-page .webinar-screen {
    min-height: clamp(360px, 44vw, 520px);
}

.landing-page .webinar-preview-img {
    height: clamp(220px, 31vw, 360px);
}

.landing-page .webinar-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.landing-page .how-steps {
    --how-step-circle-size: 56px;
}

.landing-page .how-steps::before {
    top: calc(var(--how-step-circle-size) / 2) !important;
    transform: translateY(-50%);
}

.landing-page .how-step-number {
    width: var(--how-step-circle-size);
    height: var(--how-step-circle-size);
}

.landing-page .pricing-section {
    overflow: visible !important;
}

@media (max-width: 900px) {
    .landing-page .webinar-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .landing-page .hero-stats {
        justify-content: center;
        gap: 1.25rem;
    }

    .landing-page .webinar-screen {
        min-height: 320px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BOOK-CLUB FOCUS: coming-soon teasers, footer tags, book club page, join form
   Added when the platform was refocused on the landing pages + book club.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── "Coming Soon" badge ──────────────────────────────────────────────────── */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--z-violet-dark);
  background: var(--z-violet-light);
  border: 1px solid rgba(145, 64, 232, 0.18);
}
.coming-soon-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--z-violet);
  box-shadow: 0 0 0 0 rgba(145, 64, 232, 0.45);
  animation: comingSoonPulse 1.8s ease-in-out infinite;
}
@keyframes comingSoonPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(145, 64, 232, 0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(145, 64, 232, 0); }
}

/* ── Coming-soon section (replaces webinars/courses showcases on home) ─────── */
.soon-section { background: var(--z-dust-50); }
.soon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 880px;
  margin: 0 auto;
}
.soon-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--z-dust-200);
  border-radius: 1.75rem;
  box-shadow: 0 24px 60px -38px rgba(52, 43, 39, 0.45);
  overflow: hidden;
  text-align: left;
}
/* illustration tile */
.soon-card-art {
  position: relative;
  height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.soon-card-art.art-courses { background: linear-gradient(150deg, #fff1ea 0%, #fde2d8 100%); }
.soon-card-art.art-webinars { background: linear-gradient(150deg, #f4ecfd 0%, #fbe4ec 100%); }
.soon-card-art svg {
  width: 220px;
  max-width: 72%;
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(110, 53, 44, 0.18));
  transition: transform 0.4s var(--z-transition);
}
.soon-card:hover .soon-card-art svg { transform: translateY(-6px) scale(1.03); }
.soon-card-art .coming-soon-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-color: rgba(145, 64, 232, 0.12);
}
/* body */
.soon-card-body { padding: 1.75rem; }
.soon-card-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--z-indigo-800);
  margin: 0 0 0.6rem;
}
.soon-card-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--z-dust-600);
  margin: 0;
}
.soon-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.soon-card-tags span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--z-dust-700, #5e4e46);
  background: var(--z-dust-100);
  border: 1px solid var(--z-dust-200);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
}

/* ── Footer "coming soon" tags ────────────────────────────────────────────── */
.footer-soon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.375rem 0;
}
.footer-soon-tag {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--z-gold);
  background: rgba(255, 212, 0, 0.12);
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
}

/* ── Book-club HERO: a living open book with a turning page ───────────────── */
.bch-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  perspective: 1300px;
}
.bch-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.28), rgba(224, 114, 86, 0.12) 45%, transparent 70%);
  animation: bchGlow 6s ease-in-out infinite;
}
@keyframes bchGlow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(1.1); opacity: 1; }
}

.bch-book {
  position: relative;
  width: 300px;
  height: 210px;
  transform-style: preserve-3d;
  animation: bchFloat 6s ease-in-out infinite;
}
@keyframes bchFloat {
  0%, 100% { transform: rotateX(16deg) rotateZ(-2deg) translateY(0); }
  50%      { transform: rotateX(16deg) rotateZ(-2deg) translateY(-14px); }
}

/* hardcover peeking behind the pages */
.bch-cover {
  position: absolute;
  inset: -9px -12px -16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose) 55%, var(--z-violet));
  transform: translateZ(-14px);
  box-shadow: 0 38px 55px -28px rgba(168, 85, 68, 0.6);
}

/* resting pages */
.bch-page {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(180deg, #fffdf9, #fff3ea);
}
.bch-page.left {
  left: 0;
  border-radius: 8px 2px 2px 8px;
  transform-origin: right center;
  transform: rotateY(9deg);
  box-shadow: inset -18px 0 26px -18px rgba(168, 85, 68, 0.3);
}
.bch-page.right {
  right: 0;
  border-radius: 2px 8px 8px 2px;
  transform-origin: left center;
  transform: rotateY(-9deg);
  box-shadow: inset 18px 0 26px -18px rgba(168, 85, 68, 0.3);
}

/* page text lines */
.bch-lines {
  position: absolute;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.bch-lines.left  { left: 22px; right: 28px; }
.bch-lines.right { left: 28px; right: 22px; align-items: flex-end; }
.bch-line {
  height: 5px;
  border-radius: 3px;
  background: rgba(126, 106, 94, 0.18);
}

/* the turning page */
.bch-flip {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(180deg, #fffefb, #fdeee6);
  border-radius: 2px 8px 8px 2px;
  transform-origin: left center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  box-shadow: 0 12px 22px -12px rgba(168, 85, 68, 0.45);
  animation: bchFlip 5s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}
@keyframes bchFlip {
  0%, 16%   { transform: rotateY(0deg); }
  46%, 56%  { transform: rotateY(-156deg); }
  86%, 100% { transform: rotateY(0deg); }
}

/* centre gutter shadow */
.bch-spine {
  position: absolute;
  top: 0;
  left: 50%;
  width: 18px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(110, 53, 44, 0.16), transparent 40%, transparent 60%, rgba(110, 53, 44, 0.16));
}

/* bookmark ribbon */
.bch-ribbon {
  position: absolute;
  top: -8px;
  left: 64%;
  width: 16px;
  height: 92px;
  background: linear-gradient(180deg, var(--z-gold), var(--z-gold-dark));
  border-radius: 0 0 2px 2px;
  box-shadow: 0 6px 12px -6px rgba(204, 154, 0, 0.7);
}
.bch-ribbon::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid var(--z-gold-dark);
}

/* floating story stickers */
.bch-sticker {
  position: absolute;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border-radius: 50%;
  background: white;
  box-shadow: 0 16px 32px -14px rgba(168, 85, 68, 0.5);
}
.bch-sticker.st-1 { top: 4%;   left: 6%;  }
.bch-sticker.st-2 { top: 38%;  right: 0%; }
.bch-sticker.st-3 { bottom: 6%; left: 12%; }

/* sparkles */
.bch-spark {
  position: absolute;
  color: var(--z-gold);
  font-size: 1.1rem;
  opacity: 0.9;
  animation: comingSoonPulse 2.6s ease-in-out infinite;
}
.bch-spark.sp-1 { top: 16%; right: 16%; color: var(--z-violet); }
.bch-spark.sp-2 { bottom: 26%; right: 22%; animation-delay: -0.9s; }
.bch-spark.sp-3 { top: 60%; left: 4%; color: var(--z-rose); animation-delay: -1.7s; }

@media (max-width: 860px) {
  .bch-stage { min-height: 340px; }
  .bch-book { width: 250px; height: 176px; }
}

/* ── Book-club page: animated calendar illustration ───────────────────────── */
.bc-cal-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.bc-cal {
  position: relative;
  width: 280px;
  max-width: 80%;
  filter: drop-shadow(0 30px 45px rgba(168, 85, 68, 0.22));
}
.bc-cal svg { display: block; width: 100%; height: auto; }

/* floating status tag */
.bc-soon-tag {
  position: absolute;
  top: 30px;
  right: -8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--z-violet-dark);
  background: white;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 14px 30px -14px rgba(168, 85, 68, 0.5);
  animation: bchFloat2 5s ease-in-out infinite;
}
@keyframes bchFloat2 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* sparkles */
.bc-cozy-spark {
  position: absolute;
  font-size: 1.1rem;
  color: var(--z-gold);
  opacity: 0.9;
  animation: comingSoonPulse 2.6s ease-in-out infinite;
}
.bc-cozy-spark.sp-1 { top: 12%; left: 14%; color: var(--z-violet); }
.bc-cozy-spark.sp-2 { bottom: 16%; right: 16%; animation-delay: -0.9s; }
.bc-cozy-spark.sp-3 { top: 54%; left: 6%; color: var(--z-rose); animation-delay: -1.7s; }

/* ── Join page ────────────────────────────────────────────────────────────── */
/* Section 1: welcome hero + perk cards */
.join-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 3.5rem;
  text-align: center;
  background: linear-gradient(160deg, var(--z-dust-50) 0%, #fff3ea 45%, #fef4f5 100%);
}
.join-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}
.join-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--z-indigo-800);
  margin: 0.5rem 0 1.1rem;
}
.join-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--z-dust-600);
  max-width: 620px;
  margin: 0 auto 2.75rem;
}
.join-perk-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.join-perk-card {
  background: white;
  border: 1px solid var(--z-dust-200);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 48px -30px rgba(52, 43, 39, 0.4);
}
.join-perk-illus {
  width: 84px;
  height: 84px;
  margin: 0 auto 1.1rem;
}
.join-perk-illus svg { display: block; width: 100%; height: 100%; }
.join-perk-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--z-indigo-800);
  margin: 0 0 0.5rem;
}
.join-perk-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--z-dust-600);
  margin: 0;
}

/* Section 2: the form */
.join-form-section {
  padding: 4.5rem 2rem 5.5rem;
  background: white;
}
.join-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.join-card {
  background: white;
  border: 1px solid var(--z-dust-200);
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: 0 40px 80px -45px rgba(52, 43, 39, 0.5);
}
.join-card-head { margin-bottom: 1.75rem; }
.join-card-head h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--z-indigo-800);
  margin: 0 0 0.4rem;
}
.join-card-head p { font-size: 0.875rem; color: var(--z-dust-600); margin: 0; }
.join-req { color: var(--z-rose); }

.join-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--z-indigo-800);
  letter-spacing: 0.01em;
}
.form-input,
.form-textarea {
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--z-indigo-800);
  background: var(--z-dust-50);
  border: 1.5px solid var(--z-dust-200);
  border-radius: 0.85rem;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-textarea { resize: vertical; min-height: 92px; }
.form-input::placeholder,
.form-textarea::placeholder { color: #b6a597; }
.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: white;
  border-color: var(--z-coral);
  box-shadow: 0 0 0 4px rgba(224, 114, 86, 0.14);
}
.form-input.has-error { border-color: var(--z-rose); background: var(--z-rose-light); }
.form-error { margin: 0; font-size: 0.8rem; font-weight: 600; color: var(--z-rose); }
.join-submit { width: 100%; justify-content: center; margin-top: 0.25rem; }
.join-fineprint {
  margin: 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--z-dust-600);
}

/* Join success state */
.join-success { text-align: center; padding: 1rem 0.5rem; }
.join-success-badge {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--z-coral), var(--z-rose));
  box-shadow: 0 18px 40px -18px rgba(224, 80, 106, 0.7);
  animation: scaleIn 0.5s ease;
}
.join-success h2 {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--z-indigo-800);
  margin: 0 0 0.75rem;
}
.join-success p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--z-dust-600);
  margin: 0 auto 1.75rem;
  max-width: 380px;
}
.join-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

@media (max-width: 860px) {
  .join-perk-cards { grid-template-columns: repeat(2, 1fr); max-width: 520px; }
  .soon-grid { grid-template-columns: 1fr; max-width: 460px; }
}
@media (max-width: 640px) {
  .join-hero { padding: 6.5rem 1.25rem 2.5rem; }
  .join-form-section { padding: 3rem 1.25rem 4rem; }
  /* one full-width card per row on phones, original vertical layout */
  .join-perk-cards { grid-template-columns: 1fr; gap: 1rem; max-width: 460px; }
  .join-card { padding: 1.75rem 1.35rem; }
  .form-row { grid-template-columns: 1fr; }
}
