@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ================= ROOT ================= */
:root {
  --primary: #6f46c5;
  --accent: #d53f8c;
  --bg-dark: #050a2b;
  --bg-light: #f9faff;
  --text-dark: #0b0f1a;
  --text-light: #ffffff;
}

/* ================= RESET ================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at top, #0f1433, #050814);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= GALAXY BACKGROUND ================= */
.space-gradient {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(circle at 30% 30%, rgba(27,31,59,0.45), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(201,162,77,0.28), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(120,130,255,0.18), transparent 65%);
  animation: galaxy-drift 40s linear infinite;
  z-index: 0;
}

/* ================= STARS ================= */
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.stars-1 {
  background-image:
    radial-gradient(1px 1px at 12% 22%, #ffffff, transparent),
    radial-gradient(1px 1px at 34% 78%, #ffffff, transparent),
    radial-gradient(1px 1px at 68% 42%, #ffffff, transparent),
    radial-gradient(1px 1px at 88% 64%, #ffffff, transparent);
  background-size: 180px 180px;
  opacity: 0.55;
}

.stars-2 {
  background-image:
    radial-gradient(1px 1px at 18% 36%, #ffffff, transparent),
    radial-gradient(1px 1px at 52% 92%, #ffffff, transparent),
    radial-gradient(1px 1px at 82% 28%, #ffffff, transparent);
  background-size: 260px 260px;
  opacity: 0.28;
}

/* ================= HERO CONTENT ================= */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 20px;
  text-align: center;
  color: #ffffff;
}

/* Eyebrow */
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9aa0c3;
  margin-bottom: 14px;
}

/* ================= CAPTION SLIDER ================= */

.hero-caption-slider {
  position: relative;
  height: 56px;
  margin-bottom: 18px;
}

/* Base caption */
.caption {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.8s ease, filter 0.8s ease;
  font-size: clamp(1.6rem, 6vw, 2.6rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* Active caption */
.caption.active {
  opacity: 1;
  filter: blur(0);
}

/* ================= BUTTONS ================= */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn {
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #c9a24d, #b8913c);
  color: #0e1222;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
}

/* ================= TRUST STRIP ================= */
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.8rem;
  color: #9aa0c3;
}

.hero-trust strong {
  display: block;
  font-size: 1.2rem;
  color: #ffffff;
}


/* ================= SECTIONS ================= */
.services-section {
  padding: 72px 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 48px;
}

.services-header h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 8px;
}

.services-header p {
  font-size: 16px;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.service-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
}

.price {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-card ul {
  padding-left: 16px;
  margin-bottom: 24px;
}

.service-card ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.service-btn {
  margin-top: auto;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #111;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.service-btn.primary {
  background: #111;
  color: #fff;
}

.service-card.highlight {
  border-color: #111;
}

.badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: #111;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}

.services-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: #666;
}


/* ================= THERAPY ================= */
.therapy {
  background: #eef2ff;
  padding: 60px 0;
}

/* ================= SHOP ================= */
.shop-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
  gap: 12px;
}

.shop-item {
  background: #fff;
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #ddd;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 24px 0;
  font-size: 0.9rem;
  color: var(--text-dark);
}

/* ================= ANIMATION ================= */
@keyframes galaxy-drift {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-6%, -4%); }
  100% { transform: translate(0, 0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 20px;
  text-align: center;
  color: #ffffff;

  display: flex;
  flex-direction: column;
  align-items: center;
}


.hero-caption-slider {
  position: relative;
  width: 100%;
  height: 64px;              /* IMPORTANT: reserved space */
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-eyebrow {
  margin-bottom: 16px;
}

.hero-subtext {
  margin-top: 12px;
  margin-bottom: 36px;
}

.hero-buttons {
  margin-bottom: 40px;
}

.hero-trust {
  margin-bottom: 12px;
}


.hero-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at top, #0c1230, #050814);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Ambient glow */
.cosmic-glow {
  position: absolute;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(140,120,255,0.25), transparent 60%);
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(120px);
}

/* Stars */
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, #fff, transparent),
    radial-gradient(1px 1px at 60% 70%, #fff, transparent),
    radial-gradient(1px 1px at 80% 20%, #fff, transparent),
    radial-gradient(1px 1px at 40% 90%, #fff, transparent);
  background-size: 220px 220px;
  opacity: 0.45;
}

/* Content wrapper */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 20px;
  color: #ffffff;
}

/* Eyebrow */
.hero-eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #aab0ff;
  margin-bottom: 24px;
}

/* Headline animation */
.hero-headline {
  position: relative;
  height: 90px;
  overflow: hidden;
  margin-bottom: 28px;
}

.hero-headline .line {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: all 0.9s ease;
  text-shadow: 0 0 30px rgba(160,150,255,0.35);
}

.hero-headline .line.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Divider */
.hero-divider {
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7f85ff, transparent);
  margin: 32px auto;
}

/* Description */
.hero-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d6dcff;
  margin-bottom: 48px;
}

/* CTA Button */
.btn.primary {
  display: inline-block;
  padding: 16px 42px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #6d8cff, #9f7aea);
  box-shadow: 0 24px 60px rgba(120,130,255,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 80px rgba(120,130,255,0.55);
}


@media (max-width: 768px) {

  .hero-headline {
    height: 80px;            /* allow 2 lines */
  }

  .hero-headline .line {
    white-space: normal;      /* allow wrapping */
    line-height: 1.25;
    font-size: 2.1rem;        /* slightly smaller */
    padding: 0 12px;          /* breathing room */
  }

}

/* ================= JOURNEY SECTION ================= */

/* ================= JOURNEY ================= */

.journey-section {
  padding: 40px 0;
  overflow: hidden;
}

.journey-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* Horizontal track */
.journey-track {
  display: flex;
  gap: 24px;
  padding: 10px 20px 20px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar (optional) */
.journey-track::-webkit-scrollbar {
  display: none;
}

/* Each step */
.journey-step {
  flex: 0 0 220px;
  scroll-snap-align: center;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px;

  text-align: center;
}

/* Dot */
.dot {
  width: 10px;
  height: 10px;
  background: #9f7aea;
  border-radius: 50%;
  margin: 0 auto 10px;
  position: relative;
}

/* Active pulse (final step) */
.dot.active::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(159,122,234,0.6);
  animation: pulse 1.6s infinite;
}

/* Text */
.journey-step h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.journey-step p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #cfd6ff;
}

/* Pulse */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.journey-hint {
  text-align: center;
  font-size: 0.8rem;
  color: #b8c1ec;
  margin-bottom: 8px;
  opacity: 0.7;
}

.journey-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.journey-step {
  flex: 0 0 220px;
  scroll-snap-align: center;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px 16px;

  display: flex;
  flex-direction: column;
  align-items: center;      /* ✅ horizontal centering */
  text-align: center;       /* ✅ text centering */
}

.journey-track {
  display: flex;
  gap: 24px;

  padding: 10px 20px 20px; /* desktop default */

  overflow-x: auto;
  scroll-snap-type: x mandatory;

}

@media (max-width: 768px) {
  .journey-track {
    padding-left: 32px;   /* ✅ space before first card */
    padding-right: 32px;  /* ✅ space after last card */
  }
}

/* Wrapper controls side spacing */
.journey-wrapper {
  max-width: 100%;
  padding: 0 16px;           /* mobile-safe gutter */
  overflow: hidden;          /* prevents track bleed */
}

/* Track stays scrollable inside wrapper */
.journey-track {
  display: flex;
  gap: 24px;

  padding: 12px 0 20px;      /* vertical padding only */

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}


/* ================= VIDEO STRIP ================= */

.video-strip {
  padding: 100px 0 80px;
  background: #0b0f1a;
  color: #ffffff;
}

.video-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 10px;
}

.video-subtitle {
  text-align: center;
  color: #b8c1ec;
  margin-bottom: 48px;
}

/* Horizontal scroll container */
.video-scroll {
  display: flex;
  gap: 24px;

  max-width: 1200px;
  margin: 0 auto;

  padding: 0 24px;
  overflow-x: auto;

  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.video-scroll::-webkit-scrollbar {
  display: none;
}

.video-scroll::-webkit-scrollbar {
  display: none;
}

/* Video card */
.video-card {
  flex: 0 0 auto;
  width: 280px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  scroll-snap-align: start;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
}

/* Video itself */
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card {
  position: relative;
}

.sound-toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* ================= YANTRA BACKGROUND ================= */

.yantra-bg {
  position: absolute;
  inset: -20%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
}

.yantra-bg svg {
  width: 1200px;
  height: 1200px;

  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 2;
  fill: none;

  animation: yantraRotate 120s linear infinite;
  filter: drop-shadow(0 0 40px rgba(160,150,255,0.15));
}

/* Ultra slow rotation */
@keyframes yantraRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.dot {
  position: relative;
  width: 14px;
  height: 14px;
  background: #6f46c5;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  overflow: hidden;
}

.dot-glow {
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,0.9) 50%,
    transparent 70%
  );
  animation: dotFlow 2.8s ease-in-out infinite;
  opacity: 0.8;
}

