/* --------------------------------------------------
   1. RESET + GLOBAL
-------------------------------------------------- */

/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Global body styles */
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f5f5f5;
  min-height: 100vh;
  color: #111111;
  overflow-x: hidden;
  position: relative;
}

/* Subtle animated background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 0, 0, 0.04) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  z-index: -1;
}

/* Background float animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(-10px) rotate(240deg);
  }
}


/* --------------------------------------------------
   2. HEADER (DESKTOP + MOBILE)
-------------------------------------------------- */

/* Shared header wrapper */
.header {
  position: relative;
  z-index: 10;
}

/* Desktop header visible by default */
.desktop-header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
}

/* Mobile header and drawer hidden by default on desktop */
.mobile-header,
.side-drawer,
.backdrop {
  display: none;
}

/* Desktop header main container */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo block */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

/* Logo image – constrained height so header stays compact */
.logo-img {
  height: 48px;
  width: auto;
  border-radius: 999px;
  object-fit: cover;
}

/* Logo text block */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.logo-title {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, rgb(79, 70, 229), rgb(15, 23, 42)) text;
}

.logo-sub {
  font-size: 0.78rem;
  color: rgba(75, 85, 99, 0.9);
}

/* Right-aligned header actions (Login / Trial) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile header shell (only enabled in mobile media query) */
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  padding: 0.4rem 0.6rem;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-bottom-color 0.2s ease;
}

/* Mobile header appearance once scrolled */
.mobile-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

/* Mobile header inner layout */
.mobile-header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center; /* centers title */
  gap: 0.75rem;
  min-height: 36px;
}

/* Mobile menu icon button */
.icon-button {
  border: none;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.icon-button .material-icons {
  font-size: 22px;
  color: #111827;
}

/* Mobile header title (only visible after scroll) */
.mobile-header-title {
  flex: 1;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.mobile-header.scrolled .mobile-header-title {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* --------------------------------------------------
   3. MOBILE SIDE DRAWER
-------------------------------------------------- */

/* Drawer panel */
.side-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -280px;
  width: 260px;
  background: #ffffff;
  box-shadow: 8px 0 30px rgba(15, 23, 42, 0.22);
  z-index: 1100;
  padding: 0.9rem 0.9rem 1.5rem;
  transition: left 0.25s ease-out;
  display: flex;
  flex-direction: column;
}

/* Drawer open state */
.side-drawer.open {
  left: 0;
}

/* Drawer header row */
.side-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

/* Drawer user (logo + text) */
.drawer-user {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.drawer-user img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.drawer-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
}

.drawer-sub {
  font-size: 0.7rem;
  color: #6b7280;
}

/* Drawer body links + buttons */
.side-drawer-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.drawer-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  text-decoration: none;
  color: #111827;
  font-size: 0.8rem;
}

.drawer-btn.primary {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #ffffff;
  border: none;
}

.drawer-btn .material-icons {
  font-size: 18px;
}

.drawer-link {
  padding: 0.4rem 0.1rem;
  font-size: 0.82rem;
  color: #374151;
  text-decoration: none;
}

.drawer-link:hover {
  color: #4f46e5;
}

/* Backdrop behind drawer */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
  z-index: 1050;
}

.backdrop.show {
  opacity: 1;
  pointer-events: auto;
}


/* --------------------------------------------------
   4. BUTTONS (SHARED)
-------------------------------------------------- */

.btn {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #312e81);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(49, 46, 129, 0.32);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(49, 46, 129, 0.5);
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #111827;
}

.btn-secondary:hover {
  background: #f3f4f6;
}

/* Pricing button variants */
.btn-pricing-basic {
  background: linear-gradient(135deg, #4f46e5, #312e81);
}

.btn-pricing-featured {
  background: #fbbf24;
  color: #111827;
}

.btn-pricing-featured:hover {
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.55);
}

.btn-pricing-intensive {
  background: linear-gradient(135deg, #10172a, #101729);
  color: #fff;
}

.btn-pricing-intensive:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(49, 46, 129, 0.5);
}


