:root {
  --crimson: #b91c1c;
  --crimson-dark: #7f1d1d;
  --crimson-deep: #450a0a;
  --gold: #d97706;
  --gold-light: #fcd34d;
  --cream: #fef3c7;
  --off-white: #fff8f0;
  --text: #1c0a00;
  --muted: #78350f;
  --r: "Poppins", sans-serif;
  --s: "Poppins", sans-serif;
  --max: 1200px;
  --primary: #f5970f;
  /* Updated Color Palette as requested */
  --primary: #f5970f; /* Primary Gold/Orange */
  --primary-light: #ffb03b; /* Lighter shade for gradients */
  --secondary: #a40003; /* Secondary Deep Red */
  --secondary-dark: #7a0002; /* Darker shade for gradients */
  --black: #000000;
  --white: #ffffff;


  --red: var(--secondary);
  --red-deep: var(--secondary-dark);
  --dark: var(--black);

  --text-body: #333333; /* Dark grey for readability on white */
  --text-muted: #666666;
  --border: rgba(245, 151, 15, 0.2);
  --max-w: 1300px;
  --bs-body-font-size: 1.8rem;
  

  
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--s);
  background: var(--white);
   color: var(--text-body); 
   overflow-x: hidden;
}


/* ── TICKER ── */
.ticker {
  background: var(--crimson-dark);
  color: var(--gold-light);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 40s linear infinite; /* slower */
}

.ticker-inner span {
  margin: 0 2rem;
}

@keyframes ticker {
  from {
    transform: translateX(100%);
  } /* 🔥 start from right */
  to {
    transform: translateX(-100%);
  } /* move fully left */
}


.logo-text {
  font-family: var(--r);
  font-size: 1.35rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--s);
  font-size: 0.6rem;
  color: #ef9090;
  letter-spacing: 0.12em;
  display: block;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold-light);
}
.nav-cta {
  background: var(--gold);
  color: var(--crimson-deep);
  font-family: var(--s);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--gold-light);
}
.astro-section{
  padding: 0 !important;
}

.hero,
.astro-section-mobile{
    display: none;
  }
  .hero-banner-desktop,
  .astro-section-desktop{
    display: block;
  }

/* ── WRAPPER ── */
.page-wrap {
  max-width: var(--max);
  margin: 0 auto;
}

/* ── HERO ── */
.hero {
  overflow: hidden;
}
.hero::before,
.pain-section::before,
.offer-section::before,
.astro-section::before {
  pointer-events: none; /* 🔥 allow clicks to pass through */
}
.hero,
.pain-section,
.offer-section,
.astro-section {
  position: relative;
  z-index: 1;
}

.hero::before,
.pain-section::before,
.offer-section::before,
.astro-section::before {
  z-index: 0; /* keep background behind */
}
.hero,
.pain-section,
.offer-section{
  background: linear-gradient(
    135deg,
    var(--crimson-deep) 0%,
    var(--crimson) 55%,
    #991b1b 100%
  );
  padding: 0;
  position: relative;
}
.hero::before,
.pain-section::before,
.offer-section::before,
.astro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FCD34D' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.hero-left {
  padding: 72px 48px 72px 48px;
}
.hero-right {
  /* background: rgba(0,0,0,0.2);
    border-left: 1px solid rgba(252,211,77,0.15); */
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.hero-badge {
  display: inline-block;
  background: rgba(252, 211, 77, 0.15);
  border: 1px solid rgba(252, 211, 77, 0.4);
  color: var(--gold-light);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--r);
  font-size: 4.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}
.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
  display: block;
}
.hero-label {
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  /* margin-bottom: 18px; */
}
.desktop-label {
  display: block;
}