/* Flow motion */
@keyframes dotFlow {
  0% {
    transform: translateX(-60%) translateY(60%);
  }
  100% {
    transform: translateX(60%) translateY(-60%);
  }
}

.timeline-step:nth-child(1) .dot-glow { animation-delay: 0s; }
.timeline-step:nth-child(2) .dot-glow { animation-delay: 0.6s; }
.timeline-step:nth-child(3) .dot-glow { animation-delay: 1.2s; }
.timeline-step:nth-child(4) .dot-glow { animation-delay: 1.8s; }
.timeline-step:nth-child(5) .dot-glow { animation-delay: 2.4s; }
.timeline-step:nth-child(6) .dot-glow { animation-delay: 3s; }

.timeline-step.active .dot {
  box-shadow:
    0 0 0 6px rgba(111,70,197,0.2),
    0 0 18px rgba(111,70,197,0.6);
}


/* ================= GURU SECTION ================= */

.guru-section {
  margin: 80px auto;
  padding: 0 20px;
}

/* Wrapper */
.guru-about {
  max-width: 900px;
  margin: auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  overflow: hidden;
}

/* Toggle button */
.guru-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
}

.guru-toggle .icon {
  font-size: 1.6rem;
  color: #9f7aea;
  transition: transform 0.3s ease;
}

