@import url('https://fonts.googleapis.com/css2?family=Hind:wght@400;500;600;700&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
  --bg-dark: #0b0d17;
  --bg-card: #15192b;
  --bg-card-hover: #1c223a;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --accent-gold: #f59e0b;
  --accent-gold-bright: #fbbf24;
  --accent-red: #ef4444;
  --accent-green: #10b981;
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --red-gradient: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  --dark-gradient: linear-gradient(180deg, #0b0d17 0%, #111425 100%);
  --glow-gold: 0 0 25px rgba(245, 158, 11, 0.4);
  --glow-red: 0 0 20px rgba(239, 68, 68, 0.4);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Hind', 'Outfit', system-ui, -apple-system, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for fixed bottom bar */
}

/* Full Page Hero Container for Direct Visits */
.full-page-hero-container {
  display: none;
  width: 100%;
  padding: 20px 15px;
  text-align: center;
  background: var(--bg-dark);
}

html.show-full-hero-only .full-page-hero-container {
  display: block;
}

.full-page-hero-container a {
  display: inline-block;
  max-width: 650px;
  width: 100%;
}

.full-page-hero-container img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--glow-gold);
  border: 2px solid var(--accent-gold);
  display: block;
  margin: 0 auto;
}

/* Top Announcement Bar */
.top-bar {
  background: var(--red-gradient);
  color: white;
  text-align: center;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.top-bar .timer {
  background: rgba(0, 0, 0, 0.35);
  padding: 3px 10px;
  border-radius: 20px;
  font-family: monospace;
  letter-spacing: 1px;
  font-weight: 700;
  color: #fff;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Common Styling */
section {
  padding: 55px 0;
  position: relative;
}

.section-tag {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-gold-bright);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Outfit', 'Hind', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  color: white;
}

.section-title span.highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title span.highlight-red {
  color: var(--accent-red);
}

/* Hero Section */
.hero {
  background: radial-gradient(circle at top center, rgba(245, 158, 11, 0.14) 0%, rgba(11, 13, 23, 1) 75%);
  text-align: center;
  padding-top: 45px;
  padding-bottom: 45px;
}

.hero-badge {
  background: rgba(239, 68, 68, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 8px 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.hero-title {
  font-family: 'Outfit', 'Hind', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 18px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 780px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--accent-gold-bright);
}

/* Book Image Hero */
.hero-book-wrapper {
  margin: 25px 0;
  position: relative;
  display: inline-block;
}

.hero-book-img {
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), var(--glow-gold);
  transition: transform 0.3s ease;
}

.hero-book-img:hover {
  transform: translateY(-8px) scale(1.02);
}

.discount-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--red-gradient);
  color: white;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: var(--glow-red);
  transform: rotate(12deg);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: rotate(12deg) scale(1); }
  50% { transform: rotate(12deg) scale(1.08); }
  100% { transform: rotate(12deg) scale(1); }
}

/* Price Display Block */
.price-container {
  background: rgba(21, 25, 43, 0.95);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-md);
  padding: 18px 25px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

.mrp-price {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.offer-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent-gold-bright);
}

.save-tag {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: #000000;
  font-weight: 900;
  font-size: 1.2rem;
  padding: 17px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--glow-gold), 0 10px 25px rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 450px;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px rgba(251, 191, 36, 0.7);
}

.sub-cta-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Pain Points Section */
.pain-section {
  background: #0f1220;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid rgba(239, 68, 68, 0.25);
  padding: 22px;
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.3s ease;
}

.pain-card:hover {
  border-color: rgba(239, 68, 68, 0.6);
  transform: translateY(-4px);
}

.pain-icon {
  width: 44px;
  height: 44px;
  background: rgba(239, 68, 68, 0.15);
  color: var(--accent-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.pain-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: white;
}

.pain-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Image Graphic Box */
.graphic-box {
  text-align: center;
  margin: 30px 0;
}

.graphic-img {
  width: 100%;
  max-width: 750px;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* Agitation Section */
.agitation-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, rgba(15, 18, 32, 1) 100%);
  border: 2px dashed rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  margin: 30px 0;
  text-align: center;
}

