/* ══════════════════════════════════════════════════════════════════════════════
   Zahralicious 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: 1000;
  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;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.open {
  opacity: 1;
}
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--z-dust-50);
  z-index: 1000;
  padding: 5rem 2rem 2rem;
  transition: right 0.4s var(--z-transition);
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
  overflow-y: auto;
}
.mobile-nav-drawer.open { right: 0; }
.mobile-nav-drawer .nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-nav-drawer .nav-cta-btn {
  display: block;
  text-align: center;
  margin: 1.5rem 0 0 0;
  padding: 0.875rem 1.5rem;
}


/* ── 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 > *: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; }
  .testimonial-card { flex: 0 0 85%; min-width: 280px; }
  .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: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--z-coral), var(--z-rose), var(--z-violet));
}
.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;
}
.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; }
}

/* ── 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;
}

/* ── 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; }
}