.mobile-labels {
  display: none;
}
.hero-sub {
  font-size: 15px;
  color: #fff;
  line-height: 2;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-stars {
  color: var(--gold-light);
  font-size: 2rem;
  margin-bottom: 4px;
}

.hero-rating-text,
.hero-guarantee {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

/* Right panel form */
.hero-form-title {
  font-family: var(--r);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.hero-form-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-form input,
.hero-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(252, 211, 77, 0.25);
  border-radius: 10px;
  font-family: var(--s);
  font-size: 0.9rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.hero-form input::placeholder {
  color: #fff;
}
.hero-form input:focus,
.hero-form select:focus {
  border-color: var(--gold-light);
}
.hero-form select {
  color: #fff;
}
.hero-form select option {
  color: var(--text);
  background: #fff;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
  color: var(--crimson-deep);
  font-family: var(--s);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 24px rgba(217, 119, 6, 0.5);
  transition: transform 0.2s;
  animation: pulse 2.5s ease-in-out infinite;
  margin-top: 4px;
}
.hero-form-submit:active {
  transform: scale(0.98);
}
.brahmvid-astro-image-wrapper {
  position: relative;
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mandala-bg {
  position: absolute;
  max-width: 465px;
  opacity: 1.25;
  animation: rotateMandala 30s linear infinite;
  z-index: 0;
  margin-right: -109px;
}

.astro-img {
  max-width: 700px;
  height: auto;
  z-index: 1;
  position: relative;
  margin-bottom: -175px;
}
.astro-photo-wrap .astro-img {
  margin-bottom: unset;
}
.astro-photo-wrap .mandala-bg {
  margin-top: -147px;
}
@keyframes rotateMandala {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(217, 119, 6, 0.5);
  }
  50% {
    box-shadow: 0 8px 36px rgba(217, 119, 6, 0.8);
  }
}
.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(252, 211, 77, 0.3);
  border-radius: 50px;
  padding: 10px 24px;
  margin-bottom: 10px;
}
.price-old {
  font-size: 1.8rem;
  color: #fff;;
  text-decoration: line-through;
}
.price-new {
  font-family: var(--r);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}
.price-label {
  font-size: 0.7rem;
  color: var(--cream);
  font-weight: 600;
}
.form-guarantee {
  font-size: 1rem;
  color: #fff;;
  text-align: center;
  margin-top: 4px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid rgba(252, 211, 77, 0.15);
}
.trust-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px 24px;
}
.trust-item {
  text-align: center;
  flex: 1;
  min-width: 80px;
  padding: 6px 8px;
}
.trust-num {
  font-family: var(--s);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--black);
  display: block;
}
.trust-label {
  font-size: 1.5rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ── SECTION BASE ── */
section {
  padding: 72px 24px;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-tag {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-desc {
  font-size: 1.5rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 640px;
}

/* ── PAIN POINTS ── */
.pain-section {
  /* background: linear-gradient(160deg, var(--crimson-deep) 0%, var(--crimson) 100%); */
  padding: 72px 24px;
}
.pain-section .section-title {
  color: #fff;
}
.pain-section .section-desc {
  color: #fff;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pain-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(252, 211, 77, 0.2);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.pain-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.pain-icon {
  font-size: 2rem;
  /* margin-bottom: 10px; */
}
.pain-title {
  font-family: var(--r);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.3;
  margin-bottom: 6px;
}
.pain-desc {
  font-size: 1.5rem;
  color: #fff;
  line-height: 2;
}

/* ── WHAT'S INSIDE ── */
.inside-section {
  background: var(--off-white);
}
.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.inside-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(185, 28, 28, 0.1);
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.inside-item:hover {
  box-shadow: 0 6px 24px rgba(185, 28, 28, 0.1);
  transform: translateY(-3px);
}
.inside-num {
  font-family: var(--r);
  font-size: 3.4rem;
  font-weight: 900;
  color: rgba(185, 28, 28, 0.12);
  line-height: 1;
  /* min-width: 40px; */
  color: #f5970f;
  /* margin-top: -5px; */
}
.inside-title {
  font-family: var(--r);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--crimson);
  margin-bottom: 6px;
}
.inside-desc {
  font-size: 1.5rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── WHO IS IT FOR ── */
.who-section {
  background: #fff1e6;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.who-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 18px;
  border-left: 3px solid var(--crimson);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}
.who-card:hover {
  transform: translateY(-3px);
}
.who-emoji,
.achieve-icon {
  font-size: 2.6rem;
}
.who-title {
  font-family: var(--r);
  font-size: 2rem;
  font-weight: 700;
  color: var(--crimson-dark);
  margin-bottom: 5px;
}
.who-desc {
  font-size: 1.6rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── HOW IT WORKS ── */
.steps-section {
  background: var(--off-white);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 50px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--crimson), rgba(185, 28, 28, 0.2));
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 0;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-family: var(--r);
  font-size: 2.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(185, 28, 28, 0.4);
}
.step-title {
  font-family: var(--r);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--crimson-deep);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── ASTROLOGER ── */
.astro-section {
  /* background: linear-gradient(160deg, var(--crimson-deep) 0%, #3D0000 100%); */
  /* padding: 80px 24px 0; */
  overflow: hidden;
}
.astro-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0px;
  gap: 48px;
  /* align-items: flex-end; */
}
.astro-text {
  width: 70%;
  margin-top: auto;
    margin-bottom: auto;
 }
.astro-section .section-tag {
  color: var(--gold);
}
.astro-name {
  font-family: var(--r);
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.astro-bio {
  font-size: 1.7rem;
  color: #fff;
  line-height: 1.9;
}
.astro-photo-wrap {
  position: relative;
  width: 100%;
  align-self: flex-end;
}
.astro-mandala {
  position: absolute;
  right: 75px;
  top: -60px;
  width: 280px;
  height: 280px;
  opacity: 0.12;
}
.astro-photo {
  width: 100%;
  max-width: 360px;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 -8px 30px rgba(0, 0, 0, 0.5));
}

/* ── ACHIEVEMENTS ── */
.astro-achievements {
  background: #fff1e6;
  padding: 64px 24px;
}
.achieve-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.achieve-title {
  font-family: var(--r);
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--crimson-deep);
  text-align: center;
  margin-bottom: 6px;
}
.achieve-sub {
  font-size: 1.5rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}
