/* ─────────────────────────────────────────────
   FISH! Philosophy  ·  Static Build
   Bootstrap 5.3.3 + Plain CSS
   ───────────────────────────────────────────── */

/* ── Brand tokens ── */
:root {
  --purple:       rgba(118,40,139,1);
  --purple-hov:   rgba(90,20,115,1);
  --purple-10:    rgba(118,40,139,.10);
  --purple-18:    rgba(118,40,139,.18);
  --purple-25:    rgba(118,40,139,.25);
  --purple-35:    rgba(118,40,139,.35);
  --deeper:       #3A0A50;
  --orange:       #F78F20;
  --orange-light: #FAAC61;
  --green:        #9BCD65;
  --amber:        #E8C200;
  --ink:          #1F1A2B;
  --soft:         #6B7280;
  --grad:         linear-gradient(135deg,#76288B,#500F6A);
  --card-bg:      rgba(255,255,255,.97);
  --card-border:  1px solid rgba(118,40,139,.35);
  --card-shadow:  0 4px 24px rgba(0,0,0,.14);
  --card-radius:  14px;
}

html {
  scroll-padding-top: 86px;  /* updated by JS when header height changes */
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: #212529;
  background: #fff;
}

/* ── Fish watermark background ── */
.fish-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('https://fishphilosophy.com/wp-content/uploads/Fish-Background.png') center/cover no-repeat;
  opacity: .65;
  pointer-events: none;
}
/* In iframe context, fixed descendants break scroll. JS adds this class. */
.in-iframe .fish-bg { position: absolute; }
.in-iframe #scroll-progress { display: none !important; }


/* ══════════════════════════════════════════
   COMMON COMPONENTS
══════════════════════════════════════════ */

/* ── Cards ── */
.fish-card {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fish-card-pop {
  background: var(--card-bg);
  border: 2px solid var(--purple);
  border-radius: var(--card-radius);
  box-shadow: 0 8px 40px rgba(118,40,139,.22);
  overflow: hidden;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.fish-card:hover, .fish-card-pop:hover,
.practice-card-inner:hover {
  transform: translateY(-5px);
}
.practice-card-inner {
  transition: transform .2s ease;
}

/* Shimmer accent line at top of cards */
.card-accent {
  height: 3px;
  background: linear-gradient(90deg,transparent,rgba(118,40,139,.85),rgba(195,105,225,1),rgba(118,40,139,.85),transparent);
  flex-shrink: 0;
}
.card-accent-orange {
  height: 3px;
  background: linear-gradient(90deg,transparent,rgba(247,143,32,.9),rgba(255,200,100,.95),rgba(247,143,32,.9),transparent);
  flex-shrink: 0;
}

/* ── Eyebrow pills ── */
.eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(247,143,32,.12);
  color: var(--orange);
  border: 1px solid rgba(247,143,32,.35);
  border-radius: 100px;
  padding: .35em 1.1em;
}
.eyebrow-purple {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--purple-10);
  color: var(--purple);
  border: 1px solid var(--purple-25);
  border-radius: 100px;
  padding: .35em 1.1em;
}
.eyebrow-light {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(247,143,32,.15);
  border: 1px solid rgba(247,143,32,.35);
  color: var(--orange-light);
  border-radius: 100px;
  padding: .35em 1.1em;
}