.agitation-box h3 {
  color: #ff6b6b;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.agitation-list {
  text-align: left;
  max-width: 650px;
  margin: 18px auto 0;
  list-style: none;
}

.agitation-list li {
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
}

.agitation-list li i {
  color: var(--accent-red);
  font-size: 1.1rem;
  margin-top: 3px;
}

/* 13 Points Section */
.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.point-item {
  background: var(--bg-card);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s ease;
}

.point-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-gold);
}

.point-number {
  background: var(--gold-gradient);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-content h4 {
  font-size: 1.05rem;
  color: white;
  margin-bottom: 4px;
}

.point-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Testimonials / Social Proof */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
  margin-top: 25px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--accent-gold-bright);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.92rem;
  color: #e2e8f0;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Reviewer footer: avatar + name block */
.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto; /* footer bottom par pinned rahe, chahe text chhota ho */
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.reviewer-avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--av1, #f59e0b) 0%, var(--av2, #b45309) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.28);
  user-select: none;
}

/* Asli photo daalne par: <img> avatar ko poora bhar de */
.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviewer-meta {
  min-width: 0;
}

.reviewer-name {
  font-weight: 700;
  color: var(--accent-gold-bright);
  font-size: 0.88rem;
  line-height: 1.35;
}

.reviewer-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.reviewer-desc .fa-circle-check {
  color: var(--accent-green);
  font-size: 0.72rem;
}

/* Slider dots (mobile only) */
.review-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.review-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s ease;
}

.review-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--accent-gold-bright);
}

/* Offer Box Section */
.offer-box {
  background: radial-gradient(circle at center, #1b2138 0%, #0f1220 100%);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 35px 20px;
  text-align: center;
  box-shadow: var(--glow-gold);
  position: relative;
  overflow: hidden;
}

.offer-ribbon {
  background: var(--accent-red);
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 5px 35px;
  position: absolute;
  top: 18px;
  right: -32px;
  transform: rotate(45deg);
}

/* Guarantee Section */
.guarantee-card {
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 25px 0;
}

.guarantee-icon {
  font-size: 2.8rem;
  color: var(--accent-green);
  flex-shrink: 0;
}

.guarantee-text h4 {
  color: var(--accent-green);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.guarantee-text p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* FAQ Accordion */
.faq-list {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px 18px;
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}

.faq-answer {
  padding: 0 18px 16px;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 4px;
  padding-top: 14px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Sticky Bottom Bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 13, 23, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(245, 158, 11, 0.4);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.8);
}

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.sticky-price {
  color: var(--accent-gold-bright);
  font-weight: 900;
  font-size: 1.15rem;
}

.sticky-btn {
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--glow-gold);
  white-space: nowrap;
}

/* Live Purchase Toast Popup */
.purchase-toast {
  position: fixed;
  bottom: 82px; /* sticky CTA bar ke upar, overlap na ho */
  left: 15px;
  /* right hataya: ab box content jitna hi chauda hoga, cap ke andar */
  width: max-content;
  max-width: min(290px, calc(100% - 30px));
  background: var(--bg-card);
  border: 1px solid var(--accent-gold);
  border-radius: 12px;
  padding: 9px 13px 9px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
  z-index: 98;
  transform: translateY(150px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.purchase-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Review cards jaisa initial-avatar; rang JS se set hote hain */
.toast-avatar {
  position: relative;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--av1, #fbbf24) 0%, var(--av2, #d97706) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.25);
  user-select: none;
}

/* Chhota verified tick avatar ke corner par */
.toast-check {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-green);
  color: #fff;
  font-size: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-card);
}

.toast-info {
  min-width: 0;
}

.toast-info p {
  font-size: 0.79rem;
  color: white;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toast-info span {
  display: block;
  font-size: 0.69rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Modal Popup for Payment / Order */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 15px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-card);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 25px 20px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--glow-gold);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.upi-options {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 16px 0;
  flex-wrap: wrap;
}

.upi-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
}