.achieve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.achieve-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  border-bottom: 3px solid var(--crimson);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}
.achieve-card:hover {
  transform: translateY(-4px);
}
/* .achieve-icon { font-size: 1.6rem; margin-bottom: 8px; } */
.achieve-name {
  font-family: var(--s);
  font-size: 2rem;
  font-weight: 700;
  color: var(--crimson-deep);
  margin-bottom: 4px;
  line-height: 1.6;
}
.achieve-desc {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── COMPARISON ── */
.compare-section {
  background: #fff;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
.compare-table thead {
  background: var(--crimson-deep);
  color: #fff;
}
.compare-table th {
  padding: 18px 20px;
  text-align: left;
  font-family: var(--r);
  font-size: 2rem;
}
.compare-table th:last-child {
  background: var(--gold);
  color: var(--crimson-deep);
  text-align: center;
}
.compare-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #f3e8e0;
  color: var(--muted);
  font-size: 1.5rem;
}
.compare-table td:nth-child(2) {
  text-align: center;
}
.compare-table td:last-child {
  text-align: center;
  background: rgba(217, 119, 6, 0.05);
  font-weight: 700;
  color: var(--crimson);
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.x {
  color: #ccc;
  font-size: 1.1rem;
}
.ck {
  color: var(--crimson);
  font-size: 1.1rem;
}

/* ─── TESTIMONIALS ──────────────────── */
.testimonials-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.testimonials-track-wrap {
  overflow: hidden;
  cursor: grab;
}

.testimonials-track-wrap:active {
  cursor: grabbing;
}
#testimonials {
  padding: 96px 0;
  background: #fff1e6;
  overflow: hidden;
}
.testimonials-track-wrap {
  overflow: hidden;
  padding: 8px 0 20px;
  cursor: grab;
}
.testimonials-track-wrap:active {
  cursor: grabbing;
}
.testimonials-track {
  display: flex;
  gap: 26px;
  width: max-content;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 34px 30px;
  width: 340px;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease;
  user-select: none;
}
.testimonial-quote {
  font-size: 48px;
  line-height: 0.8;
  color: var(--primary);
  font-family: Georgia, serif;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
  min-height: 120px;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}
.stars {
  color: var(--primary);
  font-size: 12px;
  margin-bottom: 3px;
}
/* ─── UTILITY ─────────────────────────── */
.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.gold-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 30px;
}
.section-title span {
  color: var(--primary);
}
.divider-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 28px;
  justify-content: center;
}
.divider-ornament .line {
  flex: 1;
  max-width: 170px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-light), transparent);
}
.divider-ornament .line.right {
  background: linear-gradient(270deg, var(--primary-light), transparent);
}
.divider-ornament .star {
  color: var(--primary);
  font-size: 18px;
}