/* ── Section headings ── */
.section-title {
  font-style: italic;
  font-weight: 800;
  color: var(--deeper);
  line-height: 1.1;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

/* ── Buttons ── */
.btn-fish {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  padding: .65rem 1.5rem;
  font-size: .9rem;
  transition: background .2s, opacity .2s;
  line-height: 1.4;
}
.btn-fish-primary {
  background: var(--purple);
  color: #fff;
}
.btn-fish-primary:hover, .btn-fish-primary:focus {
  background: var(--purple-hov);
  color: #fff;
}
.btn-fish-ghost {
  background: var(--purple-10);
  color: var(--purple);
  border: 1px solid var(--purple-25);
}
.btn-fish-ghost:hover, .btn-fish-ghost:focus {
  background: var(--purple-18);
  color: var(--purple);
}
.btn-fish-grad {
  background: var(--grad);
  color: #fff;
}
.btn-fish-grad:hover, .btn-fish-grad:focus {
  opacity: .9;
  color: #fff;
}
.btn-fish-outline-white {
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-fish-outline-white:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.btn-fish-white {
  background: #fff;
  color: var(--purple);
}
.btn-fish-white:hover {
  opacity: .92;
  color: var(--purple);
}
.btn-fish-orange-ghost {
  background: rgba(247,143,32,.15);
  color: var(--orange-light);
  border: 1px solid rgba(247,143,32,.42);
}
.btn-fish-orange-ghost:hover {
  background: rgba(247,143,32,.28);
  color: var(--orange-light);
}
.btn-lg-hero {
  padding: .85rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
}

/* ── Offering card CTA link ── */
.offering-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
  color: var(--purple);
  border: 1.5px solid var(--purple-35);
  background: transparent;
  transition: background .18s;
}
.offering-cta:hover { background: var(--purple-10); color: var(--purple); }
.offering-cta-pop {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.25rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
  color: #fff;
  background: var(--grad);
  transition: opacity .18s;
}
.offering-cta-pop:hover { opacity: .9; color: #fff; }


/* ══════════════════════════════════════════
   BANNER
══════════════════════════════════════════ */

#site-banner {
  background: rgba(118,40,139,1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.92);
  padding: .55rem 1rem;
  font-size: .875rem;
  text-align: center;
  position: relative;
  padding-right:5%;
}
#site-banner a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
#site-banner a:hover { opacity: .85; }
#banner-close {
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.7);
  cursor: pointer; font-size: 1.2rem; line-height: 1; padding: 0 .25rem; opacity: .7;
}
#banner-close:hover { opacity: 1; color: #fff; }

/* ── Mobile nav collapse — solid background so page content doesn't show through ── */
#mobileMenu {
  background: rgba(255,255,255,.98);
  box-shadow: 0 8px 20px rgba(0,0,0,.10);
  border-radius: 0 0 12px 12px;
  margin: 0 -12px;          /* bleed to container edges */
  padding: 0 12px;
}


/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */

#mainNav {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(118,40,139,.08);
  box-shadow: none;
  transition: background .3s, border-color .3s, box-shadow .3s;
  height: 70px;
}
#mainNav.scrolled {
  background: rgba(255,255,255,.98);
  border-bottom-color: var(--purple-35);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}
#mainNav .navbar-brand img { height: 44px; width: auto; }

/* Nav links */
#mainNav .nav-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink) !important;
  border-radius: 8px;
  padding: .45rem 1rem !important;
  transition: color .15s, background .15s;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active,
#mainNav .nav-link.show {
  color: var(--purple) !important;
  background: var(--purple-10);
}
#mainNav .navbar-toggler { border: none; outline: none; box-shadow: none; }
#mainNav .navbar-toggler:focus { box-shadow: none; }

/* ── Mega menu ── */
@media (min-width: 992px) {
  .mega-dropdown {
    position: static !important; /* so fixed child positions against viewport */
  }
  .mega-menu {
    position: fixed !important;
    top: 70px !important;     /* updated by JS when banner shows */
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    width: min(960px, 96vw) !important;
    max-width: 960px !important;
    transform: none !important;
    border-top: none !important;
    border-radius: 0 0 18px 18px !important;
    overflow: hidden !important;
    border: 1px solid rgba(118,40,139,.35) !important;
    box-shadow: 0 8px 40px rgba(0,0,0,.15) !important;
    padding: 0 !important;
    background: rgba(255,255,255) !important;
    /* animate */
    transform-origin: top center;
    animation: megaSlideIn .18s ease;
  }
  @keyframes megaSlideIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .mega-feature {
    background: var(--grad);
    border-right: 1px solid rgba(255,255,255,.10);
    min-width: 210px;
    width: 210px;
  }
  .mega-col {
    border-left: 1px solid rgba(118,40,139,.10);
  }
}

.mega-link {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  text-decoration: none;
  padding: .4rem .25rem;
  border-radius: 8px;
  transition: background .15s;
}
.mega-link:hover { background: var(--purple-10); }
.mega-link-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--purple-10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--purple);
  font-size: .9rem;
}
.mega-link-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 2px;
}
.mega-link-sub {
  font-size: .75rem;
  color: var(--soft);
  line-height: 1.4;
}
.mega-col-heading {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}


/* ══════════════════════════════════════════
   SCROLL PROGRESS (desktop only, left rail)
══════════════════════════════════════════ */