/* Collapsible content */
.guru-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

/* Expanded state */
.guru-about.active .guru-content {
  max-height: 1200px; /* large enough for all content */
}

.guru-about.active .icon {
  transform: rotate(45deg);
}

/* Layout */
.guru-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 15px 15px 15px;
  align-items: start;
}

/* Image */
.guru-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Text */
.guru-text {
  min-width: 0;
}

.guru-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d6dcff;
  margin-bottom: 14px;
}

/* Bullet points */
.guru-points {
  margin-top: 16px;
  padding-left: 18px;
}

.guru-points li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cfd6ff;
  margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .guru-layout {
    grid-template-columns: 1fr;
  }
}


/* ================= VIDEO SECTION ================= */

.video-section {
  padding: 40px 0;          /* reduce vertical padding */
  overflow: hidden;
}

/* Horizontal scroll container */
.video-scroll {
  display: flex;
  gap: 16px;
  padding: 0 20px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;

  align-items: center;      /* prevents extra vertical stretch */
}

/* Individual video wrapper */
.video-item {
  flex: 0 0 auto;
  width: 220px;             /* control visible height indirectly */
  aspect-ratio: 9 / 16;     /* keeps reels format */
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: center;

  background: #000;
}

/* Video element */
.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.insight-item.hidden {
  display: none;
}


.video-strip {
  padding: 32px 0 24px;
}

.video-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.video-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 16px;
}

/* Horizontal scroll */
.video-scroll {
  display: flex;
  gap: 14px;
  padding: 12px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

/* Smaller cards */
.video-card {
  position: relative;
  flex: 0 0 180px;   /* 🔥 smaller width */
  height: 320px;     /* 🔥 smaller height */
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  scroll-snap-align: start;
}

/* Video */
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Soft premium overlay */
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0)
  );
  pointer-events: none;
}

/* Sound button */
.sound-toggle {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

/* Desktop refinement */
@media (min-width: 1024px) {
  .video-scroll {
    justify-content: center;
  }

  .video-card {
    flex: 0 0 200px;
    height: 350px;
  }
}




/* Mobile horizontal scroll */
@media (max-width: 768px) {
  .services-grid {
    display: flex;
    gap: 20px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    padding: 12px 20px 20px;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .services-grid {
    scrollbar-width: none;
  }

  .service-card {
    flex: 0 0 260px;
    scroll-snap-align: center;
  }
}



.faq-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 36px;
  color: #1b1f3b;
}

.faq-item {
  border-bottom: 1px solid rgba(27,31,59,0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #1b1f3b;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.4rem;
  color: #c9a24d; /* royal gold */
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;

  font-size: 1.05rem;
  font-weight: 600;          /* ✅ BOLDER */
  color: #1b1f3b;

  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: #c9a24d;            /* royal gold */
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* + becomes × */
}


/* ================= VIDEO STRIP TEXT COLORS ================= */

#karmic-landing .video-strip {
  background: #070a18; /* deep cosmic blue */
}

#karmic-landing .video-title {
  color: #f5f2e9; /* soft sacred white */
}

#karmic-landing .video-subtitle {
  color: #b8c1ec; /* calm spiritual lavender */
}

/* ================= JOURNEY SECTION COLORS ================= */

#karmic-landing .journey-section {
  background: #060915; /* deep cosmic base */
}

#karmic-landing .journey-title {
  color: #f5f2e9; /* sacred white */
}

#karmic-landing .journey-hint {
  color: #b8c1ec; /* spiritual lavender */
}

#karmic-landing .journey-step h4 {
  color: #ffffff; /* clear focus text */
}

#karmic-landing .journey-step p {
  color: #cfd6ff; /* soft readable calm */
}

/* ================= AI GUIDANCE SECTION ================= */

.ai-guidance-section {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #0c1024, #050814);
  text-align: center;
}

.ai-guidance-inner {
  max-width: 820px;
  margin: auto;
}

.ai-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #c9a24d;
  margin-bottom: 12px;
}

.ai-subtitle {
  font-size: 1rem;
  color: #d6dbff;
  line-height: 1.7;
  margin-bottom: 28px;
}

.ai-points {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.ai-points li {
  font-size: 0.95rem;
  color: #cfd6ff;
  margin-bottom: 10px;
}

.ai-actions .btn {
  margin-bottom: 12px;
}

.ai-note {
  font-size: 0.8rem;
  color: #9aa0c3;
}

