@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');



:root {
  --tarot-bg: #0C0A15;
  --tarot-card-bg: rgba(22, 18, 38, 0.75);
  --tarot-purple: #7C3AED;
  --tarot-purple-glow: rgba(124, 58, 237, 0.35);
  --tarot-gold: #E6C280;
  --tarot-gold-glow: rgba(230, 194, 128, 0.25);
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

/* BASE RESET FOR THIS LANDING PAGE */
body {
  margin: 0;
  padding: 0;
  background-color: var(--tarot-bg);
  font-family: var(--font-sans);
  color: #E2E8F0;
  overflow-x: hidden;
}

/* ===================================================
   TAROT HERO SECTION
====================================================== */
.tarot-hero-section {
  width: 100%;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #1D1536 0%, #0C0A15 70%);
  padding: 40px 20px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.tarot-hero-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Ambient Backlight Glows */
.tarot-ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 1;
}

.glow-top-left {
  top: -100px;
  left: -100px;
  background: rgba(124, 58, 237, 0.25);
}

.glow-bottom-right {
  bottom: -100px;
  right: -100px;
  background: rgba(230, 194, 128, 0.15);
}

/* CONTENT COLUMN */
.tarot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(196, 155, 240, 0.3);
  color: #D8B4FE;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.tarot-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #FFFFFF 0%, #E2D4F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tarot-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--tarot-gold);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.tarot-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: #F1F5F9;
  border-left: 3px solid var(--tarot-gold);
  padding-left: 16px;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.tarot-description {
  font-size: 0.98rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* TOPIC CHIPS */
.tarot-topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.topic-chip {
  background: var(--tarot-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #E2E8F0;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.topic-chip:hover {
  border-color: var(--tarot-gold);
  transform: translateY(-2px);
  background: rgba(35, 28, 60, 0.9);
}

/* CTA BUTTON */
.tarot-cta-group {
  margin-bottom: 28px;
}

.btn-tarot-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px var(--tarot-purple-glow);
  transition: all 0.35s ease;
}

.btn-tarot-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(139, 92, 246, 0.5);
  background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
}

.cta-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-tarot-primary:hover .cta-arrow {
  transform: translateX(4px);
}

/* META BAR */
.tarot-meta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #94A3B8;
  font-weight: 500;
}

.meta-dot {
  color: var(--tarot-gold);
}

/* VISUAL COLUMN */
.tarot-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tarot-cards-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.mystic-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  border: 1px dashed rgba(230, 194, 128, 0.3);
  border-radius: 50%;
  animation: rotateCircle 40s linear infinite;
  pointer-events: none;
}

.tarot-featured-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid rgba(230, 194, 128, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  display: block;
}

.floating-mystic-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(22, 18, 38, 0.85);
  border: 1px solid rgba(230, 194, 128, 0.4);
  backdrop-filter: blur(12px);
  padding: 14px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.floating-icon {
  font-size: 1.8rem;
}

.floating-mystic-card strong {
  display: block;
  font-size: 0.9rem;
  color: #FFFFFF;
}

.floating-mystic-card p {
  margin: 0;
  font-size: 0.78rem;
  color: #94A3B8;
}