#scroll-progress {
  display: none;
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
}
@media (min-width: 992px) {
  #scroll-progress { display: block; }
}
.sp-track {
  width: 4px;
  background: rgba(247,143,32,.18);
  border-radius: 2px;
  position: relative;
}
.sp-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: var(--orange-light);
  border-radius: inherit;
  transition: height .08s linear;
}
.sp-thumb {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  max-width: 50px;
  display: block;
  transition: top .08s linear;
}


/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */

.hero-section {
  padding-top: 4.5rem;
  padding-bottom: 3rem;
  position: relative;
}
@media (min-width: 992px) {
  .hero-section { max-height: 800px; overflow: hidden; }
}

.hero-title {
  font-style: italic;
  font-weight: 800;
  color: var(--deeper);
  line-height: 1.05;
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
}
.hero-title em { color: var(--orange); font-style: italic; }

.hero-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #705d79;
  max-width: 480px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: .5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.scroll-hint-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--soft);
}
.scroll-hint-bar {
  width: 1px;
  height: 24px;
  border-radius: 9999px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollHintBob 1.8s ease-in-out infinite;
}
@keyframes scrollHintBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}


/* ══════════════════════════════════════════
   LOGO SCROLLER
══════════════════════════════════════════ */

.logo-scroller-wrap {
  overflow: hidden;
  padding: 1.25rem 0;
  background: rgba(255,255,255,.92);
  border-top: 1px solid rgba(118,40,139,.10);
  border-bottom: 1px solid rgba(118,40,139,.10);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
  white-space: nowrap;
}
.marquee-logo-text {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #9CA3AF;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(247,143,32,.5);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}


/* ══════════════════════════════════════════
   STORY SECTION
══════════════════════════════════════════ */

.story-section {
  background: rgba(255,252,246,.92);
  padding: 6rem 0;
}
.story-card {
  background: linear-gradient(135deg, var(--deeper) 0%, #500F6A 100%);
  border: 1px solid rgba(195,105,225,.25);
  box-shadow: 0 8px 48px rgba(58,10,80,.45);
  border-radius: 14px;
  overflow: hidden;
}
.story-video-pane {
  min-height: 280px;
  position: relative;
}
.story-video-pane iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.story-text-pane {
  padding: 2.5rem;
}
@media (min-width: 768px) {
  .story-text-pane { padding: 3.5rem; }
}


/* ══════════════════════════════════════════
   FOUR PRACTICES
══════════════════════════════════════════ */

.practices-section {
  background: rgba(244,236,248,.55);
  padding: 6rem 0;
}

/* Icon badge positioned half-outside card top */
.practice-card-outer {
  padding-top: 26px; /* half icon height */
}
.practice-card-inner {
  position: relative;
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: visible;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.practice-badge {
  position: absolute;
  top: -26px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--card-bg);
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  z-index: 2;
  font-size: 1.3rem;
  color: rgba(255,255,255,.97);
}
.practice-card-body {
  padding: 2.5rem 1.75rem 1.75rem;
  flex: 1;
}
.practice-card-name {
  font-style: italic;
  font-weight: 800;
  color: var(--deeper);
  font-size: 1.2rem;
  margin-bottom: .75rem;
}
.practice-card-desc {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--soft);
  margin: 0;
}


/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */

.hiw-section {
  background: rgba(255,255,255,.94);
  padding: 6rem 0;
}
.hiw-timeline {
  position: relative;
}
.hiw-connector {
  display: none;
}
@media (min-width: 992px) {
  .hiw-connector {
    display: block;
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,#76288B,#F78F20,#9BCD65,#E8C200,#76288B);
    opacity: .25;
    pointer-events: none;
  }
}
.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hiw-num {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  font-style: italic;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}
.hiw-card {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card-bg);
  border: var(--card-border);
  box-shadow: var(--card-shadow);
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.hiw-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.hiw-label {
  font-style: italic;
  font-weight: 800;
  color: var(--deeper);
  font-size: 1rem;
  margin-bottom: .5rem;
}
.hiw-desc {
  font-size: .8rem;
  line-height: 1.6;
  color: var(--soft);
  margin: 0;
}


/* ══════════════════════════════════════════
   OFFERINGS
══════════════════════════════════════════ */

.offerings-section {
  background: rgba(246,244,250,.92);
  padding: 6rem 0;
}
.offering-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}
.offering-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .4rem;
  text-align: center;
}
.offering-title {
  font-style: italic;
  font-weight: 800;
  color: var(--deeper);
  font-size: 1.35rem;
  margin-bottom: .5rem;
  text-align: center;
}
.offering-price {
  font-weight: 700;
  font-size: .9rem;
  color: var(--purple);
  margin-bottom: 1rem;
}
.offering-desc {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--soft);
  flex: 1;
}