/* --------------------------------------------------
   5. HERO SECTION
-------------------------------------------------- */

/* Main hero wrapper */
.main-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.2rem 1.25rem 3rem;
}

/* Centered hero content */
.hero-inner {
  max-width: 900px;
  text-align: center;
  animation: fadeInUp 0.9s ease-out;
}

/* Hero entrance animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero banner image */
.hero-banner {
  width: 100%;
  margin: 0 auto 1.2rem;
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

/* Small pill above title */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  background: rgba(243, 244, 246, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.85);
  color: #312e81;
  /* font-size: 0.76rem; */
  margin-bottom: 0.8rem;
}

/* Hero main title */
.hero-title {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  background: linear-gradient(135deg, #4f46e5, #0f172a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero subtitle */
.hero-subtitle {
  font-size: clamp(0.98rem, 1.6vw, 1.15rem);
  color: rgba(55, 65, 81, 0.98);
  line-height: 1.7;
  max-width: 710px;
  margin: 0 auto 1.6rem;
}

/* Hero helper note */
.hero-note {
  /* font-size: 0.82rem; */
  color: rgba(107, 114, 128, 0.95);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hero buttons stack on mobile */
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.hero-buttons .btn {
  width: 100%;
  max-width: 320px;
}


/* --------------------------------------------------
   6. GENERIC SECTION STYLES
-------------------------------------------------- */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 1.25rem 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, #4f46e5, #111827);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  /* font-size: 0.94rem; */
  color: rgba(55, 65, 81, 0.98);
  max-width: 650px;
  margin: 0 auto 1.8rem;
  line-height: 1.6;
}


/* --------------------------------------------------
   7. OPENING STORY SECTION
-------------------------------------------------- */

/* Layout with text + video */
.section-opening .opening-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

/* Opening text body */
.opening-text .opening-body {
  /* font-size: 0.9rem; */
  color: rgba(55, 65, 81, 0.98);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Prompt suggestions card */
.prompt-box {
  margin-top: 1rem;
  padding: 1rem 1rem 0.9rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.prompt-box-label {
  /* font-size: 0.78rem; */
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(107, 114, 128, 0.95);
  margin-bottom: 0.5rem;
}

.prompt-box ul {
  list-style: disc;
  padding-left: 1.2rem;
  /* font-size: 0.88rem; */
  color: rgba(55, 65, 81, 0.98);
}

.prompt-box-note {
  margin-top: 0.6rem;
  /* font-size: 0.8rem; */
  color: rgba(55, 65, 81, 0.98);
}

/* Video container */
.opening-video {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Video placeholder gradient */
.video-placeholder {
  width: 100%;
  border-radius: 24px;
  background: radial-gradient(circle at 20% 0, #ede9fe 0, #312e81 60%, #020617 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.1rem 0;
  position: relative;
  overflow: hidden;
}

.video-icon {
  font-size: 2.7rem;
  color: #fefce8;
  text-shadow: 0 10px 26px rgba(15, 23, 42, 0.7);
}

.video-quote {
  /* font-size: 0.86rem; */
  color: rgba(55, 65, 81, 0.98);
  font-style: italic;
  line-height: 1.6;
}

.video-attrib {
  /* font-size: 0.8rem; */
  color: rgba(107, 114, 128, 0.95);
}


/* --------------------------------------------------
   8. FEATURES / BENEFITS GRID
-------------------------------------------------- */

/* Features grid layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: stretch;
}

/* Feature card block */
.feature-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 1.5rem 1.3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
}

/* Feature icon wrapper */
.feature-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 0, #e0e7ff 0, #4f46e5 40%, #312e81 100%);
  box-shadow: 0 10px 22px rgba(49, 46, 129, 0.35);
  margin-bottom: 0.2rem;
  flex-shrink: 0;
  overflow: hidden;
}

.feature-icon span {
  position: absolute;
  display: block;
}

/* Work / Money orbit */
.pulse-orbit {
  width: 80%;
  height: 80%;
  border-radius: 999px;
  border: 2px solid rgba(239, 246, 255, 0.55);
  animation: orbit-spin 4s linear infinite;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #facc15;
  box-shadow: 0 0 16px rgba(250, 204, 21, 0.9);
  animation: pulse 1.8s ease-in-out infinite;
}

/* Relationships heart */
.heart-orbit {
  width: 78%;
  height: 78%;
  border-radius: 18px;
  border: 2px dashed rgba(248, 250, 252, 0.7);
  animation: orbit-spin 6s linear infinite;
}

.heart-core {
  width: 18px;
  height: 18px;
  background: #f97316;
  border-radius: 14px 14px 12px 12px;
  transform: rotate(45deg);
  box-shadow: 0 0 18px rgba(248, 113, 22, 0.9);
}

/* Emotions spark */
.spark-orbit {
  width: 70%;
  height: 70%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(248, 250, 252, 0.18) 0, transparent 60%);
  animation: shimmer 2.6s ease-in-out infinite;
}

.spark-core {
  width: 8px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #38bdf8, #22c55e);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.9);
  transform: rotate(-18deg);
}

/* Icon animations */
@keyframes orbit-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

/* Feature text */
.feature-title {
  /* font-size: 1rem; */
  font-weight: 600;
  color: #111827;
}

.feature-desc {
  /* font-size: 0.9rem; */
  color: rgba(75, 85, 99, 0.95);
  line-height: 1.6;
}

/* Prompt details (accordion) */
.prompt-details {
  margin-top: auto;
  font-size: 0.86rem;
  color: rgba(75, 85, 99, 0.98);
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 0.55rem 0.85rem;
  line-height: 1.6;
}

.prompt-details summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: 0.86rem;
  color: #111827;
}

.prompt-details summary::-webkit-details-marker {
  display: none;
}

.prompt-details summary::before {
  content: "+";
  margin-right: 0.4rem;
  font-size: 0.78rem;
}

.prompt-details[open] summary::before {
  content: "–";
}

.prompt-details ul {
  margin-top: 0.5rem;
  padding-left: 1.1rem;
  list-style: disc;
}

.prompt-details li {
  margin-bottom: 0.2rem;
}

.prompt-details-content {
  transform: translateY(-6px);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.prompt-details[open] .prompt-details-content {
  transform: translateY(0);
}


/* --------------------------------------------------
   9. SACRED SYSTEM SECTION
-------------------------------------------------- */

.section-sacred .sacred-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.sacred-points ul {
  list-style: disc;
  padding-left: 1.2rem;
  /* font-size: 0.94rem; */
  color: rgba(55, 65, 81, 0.98);
  line-height: 1.9;
}

.sacred-note {
  margin-top: 0.8rem;
  /* font-size: 0.86rem; */
  color: rgba(55, 65, 81, 0.98);
  line-height: 1.6;
}

.sacred-image {
  display: flex;
  justify-content: center;
  text-align: center;
}

.sacred-image-box {
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: radial-gradient(circle at 10% 0, #fef9c3 0, #f97316 35%, #4c1d95 100%);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.6);
}


/* --------------------------------------------------
   10. BEGIN SECTION
-------------------------------------------------- */

.section-begin {
  position: relative;
}

.section-begin .begin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr);
  gap: 2rem;
  align-items: stretch;
}

/* Left prompts card */
.begin-prompts {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 1.4rem 1.3rem;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.begin-prompts-label {
  /* font-size: 0.8rem; */
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(107, 114, 128, 0.95);
}

.begin-prompts ul {
  list-style: none;
  padding-left: 0;
}

.begin-prompts li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  /* font-size: 0.9rem; */
  color: rgba(55, 65, 81, 0.98);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.begin-prompts li::before {
  content: "➤";
  font-size: 0.75rem;
  color: #4f46e5;
  margin-top: 0.15rem;
}

.begin-prompts-note {
  /* font-size: 0.8rem; */
  color: rgba(107, 114, 128, 0.95);
}

/* Right explanatory text */
.begin-note {
  /* font-size: 0.9rem; */
  color: rgba(55, 65, 81, 0.98);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 0.4rem;
}

.begin-note-cta {
  margin-top: 0.4rem;
}

.begin-note-cta .btn {
  padding-inline: 1.2rem;
  font-size: 1rem;
}

/* Light band background */
.section-begin::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  background: radial-gradient(circle at 10% 0, #eef2ff 0, #f9fafb 55%, #f5f5f5 100%);
  z-index: -1;
  top: 1.2rem;
}


/* --------------------------------------------------
   11. PRICING TABLE SECTION
-------------------------------------------------- */

.section-pricing {
  padding-top: 3.2rem;
}

/* 3-column pricing grid */
.pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 2rem;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.18);
}

/* Base card */
.pricing-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1.7rem 0rem 1.9rem;
  border-right: 1px solid rgba(148, 163, 184, 0.35);
}