/* ── OFFER + FORM COMBINED ── */
.offer-section {
  /* background: linear-gradient(160deg, var(--crimson-deep) 0%, var(--crimson) 100%); */
  padding: 48px 24px;
}
.offer-split {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
/* Left: offer info */
.offer-left {
  text-align: center;
}
.offer-badge {
  /* display: inline-block; */
  background: var(--gold);
  color: var(--crimson-deep);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  width: 50%;
}
.offer-title {
  font-family: var(--r);
  font-size: 3.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}
.offer-title span {
  color: var(--gold-light);
}
.offer-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  line-height: 1.6;
}
.offer-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(252, 211, 77, 0.3);
  border-radius: 20px;
  padding: 24px 18px;
  margin-bottom: 20px;
  text-align: left;
}
.offer-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}
.offer-old {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}
.offer-new {
  font-family: var(--r);
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--gold-light);
}
.offer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.offer-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
}
.offer-feat::before {
  content: "✓";
  color: var(--gold-light);
  font-weight: 700;
}
.free-tag {
  font-size: 1.5rem;
  color: var(--gold-light);
  background: rgba(252, 211, 77, 0.12);
  border: 1px dashed rgba(252, 211, 77, 0.4);
  border-radius: 8px;
  padding: 10px 14px;
  margin: 14px 0 0;
  text-align: center;
  font-weight: 600;
}
.offer-cta {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
  color: var(--crimson-deep);
  font-family: var(--s);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 32px rgba(217, 119, 6, 0.5);
  margin-bottom: 12px;
  animation: pulse 2.5s ease-in-out infinite;
  text-align: center;
}
.offer-note {
  font-size: 0.72rem;
  color: #fff;
  text-align: center;
  display: block;
}

/* Right: form card */