/* ══════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════ */

.stats-section {
  background: var(--grad);
  padding: 4rem 0;
}
.stat-number {
  font-style: italic;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
}


/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */

.testimonials-section {
  background: rgba(255,255,255,.93);
  padding: 6rem 0;
}

/* Override Bootstrap carousel controls */
.testimonials-section .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(118,40,139,.2);
  border: none;
  opacity: 1;
  transition: width .2s, background .2s;
  margin: 0 4px;
}
.testimonials-section .carousel-indicators .active {
  background: var(--purple);
  width: 24px;
  border-radius: 4px;
}

.tcard {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.tcard-quote-bg {
  position: absolute;
  top: 1.25rem;
  left: 1.75rem;
  font-size: 5rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  color: rgba(118,40,139,.08);
  pointer-events: none;
  user-select: none;
}
.tcard-stars { color: var(--orange); margin-bottom: 1rem; padding-top: 1.25rem; }
.tcard-quote {
  font-size: .875rem;
  line-height: 1.7;
  font-style: italic;
  color: #374151;
  margin-bottom: 1.5rem;
}
.tcard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  flex-shrink: 0;
}
.tcard-name {
  font-weight: 700;
  font-size: .875rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.tcard-role {
  font-size: .75rem;
  color: var(--soft);
}

/* Custom carousel dot indicators */
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(118,40,139,.2);
  border: none;
  cursor: pointer;
  transition: width .2s, background .2s, border-radius .2s;
  padding: 0;
  flex-shrink: 0;
}
.t-dot-active, .t-dot:hover {
  width: 24px;
  background: var(--purple);
  border-radius: 4px;
}


/* ══════════════════════════════════════════
   PACKAGES
══════════════════════════════════════════ */

.packages-section {
  background: rgba(255,252,246,.92);
  padding: 6rem 0;
}
.pkg-header {
  padding: 1.75rem;
  border-bottom: 1px solid rgba(118,40,139,.10);
}
.pkg-header-pop {
  padding: 1.75rem;
  background: var(--grad);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.pkg-badge-pop {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255,255,255,.2);
  color: #fff;
  border-radius: 100px;
  padding: .2em .85em;
  margin-bottom: .75rem;
}
.pkg-tier-name {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.pkg-price {
  font-style: italic;
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
}
.pkg-period {
  font-size: .875rem;
  font-weight: 400;
}
.pkg-desc {
  font-size: .875rem;
  margin-top: .5rem;
}
.pkg-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pkg-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex: 1;
}
.pkg-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .875rem;
  color: #374151;
  margin-bottom: .75rem;
}
.pkg-check {
  color: var(--purple);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .05rem;
}
.pkg-cta-link {
  display: block;
  text-align: center;
  padding: .75rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
  transition: background .18s, opacity .18s;
  color: var(--purple);
  border: 1.5px solid var(--purple-35);
  background: transparent;
}
.pkg-cta-link:hover { background: var(--purple-10); color: var(--purple); }
.pkg-cta-link-pop {
  display: block;
  text-align: center;
  padding: .75rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
  transition: opacity .18s;
  color: #fff;
  background: var(--grad);
}
.pkg-cta-link-pop:hover { opacity: .9; color: #fff; }


/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */

.faq-section {
  background: rgba(246,244,250,.92);
  padding: 6rem 0;
}

/* Custom accordion override */
.faq-section .accordion-item {
  background: var(--card-bg) !important;
  border: var(--card-border) !important;
  border-radius: var(--card-radius) !important;
  box-shadow: var(--card-shadow) !important;
  overflow: hidden;
  margin-bottom: .75rem;
}
.faq-section .accordion-item + .accordion-item { margin-top: 0; }
.faq-section .accordion-button {
  background: transparent !important;
  color: var(--ink) !important;
  font-weight: 700 !important;
  font-size: .9rem;
  box-shadow: none !important;
  padding: 1.25rem 1.5rem;
}
.faq-section .accordion-button::after {
  filter: none;
}
.faq-section .accordion-button:not(.collapsed) {
  color: var(--purple) !important;
}
.faq-section .accordion-body {
  padding: 0 1.5rem 1.25rem;
  font-size: .875rem;
  line-height: 1.7;
  color: #374151;
}


/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */

.cta-section {
  background: var(--grad);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-title {
  font-style: italic;
  font-weight: 800;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.cta-body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin: 0 auto 2.25rem;
}


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */

.site-footer {
  background: rgba(255,255,255,.97);
  border-top: 1px solid rgba(118,40,139,.12);
  padding: 3.5rem 0 0;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 1.25rem; }
.footer-tagline {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--soft);
  max-width: 240px;
  margin-bottom: 1.25rem;
}
.footer-social a {
  font-size: .75rem;
  font-weight: 600;
  padding: .35rem .75rem;
  border-radius: 8px;
  text-decoration: none;
  background: var(--purple-10);
  color: var(--purple);
  border: 1px solid var(--purple-35);
  transition: background .15s;
}
.footer-social a:hover { background: var(--purple-18); }
.footer-col-head {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}
.footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col-links li + li { margin-top: .65rem; }
.footer-col-links a {
  font-size: .875rem;
  color: var(--soft);
  text-decoration: none;
  transition: color .15s;
}
.footer-col-links a:hover { color: var(--purple); }
.footer-bottom {
  border-top: 1px solid rgba(118,40,139,.10);
  padding: 1.5rem 0;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copy { font-size: .75rem; color: #9CA3AF; margin: 0; }
.footer-link { font-size: .75rem; font-weight: 600; color: var(--purple); text-decoration: none; }
.footer-link:hover { opacity: .8; color: var(--purple); }


/* ══════════════════════════════════════════════════════════
   MOBILE NAV DRAWER
══════════════════════════════════════════════════════════ */

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(58,10,80,.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 288px;
  background: #fff;
  box-shadow: 6px 0 32px rgba(0,0,0,.18);
  z-index: 210;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.32,0,.67,0);
  will-change: transform;
}
.mobile-drawer.open {
  transform: translateX(0);
  transition: transform .3s cubic-bezier(.33,1,.68,1);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  height: 70px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(118,40,139,.12);
}

.mobile-drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: rgba(118,40,139,.08);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
  transition: background .15s;
}
.mobile-drawer-close:hover { background: rgba(118,40,139,.14); }

.mobile-drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: .75rem;
}

