/* ═══════════════════════════════════════════════════════════════
   CONSTIPATION MASTERCLASS — GLASSY MODERN REDESIGN
   Glassmorphism · Mesh Gradients · Smooth Animations
   Optimized Mobile View & Responsive Layout
═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────── */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

:root {
  /* Primary Palette */
  --sage: #4A7C6F;
  --sage-light: #6DA08F;
  --sage-dark: #2F5248;
  --sage-glow: rgba(74, 124, 111, 0.35);

  /* Accents */
  --amber: #D4874A;
  --amber-warm: #E8A56A;
  --amber-glow: rgba(212, 135, 74, 0.3);
  --mint: #6ee7b7;
  --parrot-green: #A7FC00;
  --parrot-dark: #8BD400;
  --mint-glow: rgba(110, 231, 183, 0.2);

  /* Neutrals */
  --slate: #1E2B2A;
  --slate-light: #2a3d3b;
  --text-body: #3A4A48;
  --text-muted: #6B7F7C;
  --white: #FFFFFF;
  --ivory: #f7faf9;
  --cream: #f0f5f3;
  --mist: rgba(74, 124, 111, 0.08);

  /* Glass Tokens */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-shadow: 0 8px 32px rgba(31, 38, 46, 0.08);
  --glass-blur: blur(18px);

  --glass-dark-bg: rgba(30, 43, 42, 0.6);
  --glass-dark-border: rgba(255, 255, 255, 0.1);
  --glass-dark-blur: blur(24px);

  /* Border */
  --border: rgba(74, 124, 111, 0.12);
  --border-glow: rgba(74, 124, 111, 0.3);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(165deg, #e8f0ed 0%, #f5f0eb 30%, #eef5f2 60%, #f0ebe5 100%);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Animated mesh gradient overlay on body */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(74, 124, 111, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(212, 135, 74, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(110, 231, 183, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
}

section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

/* ─── DYNAMIC ATMospheric BACKGROUND ──────────────── */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(145deg, #f0f7f5 0%, #fdfbf9 50%, #f4f1ee 100%);
  z-index: -2;
}

.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: meshMove 20s infinite alternate ease-in-out;
}

.bg-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--sage);
  top: -200px;
  right: -100px;
  animation-duration: 25s;
}

.bg-orb-2 {
  width: 500px;
  height: 500px;
  background: var(--amber);
  bottom: -150px;
  left: -100px;
  animation-delay: -5s;
}

.bg-orb-3 {
  width: 400px;
  height: 400px;
  background: var(--parrot-green);
  top: 40%;
  left: 30%;
  opacity: 0.08;
  animation-duration: 30s;
}

@keyframes meshMove {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50% { transform: translate(5%, 10%) scale(1.1) rotate(5deg); }
  100% { transform: translate(-5%, 5%) scale(1) rotate(-5deg); }
}

/* ─── FLOATING ENGINE ────────────────────────────── */
.float-card {
  animation: levitate 6s infinite ease-in-out;
}

@keyframes levitate {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 2s; }

/* ─── SECTION REFINEMENTS ────────────────────────── */
.premium-gradient-bg {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(74, 124, 111, 0.03) 50%, rgba(255,255,255,0) 100%);
}
.hero::after,
.mastery-section::after,
.learn-section::after,
.pricing-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ─── GLOBAL GLASSMORPHIC BUTTONS ────────────────── */
.btn-hero-primary,
.btn-enroll,
.btn-parrot {
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate) !important;
  background: linear-gradient(135deg, var(--parrot-green) 0%, #96e000 100%);
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(167, 252, 0, 0.3);
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
  z-index: 10;
  cursor: pointer;
}

.btn-hero-primary::after,
.btn-enroll::after,
.btn-parrot::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 100%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: rotate(45deg);
  transition: all 0.7s ease;
  pointer-events: none;
}

.btn-hero-primary:hover,
.btn-enroll:hover,
.btn-parrot:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 45px rgba(167, 252, 0, 0.45);
  color: var(--slate) !important;
}