@keyframes rotateCircle {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===================================================
   PERFECT MOBILE CENTERING FIX
====================================================== */
@media (max-width: 992px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .tarot-hero-section {
    padding: 40px 16px 30px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .tarot-hero-container {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    justify-items: center; /* Forces grid items to center horizontally */
  }

  /* CONTENT COLUMN CENTERING */
  .tarot-hero-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .tarot-badge {
    margin: 0 auto 16px !important;
  }

  .tarot-main-title {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .tarot-subtitle {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .tarot-quote {
    border-left: none;
    border-top: 2px solid var(--tarot-gold);
    padding-left: 0;
    padding-top: 12px;
    margin: 0 auto 16px;
    max-width: 90%;
    text-align: center;
  }

  .tarot-description {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .tarot-topics-grid {
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .tarot-cta-group {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-tarot-primary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .tarot-meta-bar {
    justify-content: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  /* VISUAL COLUMN CENTERING & OVERFLOW PREVENTION */
  .tarot-hero-visual {
    order: -1; /* Graphic stays on top */
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
  }

  .tarot-cards-wrapper {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
  }

  /* Prevent spinning dashed circle from overflowing page width */
  .mystic-circle {
    width: 95%;
    height: 95%;
  }

  /* Floating pill alignment */
  .floating-mystic-card {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 90%;
    margin: -24px auto 0; /* Centered overlap below image */
    box-sizing: border-box;
    justify-content: center;
    text-align: left;
    z-index: 3;
  }
}

/* ===================================================
   SECTION 2: WHY THOUSANDS TURN TO TAROT
====================================================== */
.why-tarot-section {
  width: 100%;
  background: radial-gradient(circle at 50% 50%, #17112A 0%, #0C0A15 100%);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.why-tarot-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* Backlight Glow */
.glow-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(124, 58, 237, 0.18);
  width: 600px;
  height: 600px;
}

/* Header */
.why-tarot-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-badge {
  display: inline-block;
  background: rgba(230, 194, 128, 0.12);
  color: var(--tarot-gold);
  border: 1px solid rgba(230, 194, 128, 0.3);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.why-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #FFFFFF;
  margin: 0 0 12px;
  line-height: 1.2;
}

.why-intro {
  font-size: 1.15rem;
  color: #94A3B8;
  margin: 0;
  font-weight: 500;
}

/* Crossroads Card */
.crossroads-card {
  background: rgba(22, 18, 38, 0.7);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(12px);
  margin-bottom: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.crossroads-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--tarot-gold);
  text-align: center;
  margin: 0 0 20px;
  font-weight: 500;
}

.crossroads-icon {
  margin-right: 6px;
}

/* Questions Grid */
.questions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.question-pill {
  background: rgba(35, 28, 60, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #E2E8F0;
  font-size: 0.98rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.question-pill:hover {
  border-color: rgba(230, 194, 128, 0.4);
  background: rgba(45, 36, 76, 0.8);
  transform: translateY(-2px);
}

.question-pill.full-width {
  grid-column: 1 / -1;
  justify-content: center;
}

.q-icon {
  font-size: 1.1rem;
  opacity: 0.8;
}

/* Purpose & Promise Section */
.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.purpose-card {
  background: rgba(22, 18, 38, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.purpose-card:hover {
  border-color: var(--tarot-purple);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.purpose-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.gold-sparkle {
  color: var(--tarot-gold);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 16px;
  display: inline-block;
  text-shadow: 0 0 10px rgba(230, 194, 128, 0.6);
}

.purpose-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #FFFFFF;
  margin: 0 0 12px;
}

.purpose-card p {
  color: #94A3B8;
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.purpose-card p strong {
  color: #E2E8F0;
}

/* RESPONSIVE LAYOUT & CENTERING FIXES */
@media (max-width: 768px) {
  .why-tarot-section {
    padding: 30px 10px;
  }

  .crossroads-card {
    padding: 24px 18px;
  }

  .questions-grid {
    grid-template-columns: 1fr;
  }

  .question-pill.full-width {
    justify-content: flex-start;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .why-tarot-header, .crossroads-card, .purpose-card {
    text-align: center;
  }

  .question-pill {
    text-align: left;
  }
}
/* ===================================================
   SECTION 3: READINGS & PACKAGES
====================================================== */
.readings-section {
  width: 100%;
  background: #0D0817;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
 
.readings-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
 
.glow-top-center {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(147, 51, 234, 0.22);
  width: 800px;
  height: 800px;
}
 
/* Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
 
.specialized-header {
  margin-top: 80px;
}
 
.golden-badge {
  color: var(--tarot-gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}
 
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #FFFFFF;
  margin: 0 0 12px;
}
 
.title-underline {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tarot-gold), transparent);
  margin: 0 auto;
}
 
/* ================= GRID 1: 111, 222, 333 TIER CARDS ================= */
.tier-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
 
/* Reference Image Styled Cards */
.reading-card {
  background: linear-gradient(180deg, #1B1430 0%, #0F0A1D 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 20px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}
 
.reading-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 194, 128, 0.5);
  box-shadow: 0 20px 45px rgba(147, 51, 234, 0.28);
}
 
.highlight-card {
  border-color: var(--tarot-gold);
  background: linear-gradient(180deg, #271A46 0%, #120A24 100%);
}
 
.popular-pill {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--tarot-gold);
  color: #0C0A15;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
}
 
.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
 
.card-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 700;
}
 
.card-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
 
.card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #FFFFFF;
  margin: 0 0 6px;
}
 
.card-tagline {
  color: var(--tarot-gold);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 14px;
}
 
.card-intro {
  font-size: 1rem;
  color: #94A3B8;
  line-height: 1.5;
  margin-bottom: 24px;
}
 
.card-section-divider {
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  text-align: center;
  margin: 0 0 20px;
  position: relative;
}
 
.card-section-divider span {
  background: #171029;
  color: var(--tarot-gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 0 10px;
  position: relative;
  top: -9px;
}
 
.card-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}
 
.card-feature-list li {
  font-size: 1rem;
  color: #E2E8F0;
  margin-bottom: 10px;
}
 
/* Card Bottom */
.card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
}
 
.delivery-time {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-bottom: 12px;
}
 
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}
 
.price-inr {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
}
 
.price-usd {
  font-size: 1.2rem;
  color: var(--tarot-gold);
}
 
.btn-card-action {
  display: block;
  width: 100%;
  padding: 14px 0;
  background: rgba(147, 51, 234, 0.2);
  border: 1px solid var(--tarot-purple);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
 
.btn-card-action:hover {
  background: var(--tarot-purple);
  box-shadow: 0 8px 20px var(--tarot-purple-glow);
}
 
/* ================= GRID 2: SPECIALIZED READINGS ================= */
.specialized-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
 
.spec-card {
  background: rgba(30, 18, 46, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
 
.spec-card:hover {
  border-color: rgba(230, 194, 128, 0.4);
  transform: translateY(-4px);
  background: rgba(40, 26, 66, 0.85);
}

.spec-card-header {
  display: flex;
  align-items: center; 
  gap: 10px;           
  margin-bottom: 0px; 
}
 
.spec-icon {
  font-size: 2rem;
  margin-bottom: 0px;
}
 
.spec-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #FFFFFF;
  margin: 0 ;
}
 
.spec-desc {
  font-size: 1rem;
  color: #94A3B8;
  line-height: 1.5;
  margin-bottom: 18px;
}
 
.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  flex-grow: 1;
}
 
.spec-tags span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #CBD5E1;
  font-size: 0.9rem;
  padding: 4px 10px;
  border-radius: 12px;
}
 
.spec-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}
 
.spec-meta {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-bottom: 6px;
}
 
.spec-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
}
 
.spec-price span {
  font-size: 1.1rem;
  color: var(--tarot-gold);
  font-weight: 400;
}
 
.btn-spec-action {
  display: block;
  text-align: center;
  background: rgba(230, 194, 128, 0.12);
  border: 1px solid rgba(230, 194, 128, 0.3);
  color: var(--tarot-gold);
  text-decoration: none;
  padding: 10px 0;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
 
.btn-spec-action:hover {
  background: var(--tarot-gold);
  color: #0C0A15;
}
 
/* ================= RESPONSIVE LAYOUT ================= */
@media (max-width: 1024px) {
  .tier-cards-grid, .specialized-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
 
@media (max-width: 768px) {
  .readings-section {
    padding: 30px 16px;
  }
 
  .specialized-header{
    margin-top: 30px;
  }
 
  .tier-cards-grid, .specialized-grid {
    grid-template-columns: 1fr;
  }
 
  .reading-card, .spec-card {
    text-align: left;
  }
 
  .card-top-row {
    justify-content: space-between;
    gap: 16px;
  }
 
  .card-feature-list li {
    text-align: left;
  }
 
  .spec-tags {
    justify-content: flex-start;
  }
}
/* ===================================================
   SECTION 4: WHAT YOU'LL RECEIVE (CHECKLIST STYLE)
====================================================== */
.deliverables-section {
  width: 100%;
  background: radial-gradient(circle at 50% 50%, #130E26 0%, #090710 100%);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.deliverables-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.glow-deliverables {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(124, 58, 237, 0.15);
  width: 650px;
  height: 650px;
}

/* Checklist Outer Card */
.deliverables-checklist-box {
  background: rgba(22, 18, 38, 0.85);
  border: 2px solid var(--tarot-gold);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(230, 194, 128, 0.15);
  backdrop-filter: blur(12px);
}

/* Individual Stacked Rows */
.checklist-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}

.checklist-row:last-child {
  border-bottom: none;
}

.checklist-row:hover {
  background: rgba(35, 28, 60, 0.6);
}

.checklist-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}

.gold-highlight {
  color: var(--tarot-gold);
}

/* Green/Gold Circle Check Badge */
.check-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #10B981; /* Vibrantly matching screenshot check style */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  flex-shrink: 0;
}

/* Highlight Row Styling */
.highlight-row {
  background: rgba(124, 58, 237, 0.15);
}

/* RESPONSIVE LAYOUT & MOBILE CENTERING FIX */
@media (max-width: 768px) {
  .deliverables-section {
    padding: 20px 16px;
  }

  .checklist-row {
    padding: 16px 20px;
    gap: 16px;
  }

  .checklist-text {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .check-badge {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
    border-radius: 8px;
  }
}
/* ===================================================
   SECTION 5: HOW IT WORKS (ROADMAP FLOW)
====================================================== */
.how-it-works-section {
  width: 100%;
  background: #0C0A15;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.how-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.glow-how-it-works {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(124, 58, 237, 0.18);
  width: 700px;
  height: 700px;
}

.how-sub {
  color: #94A3B8;
  font-size: 1rem;
  margin: 0 0 16px;
}

/* Roadmap Outer Box */
.roadmap-wrapper {
  position: relative;
  margin-top: 60px;
  padding: 20px 0;
}

/* Central Glowing Line (Beam) */
.roadmap-beam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, 
    rgba(230, 194, 128, 0.2) 0%, 
    var(--tarot-gold) 30%, 
    var(--tarot-purple) 70%, 
    rgba(124, 58, 237, 0.2) 100%
  );
  box-shadow: 0 0 12px var(--tarot-gold);
}

/* Individual Roadmap Nodes */
.roadmap-node {
  position: relative;
  width: 50%;
  margin-bottom: 50px;
  box-sizing: border-box;
}

.roadmap-node:last-child {
  margin-bottom: 0;
}

/* Align Left Nodes */
.roadmap-node.left-node {
  left: 0;
  padding-right: 45px;
}

/* Align Right Nodes */
.roadmap-node.right-node {
  left: 50%;
  padding-left: 45px;
}

/* Center Golden Milestone Badges */
.node-badge {
  position: absolute;
  top: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #140E26;
  border: 2px solid var(--tarot-gold);
  color: var(--tarot-gold);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 0 15px rgba(230, 194, 128, 0.4);
}

.left-node .node-badge {
  right: -22px;
}

.right-node .node-badge {
  left: -22px;
}

/* Glass Card Content */
.node-content {
  background: rgba(22, 18, 38, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.node-content:hover {
  border-color: rgba(230, 194, 128, 0.5);
  transform: translateY(-4px);
  background: rgba(32, 25, 54, 0.9);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.25);
}

.node-icon {
  font-size: 1.8rem;
  background: rgba(230, 194, 128, 0.08);
  border: 1px solid rgba(230, 194, 128, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.node-text h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.node-text p {
  font-size: 1rem;
  color: #94A3B8;
  line-height: 1.5;
  margin: 0;
}

/* ================= MOBILE & TABLET LAYOUT ================= */
@media (max-width: 768px) {
  .how-it-works-section {
    padding: 30px 16px;
  }

  /* Move line to the left side on mobile */
  .roadmap-beam {
    left: 20px;
    transform: none;
  }

  /* Make nodes full width and align left */
  .roadmap-node {
    width: 100%;
    padding-left: 55px !important;
    padding-right: 0 !important;
    left: 0 !important;
    margin-bottom: 30px;
  }

  /* Align all badges to the left beam */
  .node-badge {
    left: 0 !important;
    top: 18px;
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .node-content {
    padding: 18px;
    flex-direction: column;
    gap: 12px;
  }

  .node-icon {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
}
/* ===================================================
   SECTION 6: FREQUENTLY ASKED QUESTIONS
====================================================== */
.faq-section {
  width: 100%;
  background: radial-gradient(circle at 50% 100%, #17112A 0%, #090710 100%);
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.faq-container {
  max-width: 800px; /* Narrower width for easier reading */
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.glow-faq {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(230, 194, 128, 0.1);
  width: 600px;
  height: 600px;
}

/* Accordion Wrapper */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

/* Individual FAQ Item */
.faq-item {
  background: rgba(22, 18, 38, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  background: rgba(30, 24, 50, 0.8);
  border-color: rgba(230, 194, 128, 0.3);
}

/* Open State Styling */
.faq-item[open] {
  border-color: var(--tarot-gold);
  background: rgba(35, 28, 60, 0.8);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* The Question (Clickable Header) */
.faq-question {
  padding: 24px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none; /* Hides default triangle */
  user-select: none;
}

/* Hides default Safari/Chrome triangle marker */
.faq-question::-webkit-details-marker {
  display: none;
}

/* Custom Plus/Minus Icon */
.faq-question::after {
  content: '+';
  color: var(--tarot-gold);
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
  color: #FFFFFF;
}

/* The Answer Body */
.faq-answer {
  padding: 0 24px 24px 24px;
  border-top: 1px dashed rgba(255, 255, 255, 0.05);
  margin-top: -8px;
}

.faq-answer p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 16px 0 0 0;
}

.faq-answer strong {
  color: var(--tarot-gold);
}

/* ================= RESPONSIVE LAYOUT ================= */
@media (max-width: 768px) {
  .faq-section {
    padding: 30px 16px;
  }

  .faq-question {
    padding: 20px;
    font-size: 1.05rem;
  }

  .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .faq-question::after {
    font-size: 1.5rem;
  }
}
/* ===================================================
   SECTION 7: A GENTLE NOTE & FINAL CTA
====================================================== */
.footer-cta-section {
  width: 100%;
  background: #090710;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.footer-cta-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.glow-footer {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(124, 58, 237, 0.22);
  width: 700px;
  height: 700px;
}

/* --- Gentle Note Box --- */
.gentle-note-box {
  background: rgba(22, 18, 38, 0.5);
  border: 1px dashed rgba(230, 194, 128, 0.3);
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 60px;
  backdrop-filter: blur(8px);
}

.gold-sparkle-symbol {
  color: var(--tarot-gold);
  font-size: 1.6rem;
  line-height: 1;
  display: inline-block;
  text-shadow: 0 0 10px rgba(230, 194, 128, 0.6);
}

.note-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--tarot-gold);
  margin: 0 0 6px;
  font-weight: 600;
}

.note-text p {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Final Call To Action Card --- */
.final-cta-card {
  background: linear-gradient(135deg, rgba(32, 25, 54, 0.9) 0%, rgba(15, 10, 31, 0.95) 100%);
  border: 2px solid var(--tarot-gold);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(124, 58, 237, 0.25);
  overflow: hidden;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #FFFFFF;
  margin: 12px 0 16px;
}

.cta-description {
  color: #CBD5E1;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 36px;
}

/* Button CTA */
.btn-primary-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--tarot-gold) 0%, #D4A359 100%);
  color: #090710;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 18px 38px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(230, 194, 128, 0.35);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-primary-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(230, 194, 128, 0.5);
  background: linear-gradient(135deg, #FFF1D6 0%, var(--tarot-gold) 100%);
}


/* ================= RESPONSIVE LAYOUT ================= */
@media (max-width: 768px) {
  .footer-cta-section {
    padding: 50px 16px 30px;
  }

  .gentle-note-box {
    flex-direction: column;
    padding: 20px;
    gap: 12px;
  }

  .final-cta-card {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .btn-primary-cta {
    display: block;
    width: 100%;
    padding: 16px 20px;
    font-size: 0.95rem;
    box-sizing: border-box;
  }
}



/* ===================================================
   SITE FOOTER (DARK & GOLD COSMIC THEME)
====================================================== */
.site-footer {
  width: 100%;
  background: #07050C;
  border-top: 1px solid rgba(230, 194, 128, 0.15);
  padding: 60px 20px 40px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  margin-top: 40px;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Brand Section */
.footer-brand {
  margin-bottom: 24px;
}

.footer-sub-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--tarot-gold);
  letter-spacing: 2px;
  display: block;
  margin-bottom: 6px;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #FFFFFF;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Contact Info Row */
.footer-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: var(--tarot-gold);
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--tarot-gold);
  flex-shrink: 0;
}

/* Divider Line */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}

/* Disclaimer Paragraph */
.footer-disclaimer {
  color: #94A3B8;
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 820px;
  margin: 0 0 24px 0;
}

.footer-disclaimer strong {
  color: #E2E8F0;
}

/* Policy Links */
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--tarot-gold);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.dot-separator {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .site-footer {
    padding: 40px 16px 30px;
  }

  .brand-title {
    font-size: 1.8rem;
  }

  .footer-contact-row {
    flex-direction: column;
    gap: 14px;
  }

  .footer-disclaimer {
    font-size: 0.82rem;
  }

  .footer-links {
    gap: 10px;
  }
  
  .footer-links a {
    font-size: 0.88rem;
  }
}

/* ===================================================
   URGENT READING - ETHEREAL SVG CLOUD SHAPE
====================================================== */
.urgent-reading-section {
  width: 100%;
  background: radial-gradient(circle at 50% 50%, #170B2E 0%, #080410 100%);
  padding: 70px 20px 40px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.ethereal-cloud-wrapper {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ambient Purple Glow Behind Cloud */
.cloud-nebula-glow {
  position: absolute;
  width: 380px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.45) 0%, rgba(230, 194, 128, 0.2) 50%, rgba(0, 0, 0, 0) 75%);
  border-radius: 50%;
  filter: blur(45px);
  animation: cloudPulse 4s infinite alternate ease-in-out;
}

@keyframes cloudPulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 1; }
}

/* Floating Container for Cloud and Text */
.ethereal-cloud-box {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  animation: floatCloud 5s ease-in-out infinite;
}

@keyframes floatCloud {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Vector Cloud SVG Styling */
.cloud-svg-shape {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 20px rgba(168, 85, 247, 0.3));
}

/* Text Overlay Layer */
.cloud-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  text-align: center;
  width: 80%;
  z-index: 3;
  pointer-events: none;
}

.cloud-sparkles {
  color: var(--tarot-gold);
  font-size: 0.85rem;
  letter-spacing: 4px;
  opacity: 0.9;
  text-shadow: 0 0 8px rgba(230, 194, 128, 0.6);
}

.urgent-subheading {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #FFF2D6;
  margin: 4px 0 0 0;
  line-height: 1.1;
  text-shadow: 0 0 12px rgba(230, 194, 128, 0.5);
}

.urgent-price-tag {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 700;
  color: var(--tarot-gold);
  margin: 2px 0 4px 0;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(230, 194, 128, 0.8);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .urgent-reading-section {
    padding: 50px 15px 30px;
  }

  .cloud-sparkles {
    font-size: 0.7rem;
  }
}