.pricing-card:last-child {
  border-right: none;
}

/* Column backgrounds */
.pricing-card-basic {
  background: linear-gradient(180deg, #eef2ff, #ffffff);
}

.pricing-card-featured {
  background: linear-gradient(180deg, #0f172a, #111827);
  color: #e5e7eb;
}

.pricing-card-intensive {
  background: linear-gradient(180deg, #fbbf24, #f9c2367a);
}

/* Header area inside card */
.pricing-header {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  margin-bottom: 0.9rem;
}

.pricing-card-featured .pricing-header {
  border-bottom-color: rgba(55, 65, 81, 0.8);
}

/* Header text */
.pricing-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-name {
  /* font-size: 0.9rem; */
  font-weight: 500;
  color: rgba(55, 65, 81, 0.95);
  margin-top: 0.12rem;
}

.pricing-sub {
  /* font-size: 0.8rem; */
  color: rgba(107, 114, 128, 0.95);
  margin-top: 0.1rem;
}

/* Featured header overrides */
.pricing-card-featured .pricing-label,
.pricing-card-featured .pricing-name,
.pricing-card-featured .pricing-sub {
  color: #f9fafb;
}

/* Body details */
.pricing-body {
  padding: 0.4rem 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Question count */
.pricing-questions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.pricing-questions-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: #111827;
}

.pricing-questions-symbol {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fbbf24;
  margin-top: -0.15rem;
}

.pricing-questions-text {
  /* font-size: 0.88rem; */
  color: rgba(75, 85, 99, 0.95);
}

/* Price row */
.pricing-price {
  font-size: 1.55rem;
  font-weight: 800;
  color: #111827;
}

.pricing-price span {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(107, 114, 128, 0.95);
  margin-left: 0.18rem;
}

.pricing-price-sub {
  /* font-size: 0.8rem; */
  color: rgba(107, 114, 128, 0.95);
}

/* Featured price overrides */
.pricing-card-featured .pricing-questions-number {
  color: #facc15;
}

.pricing-card-featured .pricing-price,
.pricing-card-featured .pricing-price span,
.pricing-card-featured .pricing-price-sub,
.pricing-card-featured .pricing-questions-text {
  color: #f9fafb;
}

/* CTA row inside card */
.pricing-cta {
  margin-top: auto;
 /* padding-top: 1.1rem; */
}


/* --------------------------------------------------
   12. FAQ SECTION
-------------------------------------------------- */

.section-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

/* FAQ item accordion */
.faq-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  margin-bottom: 0.4rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "❓ ";
  font-size: large;
  margin-right: 0.1rem;
}

.faq-item p {
  margin-top: 0.2rem;
  /* font-size: 0.88rem; */
  color: rgba(75, 85, 99, 0.98);
  line-height: 1.6;
}

/* Chevron indicator */
.section-faq .faq-item::after {
  content: "›";
  position: absolute;
  right: 1rem;
  bottom:auto;
  top: 26px;
  font-size: 20px;
  color: #4b5563;
  transition: transform 0.2s ease;
  transform: rotate(0deg);
}

.section-faq .faq-item[open]::after {
  transform: rotate(90deg);
}


/* --------------------------------------------------
   13. TESTIMONIALS + FOOTER SPACER
-------------------------------------------------- */

.section-testimonials {
  padding-bottom: 3.2rem;
}

/* Hero testimonial block */
.testimonial-hero {
  margin: 0 auto 1.9rem;
  max-width: 780px;
  background: radial-gradient(circle at 10% 0, #050505 0, #312e81 70%);
  border-radius: 24px;
  padding: 1.7rem 1.4rem;
  color: #f9fafb;
  position: relative;
  overflow: hidden;
}

.testimonial-hero::before {
  content: "“";
  position: absolute;
  top: -18px;
  left: 18px;
  font-size: 3.6rem;
  color: rgba(254, 249, 195, 0.16);
}

.testimonial-quote {
  /* font-size: 0.9rem; */
  line-height: 1.8;
}

.testimonial-name {
  margin-top: 0.8rem;
  /* font-size: 0.82rem; */
  font-weight: 600;
}

/* Testimonial cards grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  background: white;
  border-radius: 10px;
  padding: 1.3rem;
  cursor: default;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-card p {
  /* font-size: 0.86rem; */
  color: rgba(75, 85, 99, 0.98);
  line-height: 1.6;
}

/* Footer spacing below last section */
.footer-spacer {
  height: 1.4rem;
}

.footer {
  background: #0e2455;
  color: white;
  padding: 2rem 0 2rem;
}

.footer-copyright {
  color: #6b7280;
  font-size: 0.85rem;
  text-align: center;
  
}


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

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
  .footer-links {
    text-align: center;
  }
  .footer-brand {
    order: 1;
  }

  
    .footer-links {
    order: 2;
    /* text-align: right; */
    align-items: flex-end;
  }
  .footer-brand {
    order: 1;
  }
}

.footer-content {
  display: grid;
   gap: 2rem;
  align-items: center;
  margin: 0px auto;
  max-width: 1200px;
  
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
  /* display: flex; */
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.footer {
  color: white;
}


/* --------------------------------------------------
   14. REVEAL-ON-SCROLL UTILITY
-------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* --------------------------------------------------
   15. RESPONSIVE MEDIA QUERIES
-------------------------------------------------- */

/* Larger than tablet: make hero buttons row */
@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .hero-buttons .btn {
    max-width: none;
    width: auto;
  }
}

/* Under 900px: stack some two-column grids */
@media (max-width: 900px) {
  .section-opening .opening-layout,
  .section-sacred .sacred-grid,
  .section-begin .begin-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .opening-video {
    order: -1;
  }

  .sacred-image {
    order: -1;
  }

  .section-begin .begin-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Small screens (phones) */
@media (max-width: 640px) {
  .header-container {
    gap: 0.6rem;
  }

  .logo-title {
    font-size: 0.88rem;
  }

  .logo-sub {
    font-size: 0.68rem;
  }

  .hero-banner img {
    border-radius: 14px;
  }

  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 22px;
  }

  .pricing-card {
    border-right: none;
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  }

  .pricing-card:last-child {
    border-bottom: none;
  }
}

/* Very small screens: hide desktop tagline line only */
@media (max-width: 400px) {
  .logo-sub {
    display: none;
  }
}

/* Mobile breakpoint for switching headers */
@media (max-width: 768px) {
  /* Hide desktop header, show mobile header + drawer */
  
  .hero-pill {
  margin-top: 50px;
  }
  
  
  .desktop-header {
    display: none;
  }

  body {
    padding-top: 0;
  }

  .mobile-header,
  .side-drawer,
  .backdrop {
    display: block;
  }
  .main-hero {
    min-height: auto;
  }
}

@media (max-width: 1024px) {
 .main-hero {
    min-height: auto;
  }
}