.offer-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  border-top: 4px solid var(--gold);
}
.offer-form-title {
  font-family: var(--r);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--crimson-deep);
  margin-bottom: 4px;
  text-align: center;
}
.offer-form-sub {
  font-size: 1.2rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 20px;
}
.offer-form-group {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.offer-form-group input,
.offer-form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e5d5c5;
  border-radius: 12px;
  font-family: var(--s);
  font-size: 1.2rem;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.offer-form-group input:focus,
.offer-form-group select:focus {
  border-color: var(--crimson);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.offer-form-submit {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--crimson) 0%,
    var(--crimson-dark) 100%
  );
  color: #fff;
  font-family: var(--s);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 15px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 20px rgba(185, 28, 28, 0.4);
  transition: transform 0.2s;
  margin-top: 4px;
}
.offer-form-submit:active {
  transform: scale(0.98);
}
.form-guarantee {
  font-size: 1rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

/* ── FORM (old standalone — keep for mobile fallback) ── */
.form-section {
  display: none;
} /* hidden — merged into offer section */


/* ── STICKY BOTTOM CTA (only on mobile) ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, var(--crimson-deep), var(--crimson));
  border-top: 1px solid rgba(252, 211, 77, 0.3);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 200;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  gap: 10px;
}
.sticky-price .old {
  font-size: 2rem;
  color: #fff;;
  text-decoration: line-through;
}
.sticky-price .new {
  font-family: var(--r);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
}
.sticky-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
  color: var(--crimson-deep);
  font-family: var(--s);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


  /* ═══════════════════════════════════════════
     SECTION WRAPPER
  ═══════════════════════════════════════════ */
  .brahm-kundali-rpts-video-section {
    position: relative;
    display: grid;
    grid-template-columns: 55% 45%;
    overflow: hidden;
    background: var(--off-white);
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }

  /* ═══════════════════════════════════════════
     LEFT — VIDEO SIDE
  ═══════════════════════════════════════════ */
  .brahm-kundali-rpts-video-wrapper {
    position: relative;
    overflow: hidden;
  }

  .brahm-kundali-rpts-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Decorative diagonal overlay on right edge */
  .brahm-kundali-rpts-video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      transparent 60%,
      var(--off-white) 100%
    );
    pointer-events: none;
  }

  /* Subtle dark vignette on left/top */
  .brahm-kundali-rpts-video-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(28,16,8,0.35) 0%,
      transparent 55%
    );
    pointer-events: none;
    z-index: 1;
  }

  /* Video overlay tag */
  .brahm-kundali-rpts-video-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(28,16,8,0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201,147,58,0.4);
    border-radius: 30px;
    padding: 6px 14px 6px 10px;
    color: var(--cream);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .brahm-kundali-rpts-video-tag .brahm-kundali-rpts-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-light);
    animation: brahm-kundali-rpts-pulse 2s ease-in-out infinite;
  }

  @keyframes brahm-kundali-rpts-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.3); }
  }

  /* ═══════════════════════════════════════════
     RIGHT — TEXT SIDE
  ═══════════════════════════════════════════ */
  .brahm-kundali-rpts-text-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 56px 60px 40px;
    background: var(--off-white);
    overflow: hidden;
  }

  /* Decorative star watermark */
  .brahm-kundali-rpts-text-wrapper::before {
    content: '✦';
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-size: 280px;
    color: rgba(201,147,58,0.06);
    line-height: 1;
    pointer-events: none;
    font-family: serif;
  }

  /* Thin vertical gold rule on left */
  .brahm-kundali-rpts-text-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 2px;
    background: linear-gradient(
      to bottom,
      transparent,
      var(--gold-light),
      transparent
    );
  }

  .brahm-kundali-rpts-text-inner {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
  }

  .brahm-kundali-rpts-text-inner.brahm-kundali-rpts-visible {
    opacity: 1;
    transform: translateY(0);
  }


  /* Main heading */
  .brahm-kundali-rpts-heading {
    font-family: var(--s);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 16px;
  }

  .brahm-kundali-rpts-heading span {
    color: var(--crimson);
  }

  /* Sub / italic byline */
  .brahm-kundali-rpts-byline {
    font-family: var(--s);
    font-size: 17px;
    color: var(--gold-light);
    margin-bottom: 20px;
  }

  /* Divider */
  .brahm-kundali-rpts-divider {
    width: 48px;
    height: 1px;
    background: linear-gradient(
      to right,
      var(--gold-light),
      transparent
    );
    margin-bottom: 20px;
  }

  /* Description */
  .brahm-kundali-rpts-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 32px;
  }

  /* CTA Button */
  .brahm-kundali-rpts-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
      background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-dark) 100%);
    font-family: var(--s);
    font-weight: 700;
    font-size: 1.5rem;
    padding: 15px;
    border: none;
    border-radius: 50px;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 20px rgba(185, 28, 28, 0.4);
    transition: transform 0.2s;
    margin-top: 4px;
  }

  .brahm-kundali-rpts-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
  }

  

  .brahm-kundali-rpts-cta-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
  }
  .brahm-kundali-rpts-cta-btn:hover{
    color: #fff !important;
  }

  /* ═══════════════════════════════════════════
     STAR DECORATIONS
  ═══════════════════════════════════════════ */
  .brahm-kundali-rpts-stars {
    position: absolute;
    top: 28px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0.35;
  }

  .brahm-kundali-rpts-stars span {
    font-size: 8px;
    color: var(--gold-light);
    letter-spacing: 6px;
  }

  
/* BOTH PLACE DROPDOWNS */
#placeSuggestions,
#userAddressSuggestions{
  background: var(--off-white);
  border: 1px solid #ddd;
  max-height: 220px;
  overflow-y: auto;
  width: 100%;
  z-index: 9999;
  margin-top: 6px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  /* position: absolute; */
  left: 0;
  top: 100%;
}

/* EACH ITEM */
.place-item{
  padding: 12px 14px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  transition: 0.2s ease;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: #000;
}