.btn-hero-primary:hover::after,
.btn-enroll:hover::after,
.btn-parrot:hover::after {
  left: 150%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--parrot-green), #96e000);
  color: var(--slate) !important;
  border-radius: 50px;
  padding: 10px 24px !important;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .5px;
  transition: all .4s var(--ease-spring);
  box-shadow: 0 4px 18px rgba(167, 252, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 30px rgba(167, 252, 0, 0.35);
}

@keyframes btnPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.btn-hero-primary {
  animation: btnPulse 3s infinite !important;
}



/* ─── GLASSY NAVBAR ──────────────────────────────── */
.navbar {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 14px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(74, 124, 111, 0.1);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sage-dark) !important;
  letter-spacing: -0.3px;
}

.navbar-brand span {
  color: var(--amber);
}

.nav-link {
  transition: all 0.3s var(--ease-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: all 0.3s var(--ease-out-expo);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 60%;
}



/* ─── HERO SECTION ───────────────────────────────── */
.hero {
  min-height: 100vh;
  background: 
    radial-gradient(at 0% 0%, rgba(167, 252, 0, 0.07) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(74, 124, 111, 0.1) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(212, 135, 74, 0.05) 0px, transparent 50%),
    #ffffff;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Animated gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 252, 0, 0.1) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat 15s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 135, 74, 0.07) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  animation: orbFloat 20s ease-in-out infinite reverse;
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -20px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 30px) scale(0.95);
  }

  75% {
    transform: translate(15px, 15px) scale(1.03);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.masterclass-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 15px;
  line-height: 1;
  display: block;
  opacity: 0.8;
}

.hero-title-main {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--slate);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-title-main span {
  font-family: 'Playfair Display', serif;
  color: var(--sage);
  display: inline-block;
  font-style: italic;
  font-weight: 600;
  position: relative;
  letter-spacing: 0;
}

.hero-title-main span::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(74, 124, 111, 0.15);
  z-index: -1;
}

.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  color: var(--text-body);
  max-width: 580px;
  margin-bottom: 32px;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-card-row {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-bottom: 25px;
  flex-wrap: nowrap;
}

.hero-date-info {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 12px 20px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doc-tag-card {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--slate);
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all 0.4s var(--ease-out-expo);
}

.doc-tag-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(31, 38, 46, 0.12);
}

.doc-tag-card strong {
  display: block;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  color: var(--sage-dark);
}

.doc-tag-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-trust .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin: 4px;
  transition: all 0.3s var(--ease-smooth);
}

.hero-trust .trust-badge:hover {
  background: rgba(74, 124, 111, 0.1);
  transform: translateY(-2px);
}

.organic-mask {
  width: 560px;
  height: 620px;
  border-radius: 60% 40% 70% 30% / 40% 50% 60% 50%;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    20px 20px 60px rgba(0, 0, 0, 0.06),
    -5px -5px 30px rgba(255, 255, 255, 0.8),
    inset 0 0 30px rgba(255, 255, 255, 0.3);
  border: 8px solid rgba(255, 255, 255, 0.6);
  transition: all 1s var(--ease-out-expo);
  position: relative;
  z-index: 2;
}


.hero-image-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
}

.organic-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(5%) contrast(1.05);
  transition: all 0.8s var(--ease-out-expo);
}

.organic-mask:hover {
  border-radius: 40% 60% 30% 70% / 50% 40% 50% 60%;
  transform: scale(1.03);
  box-shadow:
    25px 25px 80px rgba(0, 0, 0, 0.08),
    -5px -5px 30px rgba(255, 255, 255, 0.8),
    inset 0 0 40px rgba(255, 255, 255, 0.4);
}

.organic-mask:hover img {
  transform: scale(1.05);
}
.visual-stack,
.constipation-frame {
  position: relative;
  display: inline-block;
}

.glass-tag {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sage);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--glass-border);
  z-index: 4;
  transition: all 0.4s var(--ease-out-expo);
}