.mobile-nav-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  border: none;
  border-radius: 12px;
  background: transparent;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background .15s, color .15s;
}
.mobile-nav-btn:hover,
.mobile-nav-btn.active {
  background: rgba(118,40,139,.08);
  color: var(--purple);
}

.mobile-programs-chevron {
  font-size: .8rem;
  color: var(--soft);
  transition: transform .2s ease, color .15s;
}
.mobile-nav-btn.active .mobile-programs-chevron {
  transform: rotate(180deg);
  color: var(--purple);
}

.mobile-programs-sub {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .22s ease, opacity .2s ease;
  padding: 0 .5rem;
}
.mobile-programs-sub.open {
  max-height: 400px;
  opacity: 1;
}

.mobile-sub-link {
  display: block;
  padding: .625rem 1rem;
  font-size: .875rem;
  color: var(--soft);
  text-decoration: none;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.mobile-sub-link:hover {
  color: var(--purple);
  background: rgba(118,40,139,.05);
}

.mobile-nav-link {
  display: block;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-radius: 12px;
  transition: color .15s, background .15s;
}
.mobile-nav-link:hover {
  color: var(--purple);
  background: rgba(118,40,139,.08);
}

.mobile-drawer-cta {
  padding: 1.25rem 1rem;
  flex-shrink: 0;
  border-top: 1px solid rgba(118,40,139,.10);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.mobile-cta-login {
  display: block;
  text-align: center;
  padding: .625rem;
  font-size: .875rem;
  font-weight: 600;
  border-radius: 12px;
  background: rgba(118,40,139,.08);
  color: var(--purple);
  border: 1px solid rgba(118,40,139,.35);
  text-decoration: none;
  transition: background .15s;
}
.mobile-cta-login:hover { background: rgba(118,40,139,.14); color: var(--purple); }

.mobile-cta-get-started {
  display: block;
  text-align: center;
  padding: .625rem;
  font-size: .875rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg,#76288B,#500F6A);
  color: #fff;
  text-decoration: none;
  transition: opacity .15s;
}
.mobile-cta-get-started:hover { opacity: .9; color: #fff; }