/* LAST ITEM */
.place-item:last-child{
  border-bottom: none;
}

/* HOVER */
.place-item:hover{
  background: #f3f3f3;
}

/* SCROLLBAR */
#placeSuggestions::-webkit-scrollbar,
#userAddressSuggestions::-webkit-scrollbar{
  width: 6px;
}

#placeSuggestions::-webkit-scrollbar-thumb,
#userAddressSuggestions::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,0.2);
  border-radius: 20px;
}

/* WRAPPER */
.place-wrapper{
  position: relative;
  width: 100%;
}

/* FLATPICKR */
 .flatpickr-calendar{
  width: 230.875px !important;
}


/* ── RESPONSIVE: TABLET ── */
@media (max-width: 1024px) {
  .hero-sub{
    margin: 0 auto;

  }
  .hero {
    padding: 44px 24px 52px;
    text-align: center;
    position: relative;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-left {
    padding: 56px 40px 40px;
  }
  .hero-right {
    border-left: none;
    border-top: 1px solid rgba(252, 211, 77, 0.15);
    padding: 40px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .astro-inner {
    grid-template-columns: 1fr 280px;
  }
  .achieve-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .faq-inner {
    grid-template-columns: 1fr;
  }
  .faq-col {
    gap: 8px;
  }
  .hero-badge {
    font-size: 0.78rem;
  }
   .divider-ornament{
    justify-content: left !important;
  }
  .hero,
  .astro-section-mobile{
    display: block;
  }
  .hero-banner-desktop,
  .astro-section-desktop{
    display: none;
  }
}
@media (min-width: 900px) {
  /* Offer + form combined — desktop 50/50 split */
  .offer-section {
    padding: 80px 48px;
  }
  .offer-split {
    flex-direction: row;
    align-items: stretch;
    gap: 56px;
    max-width: 1140px;
    margin: 0 auto;
  }
  .offer-left {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .offer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .offer-title {
    font-size: 3.4rem;
  }
  .offer-features {
    grid-template-columns: 1fr 1fr;
  }
  .offer-cta {
    max-width: 100%;
  }
  .offer-form-card {
    padding: 36px 32px;
  }
  .offer-form-title {
    font-size: 2.5rem;
    text-align: left;
  }
  .offer-form-sub {
    text-align: left;
  }
  .trust-label {
    font-size: 1rem;
  }

  .trust-num {
    font-size: 2.5rem;
  }

 
}
@media (max-width: 768px) {
 
  .brahm-kundali-rpts-video-section {
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto;
  }

  .brahm-kundali-rpts-video-wrapper::after {
    background: linear-gradient(
      to bottom,
      transparent 60%,
      var(--off-white) 100%
    );
  }

  .brahm-kundali-rpts-text-wrapper {
    padding: 40px 28px 48px;
  }

  .brahm-kundali-rpts-text-wrapper::after { display: none; }
  .astro-text{
    text-align: center;
    width: 100% !important;

  }
    .desktop-label {
    display: none;
  }

  .mobile-labels {
    display: block;
  }
}
/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 700px) {
  .astro-section-mobile{
    padding: 0 !important;
  }
  .brahmvid-booking-left{
        margin-top: 25px;
  }
  .astro-inner{
    display: block !important
  }
  
  .brahm-kundali-rpts-video-section {
        padding: 0 !important
    }
    .brahm-heading-block {
      margin-bottom: 15px !important; 
    }

  .offer-badge{
        display: inline-block;
        width: 100%;
  }
  nav {
    padding: 12px 16px;
  }
  .nav-links {
    display: none;
  }
  .hero-left {
    padding: 10px 20px 10px;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .hero-sub {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
  .hero-right {
    padding: 28px 20px;
    display: none;
  }
  section {
    padding: 48px 16px !important;
  }
  .section-title {
    margin-bottom: 25px;
  }
  .section-desc {
    margin-bottom: 25px;
  }
  .pain-title {
    font-size: 1.6rem;
  }
  .pain-desc {
    line-height: 1.5;
  }
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }
  .inside-grid {
    grid-template-columns: 1fr;
  }
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .steps::before {
    display: none;
  }
  .step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid rgba(185, 28, 28, 0.1);
  }
  .step:last-child {
    border-bottom: none;
  }
  .step-num {
    margin: 0;
    flex-shrink: 0;
  }
  .astro-inner {
    grid-template-columns: 1fr;
  }
  .astro-photo {
    max-width: 200px;
  }
  .achieve-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  .offer-features {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-inner {
    grid-template-columns: 1fr;
  }
  .offer-title {
    font-size: 1.9rem;
  }
  .offer-cta {
    padding: 18px 32px;
  }

  .brahmvid-astro-image-wrapper {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center; /* center image horizontally */
    align-items: flex-end; /* keep it towards bottom */
    margin-top: 60px;
    order: 2;
  }

  .mandala-bg {
    max-width: 260px;
    margin-right: 0;
    opacity: 0.9;
  }

  .astro-img {
    max-width: 369px;
    margin-bottom: -80px; /* slightly bottom placed */
    margin-left: -5px;
  }
  .trust-num {
    font-size: 2rem;
  }
  .trust-label {
    font-size: 0.9rem;
  }
  .inside-desc,
  .section-tag,
  .section-tag,
  .who-desc,
  .astro-bio,
  .achieve-sub {
    font-size: 1.2rem;
  }
  .inside-num {
    font-size: 2.4rem;
    margin-top: -3px;
  }
  .inside-title,
  .who-title,
  .achieve-name {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: clamp(18px, 3.5vw, 34px);
  }
  .steps {
    margin-top: 25px;
  }
  .astro-name,
  .achieve-title {
    font-size: 2.2rem;
  }
  .astro-bio {
    line-height: 1.9;
  }
  .astro-inner {
    gap: unset;
  }
  .astro-photo-wrap .astro-img {
    margin-bottom: -50px;
  }
  .testimonial-card {
    width: 280px;
  }
  .testimonial-text {
    font-size: 11.5px;
  }
  .testimonials-track {
    gap: 20px;
  }
  .offer-new {
    font-size: 2.6rem;
  }
  .astro-text{
    text-align: center;
    width: 100% !important;

  }
  .compare-table th{
    font-size: 1.8rem;
  }
  .compare-table td {
    font-size: 1.2rem;
  }
  .trust-item {
      text-align: center;
      width: 33.3%;
      text-align: center;
      margin-bottom: 11px;
      flex: none;
    }
    .pain-card {
      padding: 18px 5px;
    }
   .pain-desc {
    font-size: 1.3rem; 
   }
  
  .offer-feat{
    min-width: max-content;
    font-size: 1rem;
  }
  .offer-features{
    gap: 14px;
  }
  
  /* FLATPICKR */
  .flatpickr-calendar{
    width: 272.875px !important;
  }
}

@media (min-width: 701px) {
  .sticky-cta {
    display: none;
  }
}



/* ═══════════════════════════════════════
   SECTION WRAPPER
═══════════════════════════════════════ */
.brahm-section {
  max-width: 1100px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   TOP SEPARATOR
═══════════════════════════════════════ */
.brahm-top-sep {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}
.brahm-sep-line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.brahm-top-sep .brahm-sep-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.brahm-sep-text {
  font-family: var(--r);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   HEADING BLOCK
═══════════════════════════════════════ */
.brahm-heading-block {
  text-align: center;
  margin-bottom: 48px;
}
.brahm-what-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.brahm-heading-block span {
  font-family: var(--r);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
  text-transform: uppercase;
}
.brahm-dia { color: var(--gold); font-size: 9px; }
.brahm-what-label h2 {
  font-family: var(--r);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

/* ═══════════════════════════════════════
   DESKTOP LAYOUT  — 3-column grid
═══════════════════════════════════════ */
.brahm-grid {
  display: grid;
  grid-template-columns: 1fr 250px 1fr;
  grid-template-rows: auto auto;
  gap: 20px 0;
  align-items: center;
}

/* Book cell spans both rows */
.brahm-book-cell {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 4;
}
.brahm-book-cell img {
  width: 233px;
  border-radius: 12px;
  display: block;

  background: transparent;

  box-shadow:
    0 16px 48px rgba(60,15,0,0.28),
    0 0 0 3px rgba(196,132,58,0.3);

  animation: brahm-glow 3s ease-in-out infinite;

  min-height: 296px;
  object-fit: fill;
}
@keyframes brahm-glow {
  0%,100% { box-shadow: 0 16px 48px rgba(60,15,0,0.28), 0 0 0 3px rgba(196,132,58,0.3); }
  50%      { box-shadow: 0 20px 56px rgba(60,15,0,0.36), 0 0 0 6px rgba(196,132,58,0.50); }
}
.brahm-byline {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  color: var(--gold-dark);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ═══════════════════════════════════════
   CARDS — shared
═══════════════════════════════════════ */
.brahm-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  animation: brahm-fadeUp 0.5s ease both;
  border: 1px solid rgba(196,132,58,0.08);
}
.brahm-card .brahm-icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 4px;
}
.brahm-card .brahm-title {
  font-family: var(--r);
  font-size: 26px;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1.5;
}
.brahm-card .brahm-desc {
  font-size: 20px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
}

@keyframes brahm-fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Left cards: arrow → pointing RIGHT ── */
.brahm-card.brahm-left {
  grid-column: 1;
  text-align: left;
}
.brahm-card.brahm-left::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 2px;
  background: var(--gold);
}
.brahm-card.brahm-left::before {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px; height: 12px;
  border-right: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
}

/* ── Right cards: arrow ← pointing LEFT ── */
.brahm-card.brahm-right {
  grid-column: 3;
  text-align: left;
}
.brahm-card.brahm-right::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 2px;
  background: var(--gold);
}
.brahm-card.brahm-right::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(225deg);
  width: 12px; height: 12px;
  border-right: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
}

/* Row placement */
.brahm-tl { grid-row: 1; }
.brahm-bl { grid-row: 2; }
.brahm-tr { grid-row: 1; }
.brahm-br { grid-row: 2; }

/* Animation delays */
.brahm-tl { animation-delay: 0.05s; }
.brahm-bl { animation-delay: 0.15s; }
.brahm-tr { animation-delay: 0.10s; }
.brahm-br { animation-delay: 0.20s; }

/* Vertical connector lines between rows (desktop only) */
.brahm-left-connector,
.brahm-right-connector {
  display: none; /* shown via pseudo on grid wrapper */
}

/* ═══════════════════════════════════════
   TABLET  768px–1024px
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .brahm-grid {
    grid-template-columns: 1fr 180px 1fr;
    gap: 16px 0;
  }
  .brahm-book-cell img { 
    /* width: 140px;  */
    min-height: unset;
  }
}