.expert-reveal-card {
  display: none !important;
  position: absolute;
  top: 40px;
  left: -20px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px;
  border-radius: 20px;
  display: none;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--glass-border);
  z-index: 5;
  transition: all 0.4s var(--ease-out-expo);
}

.doc-mini-avatar {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  overflow: hidden;
  background: var(--sage);
}

.doc-mini-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-mini-text {
  display: flex;
  flex-direction: column;
}

.doc-mini-text strong {
  font-size: 0.85rem;
  color: var(--slate);
}

.doc-mini-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── SECTION UTILITIES ──────────────────────────── */
.section-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), transparent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--slate);
  line-height: 1.2;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 12px;
}

.divider {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--amber));
  border-radius: 4px;
  margin: 16px 0;
  transition: width 0.5s var(--ease-out-expo);
}

/* ─── INSTRUCTOR HIGHLIGHT ───────────────────────── */
.instructor-highlight {
  position: relative;
  z-index: 1;
}

.instructor-main-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instructor-shape-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 124, 111, 0.08), rgba(212, 135, 74, 0.05));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  transform: scale(1.1);
  animation: morphShape 8s ease-in-out infinite;
}

@keyframes morphShape {

  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
}

.instructor-img {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-height: 500px;
  object-fit: cover;
  transition: all 0.6s var(--ease-out-expo);
}

.exp-badge {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--sage-dark);
  padding: 10px 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 3;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease-out-expo);
}

.instructor-perks {
  list-style: none;
  padding: 0;
}

.instructor-perks li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  color: var(--slate);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.3s var(--ease-smooth);
}

.instructor-perks li:hover {
  background: var(--mist);
  transform: translateX(4px);
}

.instructor-perks li i {
  color: var(--sage);
  font-size: 1.1rem;
}

.stat-item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 18px;
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease-out-expo);
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
}

.registration-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mist);
  color: var(--sage);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ─── MASTERY SECTION ────────────────────────────── */
.mastery-section {
  background: linear-gradient(170deg, var(--ivory) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.mastery-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 124, 111, 0.06) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation: orbFloat 18s ease-in-out infinite;
  pointer-events: none;
}

/* ─── GLASS HIGHLIGHT CARDS ──────────────────────── */
.highlight-card {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  z-index: 1;
  height: 100%;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--amber), var(--mint));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.highlight-card:hover::before {
  transform: scaleX(1);
  animation: shimmerGradient 2s linear infinite;
}

@keyframes shimmerGradient {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.highlight-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-glow);
  box-shadow:
    0 30px 80px rgba(74, 124, 111, 0.12),
    0 0 0 1px var(--border-glow);
}

.highlight-icon-box {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--mist), rgba(110, 231, 183, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.5s var(--ease-spring);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.highlight-card:hover .highlight-icon-box {
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: white;
  transform: rotate(8deg) scale(1.1);
  box-shadow: 0 8px 24px var(--sage-glow);
}

.secondary-feature-card {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: var(--glass-shadow);
  height: 100%;
}

.secondary-feature-card:hover {
  background: rgba(74, 124, 111, 0.06);
  transform: translateX(8px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 40px rgba(74, 124, 111, 0.1);
}

.secondary-feature-card .num {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--sage-glow);
  transition: all 0.4s var(--ease-spring);
}

/* ─── ABOUT SECTION ──────────────────────────────── */
.about-card {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 24px;
  padding: 48px 44px;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin: 5px 4px;
  transition: all 0.4s var(--ease-out-expo);
}

/* ─── INSTRUCTOR SECTION ─────────────────────────── */
.instructor-card {
  background: white;
  border-radius: 32px;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: 0 15px 50px rgba(74, 124, 111, 0.05);
  position: relative;
  overflow: hidden;
}

.instructor-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at top right, rgba(167, 252, 0, 0.04), transparent 70%);
  pointer-events: none;
}

.instructor-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--mist);
}

.instructor-avatar {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 10px 25px var(--sage-glow);
  color: white;
}

.instructor-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--slate);
  margin-bottom: 4px;
}