.footer {
  text-align: center;
  padding: 30px 16px 90px;
  color: var(--text-muted);
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===================================================
   CONVERSION VISUALS (CSS/SVG se bane, koi extra image request nahi)
   Inhe baad me asli render se replace karna ho to har block ke
   andar wala markup hata ke <img> laga dein.
   =================================================== */

/* --- 2. Instant delivery: phone mockup --- */
.delivery-box {
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin-top: 30px;
}

.phone-frame {
  position: relative;
  flex: 0 0 165px;
  width: 165px;
  aspect-ratio: 9 / 18;
  background: #05070f;
  border: 7px solid #232a45;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 158, 11, 0.16);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 13px;
  background: #232a45;
  border-radius: 0 0 8px 8px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Screen ke neeche "download ready" wali patti */
.phone-bar {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 10px;
  background: rgba(6, 9, 18, 0.92);
  border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: 8px;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.phone-bar i {
  color: var(--accent-green);
  font-size: 0.8rem;
}

.phone-bar span {
  font-size: 0.56rem;
  color: #e2e8f0;
  line-height: 1.3;
}

.delivery-steps {
  min-width: 0;
}

.delivery-steps li {
  list-style: none;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: #e2e8f0;
}

.delivery-steps li:last-child {
  margin-bottom: 0;
}

.delivery-steps .step-num {
  flex: 0 0 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 800;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- 3. Agitation: energy curve (conceptual illustration) --- */
.curve-box {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(239, 68, 68, 0.28);
  border-radius: var(--radius-md);
  padding: 18px 16px 12px;
  margin-top: 22px;
}

.curve-box svg {
  width: 100%;
  height: auto;
  display: block;
}

.curve-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}

.curve-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.curve-legend i {
  width: 14px;
  height: 3px;
  border-radius: 2px;
  display: inline-block;
}

.curve-note {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

/* ===================================================
   MOBILE UI OPTIMIZATION MEDIA QUERIES (<768px & <480px)
   =================================================== */
@media (max-width: 768px) {
  section {
    padding: 38px 0;
  }
  
  .container {
    padding: 0 15px;
  }

  .top-bar {
    font-size: 0.8rem;
    padding: 8px 10px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    line-height: 1.4;
  }

  .hero {
    padding-top: 25px;
    padding-bottom: 30px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: 1.55rem;
    line-height: 1.35;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .hero-book-wrapper {
    margin: 18px 0;
  }

  .hero-book-img {
    max-width: 240px;
  }

  .discount-badge {
    width: 62px;
    height: 62px;
    font-size: 0.72rem;
    top: -10px;
    right: -5px;
  }

  .price-container {
    padding: 8px 14px;
    width: auto;
    max-width: 295px;
    margin-top: 5px;
    margin-bottom: 14px;
    border-radius: var(--radius-sm);
  }

  .price-row {
    gap: 8px;
    align-items: center;
  }

  .mrp-price {
    font-size: 0.92rem;
  }

  .offer-price {
    font-size: 1.7rem;
  }

  .save-tag {
    font-size: 0.72rem;
    padding: 2px 8px;
  }

  .price-container p {
    font-size: 0.75rem !important;
    margin-top: 3px !important;
  }

  .cta-button {
    font-size: 1.05rem;
    padding: 14px 20px;
    border-radius: 40px;
  }

  .sub-cta-text {
    font-size: 0.78rem;
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 1.35;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pain-card {
    padding: 16px;
  }

  .pain-icon {
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .pain-card h3 {
    font-size: 1.02rem;
  }

  .pain-card p {
    font-size: 0.88rem;
  }

  .agitation-box {
    padding: 22px 14px;
    margin: 22px 0;
  }

  .agitation-box h3 {
    font-size: 1.2rem;
  }

  .agitation-list li {
    font-size: 0.9rem;
    padding: 8px 0;
  }

  .points-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .point-item {
    padding: 14px;
    gap: 12px;
  }

  .point-number {
    min-width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .point-content h4 {
    font-size: 0.98rem;
  }

  .point-content p {
    font-size: 0.86rem;
  }

  .offer-box {
    padding: 28px 16px;
  }

  .offer-ribbon {
    font-size: 0.68rem;
    padding: 4px 28px;
    top: 14px;
    right: -28px;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 18px 14px;
    gap: 10px;
  }

  .guarantee-icon {
    font-size: 2.3rem;
  }

  /* Reviews become a swipeable slider on mobile */
  .reviews-grid {
    display: flex;
    position: relative; /* makes it the offsetParent for dot-sync math */
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* bleed past the container so cards peek from the screen edges */
    margin-left: -15px;
    margin-right: -15px;
    padding: 4px 15px;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    padding: 16px;
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .review-dots {
    display: flex;
  }

  .sticky-bar {
    padding: 8px 12px;
  }

  .sticky-title {
    font-size: 0.78rem;
    max-width: 140px;
  }

  .sticky-price {
    font-size: 1.05rem;
  }

  .sticky-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  /* Conversion visuals — mobile */
  .delivery-box {
    flex-direction: column;
    gap: 22px;
    padding: 22px 16px;
  }

  .phone-frame {
    flex-basis: 150px;
    width: 150px;
  }

  .delivery-steps li {
    font-size: 0.86rem;
  }

  .purchase-toast {
    bottom: 74px;
    left: 10px;
    max-width: min(255px, calc(100% - 20px));
    padding: 7px 11px 7px 8px;
    gap: 8px;
  }

  .toast-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.72rem; /* "रा"/"वि" jaise 2-akshar initials clip na hon */
  }

  .toast-info p {
    font-size: 0.74rem;
  }

  .toast-info span {
    font-size: 0.65rem;
  }
}

/* ==========================================================================
   High Converting Visual Assets Styling (Before/After, Chat Proofs, Bonus)
   ========================================================================== */

/* Transformation Before/After Section */
.transformation-section {
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.08) 0%, rgba(11, 13, 23, 1) 70%);
}

.transformation-card {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 158, 11, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transformation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(245, 158, 11, 0.25);
}

.transformation-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.transformation-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 18px 20px;
  background: rgba(15, 18, 32, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trans-badge {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.trans-badge.badge-before {
  background: rgba(239, 68, 68, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.trans-badge.badge-after {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Chat Screenshots Proof Grid */
.chat-proof-section {
  background: linear-gradient(180deg, rgba(11, 13, 23, 1) 0%, rgba(17, 24, 39, 0.9) 50%, rgba(11, 13, 23, 1) 100%);
}

.chat-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 850px;
  margin: 0 auto;
}

.chat-proof-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(16, 185, 129, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.chat-proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(16, 185, 129, 0.2);
}

.chat-proof-header {
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: white;
}

.chat-proof-img {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

.chat-proof-footer {
  padding: 14px 18px;
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--accent-gold-bright);
}

/* Graphic Captions & Pain Visual */
.pain-visual-img {
  border-color: rgba(239, 68, 68, 0.4) !important;
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.2) !important;
}

.graphic-caption {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Bonus Mockup Graphic */
.bonus-mockup-wrapper {
  max-width: 600px;
  margin: 25px auto 20px;
}

.bonus-mockup-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 158, 11, 0.2);
}

@media (max-width: 640px) {
  .transformation-badges {
    grid-template-columns: 1fr;
  }
  .chat-proof-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   UTM Keyword Filter: Full Page Hero Image View (when utm_keyword != 'sm')
   ========================================================================== */
html.show-full-hero-only,
html.show-full-hero-only body {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  background-color: #0b0d17 !important;
}

html.show-full-hero-only body > *:not(#fullPageHeroView) {
  display: none !important;
}

.full-page-hero-container {
  display: none;
}

html.show-full-hero-only .full-page-hero-container {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background: radial-gradient(circle at center, #171b2e 0%, #0b0d17 100%);
  padding: 15px;
  box-sizing: border-box;
}

html.show-full-hero-only .full-page-hero-container a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
}

html.show-full-hero-only .full-page-hero-container img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.35), 0 20px 40px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease;
}

html.show-full-hero-only .full-page-hero-container img:hover {
  transform: scale(1.02);
}