/* ═══════════════════════════════════════
   MOBILE  ≤ 640px  — original stacked layout
═══════════════════════════════════════ */
@media (max-width: 640px) {

  .brahm-grid {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px 0;
    max-width: 440px;
    margin: 0 auto;
    padding: 0 4px;
  }

  .brahm-book-cell {
    padding: 0 8px;
  }
  .brahm-book-cell img {
     /* width: 110px;  */
     height: auto;
    }

  .brahm-card {
    padding: 10px 10px;
    border-radius: 12px;
    gap: 3px;
  }
  .brahm-card .brahm-icon  { font-size: 18px; }
  .brahm-card .brahm-title { font-size: 12px; }
  .brahm-card .brahm-desc  { font-size: 6px; }

  /* Tighter arrows on mobile */
  .brahm-card.brahm-left::after  { right: -13px; width: 10px; }
  .brahm-card.brahm-left::before { right: -17px; width: 5px; height: 5px; }
  .brahm-card.brahm-right::after  { left: -13px; width: 10px; }
  .brahm-card.brahm-right::before { left: -17px; width: 5px; height: 5px; }
}

/* ═══════════════════════════════════════
   VERY SMALL MOBILE  ≤ 380px
═══════════════════════════════════════ */
@media (max-width: 380px) {
  .brahm-book-cell img { 
    /* width: 88px;  */
    min-height: unset;
  }
  .brahm-card .brahm-title { font-size: 11px; }
      .hero-badge {
        font-size: 0.75rem;
    }
}