.instructor-cred {
  font-size: 1.05rem;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 6px;
}

.instructor-clinic {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.credential-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mist);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate);
  margin: 4px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.credential-tag:hover {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
  transform: translateY(-2px);
}

.credential-tag i {
  font-size: 0.8rem;
  color: var(--sage);
}

.credential-tag:hover i {
  color: white;
}

.instructor-quote {
  background: var(--ivory);
  padding: 32px;
  border-radius: 24px;
  border-left: 4px solid var(--sage);
  position: relative;
  margin-top: 32px;
}

.instructor-quote::after {
  content: '\201D';
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--sage);
  opacity: 0.1;
  line-height: 1;
}

/* ─── PROBLEMS SECTION ───────────────────────────── */
.problems-section {
  background: linear-gradient(170deg, var(--cream) 0%, var(--ivory) 100%);
}

.symptom-card {
  background: white;
  border-radius: 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--glass-border);
  transition: all 0.5s var(--ease-out-expo);
  height: 100%;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.symptom-icon {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}

.symptom-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s var(--ease-out-expo);
}

.symptom-card-content {
  padding: 24px 20px 32px;
  width: 100%;
}

.empathy-banner {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  border-radius: 24px;
  padding: 36px 44px;
  color: var(--white);
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--sage-glow);
}

/* ─── LEARN SECTION ──────────────────────────────── */
.learn-card {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 22px;
  padding: 28px 26px;
  border: 1px solid var(--glass-border);
  transition: all 0.5s var(--ease-out-expo);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--glass-shadow);
}

.learn-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(74, 124, 111, 0.15), rgba(74, 124, 111, 0.05));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ─── WHY SECTION ────────────────────────────────── */
.why-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 22px;
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  transition: all 0.5s var(--ease-out-expo);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.why-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--sage);
  border: 1px solid var(--glass-border);
}

/* ─── TESTIMONIALS ───────────────────────────────── */
.testi-card {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: 22px;
  padding: 32px 28px;
  border: 1px solid var(--glass-border);
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--glass-shadow);
  transition: all 0.5s var(--ease-out-expo);
}

.testi-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .2;
  position: absolute;
  top: 12px;
  left: 24px;
}

.testi-text {
  font-size: 1.05rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.stars {
  color: #ffb400;
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.testi-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--white);
}

.testi-author strong {
  display: block;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.3;
}

.testi-author span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── WHO SHOULD JOIN GRID ───────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.who-item {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.who-item:hover {
  transform: translateY(-6px);
  background: white;
  box-shadow: 0 15px 40px rgba(74, 124, 111, 0.1);
  border-color: var(--sage-light);
}

.who-item i {
  font-size: 1.4rem;
  color: var(--sage);
  background: rgba(74, 124, 111, 0.08);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.who-item:hover i {
  background: var(--parrot-green);
  color: var(--slate);
  transform: rotate(10deg) scale(1.1);
}

.who-item span {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.4;
}

.who-item strong {
  color: var(--slate);
  display: block;
}

/* ─── PRICING ────────────────────────────────────── */
.pricing-section {
  background: linear-gradient(160deg, var(--sage-dark) 0%, #1a3d35 60%, #142e28 100%);
  color: white;
}

.pricing-card {
  background: var(--glass-dark-bg);
  backdrop-filter: var(--glass-dark-blur);
  -webkit-backdrop-filter: var(--glass-dark-blur);
  border: 1px solid var(--glass-dark-border);
  border-radius: 28px;
  padding: 52px 44px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.btn-enroll,
.btn-parrot {
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate) !important;
  background: linear-gradient(135deg, var(--parrot-green) 0%, #96e000 100%);
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(167, 252, 0, 0.3);
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
  z-index: 1;
}

.btn-enroll::after,
.btn-parrot::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 100%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg);
  transition: all 0.7s ease;
}

.btn-enroll:hover,
.btn-parrot:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 45px rgba(167, 252, 0, 0.45);
  color: var(--slate) !important;
}

.btn-enroll:hover::after,
.btn-parrot:hover::after {
  left: 150%;
}

.include-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
  display: inline-block;
}

.include-list li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}

.include-list li i {
  color: var(--parrot-green);
  font-size: 0.9rem;
}

.pricing-card .btn-enroll {
  padding: 12px 30px;
  font-size: 0.9rem;
  width: auto;
  min-width: 240px;
  margin: 10px auto;
}

.price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin: 20px 0;
  background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── FAQ ────────────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--glass-border) !important;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ─── FINAL CTA SECTION ──────────────────────────── */
.cta-box {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 32px;
  padding: 72px 48px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 80px rgba(30, 43, 42, 0.06);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: 'Playfair Display', serif;
  color: var(--slate);
  margin-bottom: 16px;
  text-align: center;
}

.cta-box p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-box .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--sage-dark);
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: linear-gradient(180deg, var(--slate) 0%, #151f1e 100%);
  color: rgba(255, 255, 255, .7);
  padding: 56px 0 32px;
  position: relative;
  z-index: 1;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 24px;
  margin-top: 36px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

/* ─── STICKY MOBILE CTA ─────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 24px;
  z-index: 10000;
  display: flex !important;
  pointer-events: none;
}

.sticky-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 100% !important;
  padding: 0 40px !important;
}

.sticky-cta>* {
  pointer-events: auto;
}

.cta-countdown-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cta-countdown-wrapper.bg-warning {
  background: linear-gradient(135deg, #ff9800, #f44336);
}

.cta-countdown-wrapper.bg-warning .t-val,
.cta-countdown-wrapper.bg-warning .t-label,
.cta-countdown-wrapper.bg-warning .timer-eyebrow {
  color: #fff !important;
}

.timer-eyebrow {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--sage-dark);
}

.cta-timer {
  display: flex;
  gap: 6px;
}

.timer-block {
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.t-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.t-label {
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.8;
}

.sticky-cta .btn-enroll {
  width: auto;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--parrot-green), var(--parrot-dark));
  color: var(--slate) !important;
  box-shadow: 0 10px 30px rgba(167, 252, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s var(--ease-out-expo);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.sticky-cta .btn-enroll::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 100%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.7s ease;
}

.sticky-cta .btn-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(167, 252, 0, 0.35);
}

.sticky-cta .btn-enroll:hover::after {
  left: 150%;
}

/* ─── RESPONSIVE BREAKPOINTS ────────────────────── */
/* ─── PREMIUM RESPONSIVE REFRESH ────────────────── */

/* Tablet & Large Mobile (991px and down) */
@media (max-width: 991px) {
  section {
    padding: 80px 0;
  }

  .hero {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
  }

  .hero-content {
    margin-bottom: 50px;
  }

  .hero-title-main {
    font-size: 3.2rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-card-row {
    justify-content: center;
  }

  .hero-action-area {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .organic-mask {
    width: 420px;
    height: 480px;
    margin: 0 auto;
  }

  .sticky-cta .container {
    padding: 0 30px !important;
  }
}

/* Medium Mobile (768px and down) */
@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2.2rem;
    line-height: 1.25;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-title-main {
    font-size: 2.6rem !important;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-card-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hero-card {
    flex: 0 0 calc(50% - 6px);
    padding: 15px !important;
  }

  .instructor-img {
    max-height: 400px;
    margin: 0 auto;
    display: block;
  }

  .instructor-details-card {
    text-align: center;
  }

  .instructor-perks li {
    justify-content: center;
  }

  .instructor-footer {
    text-align: center;
  }

  .stat-item {
    text-align: center;
  }

  .pricing-card {
    padding: 40px 24px;
  }
}

/* Small Mobile (480px and down) */
@media (max-width: 480px) {
  section {
    padding: 65px 0;
  }

  .section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }

  .section-title {
    font-size: 1.9rem;
    letter-spacing: -0.01em;
  }

  .divider {
    width: 40px !important;
  }

  .hero {
    padding-top: 110px;
    padding-bottom: 40px;
  }

  .hero-title-main {
    font-size: 2.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 20px;
  }

  .hero-title-main span::after {
    height: 6px;
    bottom: 4px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 28px;
    color: var(--text-muted);
  }

  .hero-card-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px !important;
    margin-bottom: 30px;
  }

  .hero-card {
    width: 100%;
    flex: none;
    padding: 16px 12px !important;
    border-radius: 18px !important;
    background: var(--glass-bg-strong) !important;
    border: 1px solid rgba(74, 124, 111, 0.1) !important;
    text-align: left;
  }

  .hero-card i {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--sage);
  }

  .hero-card strong {
    font-size: 0.85rem !important;
    line-height: 1.2;
    display: block;
    margin-top: 4px;
  }

  .hero-card span {
    font-size: 0.7rem !important;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .btn-hero-primary {
    width: 100%;
    padding: 18px !important;
    font-size: 1.05rem !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 30px rgba(167, 252, 0, 0.35) !important;
  }

  .hero-trust {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-top: 25px !important;
  }

  .hero-trust .trust-badge {
    width: auto;
    font-size: 0.78rem;
    padding: 6px 15px;
    background: transparent;
    border: none;
  }

  .organic-mask {
    width: 100%;
    max-width: 340px;
    height: 380px;
    border-width: 6px;
    box-shadow: 20px 20px 50px rgba(0,0,0,0.06);
  }

  .glass-tag {
    font-size: 0.75rem;
    padding: 8px 16px;
    right: 10px;
    bottom: 10px;
  }

  /* Improved Section Aesthetics on Mobile */
  .highlight-card, .symptom-card, .learn-card, .why-card {
    padding: 24px !important;
    border-radius: 24px !important;
    margin-bottom: 15px;
  }

  .symptom-icon {
    height: 160px !important;
  }

  .instructor-card {
    border-radius: 24px !important;
    padding: 20px !important;
  }

  .instructor-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .instructor-quote {
    padding: 24px !important;
    border-radius: 20px !important;
    margin-top: 30px;
  }

  .pricing-card {
    border-radius: 32px !important;
    padding: 48px 24px !important;
  }

  .price-tag {
    font-size: 3.5rem !important;
  }

  .cta-box {
    padding: 50px 24px !important;
    border-radius: 32px !important;
  }

  .cta-box h2 {
    font-size: 1.8rem !important;
  }

  /* PREMIUM STICKY CTA FOR MOBILE */
  .sticky-cta {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    padding: 0 15px calc(15px + env(safe-area-inset-bottom, 0px)) 15px !important;
    box-shadow: none !important;
  }

  .sticky-cta .container {
    background: var(--glass-dark-bg);
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px !important;
    border-radius: 24px;
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.25);
  }

  .cta-countdown-wrapper {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.08) !important;
    padding: 8px 12px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .cta-timer {
    gap: 4px !important;
  }

  .t-val {
    font-size: 0.85rem !important;
  }

  .timer-eyebrow {
    font-size: 0.5rem !important;
    opacity: 0.6;
  }

  .sticky-cta .btn-enroll {
    flex: 1;
    font-size: 0.82rem !important;
    padding: 14px 10px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, var(--parrot-green), #96e000) !important;
    color: var(--slate) !important;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(167, 252, 0, 0.3) !important;
  }

  /* Centering for mobile visual mask */
  .hero-mobile-visual .visual-stack {
    display: flex;
    justify-content: center;
    position: relative;
  }

  .hero-mobile-visual .organic-mask {
    margin: 0 auto;
  }
}

/* Utility for extra small phones */
@media (max-width: 360px) {
  .hero-title-main {
    font-size: 1.8rem !important;
  }
  
  .sticky-cta .btn-enroll {
    font-size: 0.75rem !important;
  }
}

/* --- Global Utilities --- */
.text-sage {
  color: var(--sage);
}

.bg-cream {
  background: var(--cream);
}

.rounded-2xl {
  border-radius: 20px;
}

.shadow-premium {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}