/* ==========================================================================
   LUXURY INDIAN STYLING - HINDI LANDING PAGE
   Theme: Deep Red, Burgundy, Obsidian Black, Radiant Gold
   Typography: Noto Sans Devanagari, Rozha One, Cinzel, Outfit
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #080103;
  --bg-burgundy: #140207;
  --bg-surface: #1d040b;
  --bg-card: rgba(30, 5, 12, 0.85);
  --bg-card-hover: rgba(45, 8, 19, 0.95);
  
  --gold-light: #fff0a6;
  --gold-primary: #f5c842;
  --gold-rich: #e5b328;
  --gold-dark: #b8860b;
  --gold-gradient: linear-gradient(135deg, #fff0a6 0%, #f5c842 40%, #d4af37 70%, #b8860b 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(245, 200, 66, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  
  --red-accent: #c41e3a;
  --red-glow: rgba(196, 30, 58, 0.45);
  --red-btn-gradient: linear-gradient(135deg, #e62347 0%, #b81433 60%, #870b22 100%);
  --red-btn-hover: linear-gradient(135deg, #ff3358 0%, #c91a3c 60%, #9e102c 100%);
  
  --text-white: #ffffff;
  --text-light: #f3e8eb;
  --text-muted: #cbb3b9;
  --text-dim: #967d84;
  
  --border-gold: rgba(245, 200, 66, 0.28);
  --border-gold-bright: rgba(245, 200, 66, 0.65);
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Shadows */
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.8);
  --gold-glow: 0 0 25px rgba(245, 200, 66, 0.35);
  --red-button-glow: 0 8px 30px rgba(230, 35, 71, 0.55);

  /* Font Families */
  --font-hindi: 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-royal: 'Rozha One', 'Cinzel', serif;
  --font-english: 'Outfit', sans-serif;

  /* Transitions */
  --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Smooth Scroll */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-hindi);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(138, 14, 40, 0.35) 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(94, 7, 26, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(138, 14, 40, 0.25) 0%, transparent 50%),
    linear-gradient(180deg, #080103 0%, #140207 30%, #0d0205 70%, #060102 100%);
  background-attachment: fixed;
}

/* Container */
.container {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Typography Utilities */
.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.gold-text {
  color: var(--gold-primary);
  font-weight: 700;
}

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

/* Section Title Utility */
.section-title-wrap {
  margin-bottom: 35px;
}

.section-badge {
  display: inline-block;
  background: rgba(245, 200, 66, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.section-heading {
  font-family: var(--font-hindi);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.3;
}

/* Luxury Card Base */
.luxury-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: transform var(--trans-smooth), border-color var(--trans-smooth), box-shadow var(--trans-smooth);
}

.luxury-card:hover {
  border-color: var(--border-gold-bright);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(245, 200, 66, 0.18);
  transform: translateY(-3px);
}

/* CTA Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--red-btn-gradient);
  color: var(--text-white);
  font-weight: 700;
  border-radius: 50px;
  padding: 15px 36px;
  font-size: 1.15rem;
  border: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow: var(--red-button-glow);
  transition: all var(--trans-smooth);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  background: var(--red-btn-hover);
  box-shadow: 0 10px 40px rgba(230, 35, 71, 0.8), var(--gold-glow);
  transform: translateY(-2px) scale(1.02);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(1px) scale(0.98);
}

/* Pulsing Button Animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 35, 71, 0.7), 0 0 20px rgba(245, 200, 66, 0.3);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(230, 35, 71, 0), 0 0 28px rgba(245, 200, 66, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 35, 71, 0), 0 0 20px rgba(245, 200, 66, 0.3);
  }
}

.pulse-btn {
  animation: pulseGlow 2.5s infinite;
}

/* ==========================================================================
   1. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar {
  background: linear-gradient(90deg, #590616 0%, #8e1027 50%, #590616 100%);
  border-bottom: 1px solid rgba(245, 200, 66, 0.35);
  padding: 8px 0;
  position: relative;
  z-index: 100;
  font-size: 0.9rem;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #00ff66;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #00ff66;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* ==========================================================================
   2. NAVIGATION BAR
   ========================================================================== */
.main-navbar {
  background: rgba(13, 2, 5, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-gold);
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-symbol {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(245, 200, 66, 0.5));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-royal);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.discrete-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 30px;
  border: 1px solid var(--border-subtle);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-btn-gradient);
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1px solid rgba(245, 200, 66, 0.4);
  box-shadow: 0 4px 15px rgba(230, 35, 71, 0.4);
  transition: all var(--trans-fast);
}

.btn-nav-cta:hover {
  background: var(--red-btn-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230, 35, 71, 0.6);
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 40px 0 50px;
  overflow: hidden;
}

.hero-background-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 35, 71, 0.25) 0%, rgba(245, 200, 66, 0.1) 40%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-header-box {
  text-align: center;
  max-width: 820px;
  margin-bottom: 25px;
}

.pill-badge.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 200, 66, 0.1);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(245, 200, 66, 0.12);
}

.sparkle-icon {
  font-size: 1.1rem;
}

.hero-main-title {
  font-family: var(--font-hindi);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.18;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 26px;
  opacity: 0.92;
}

.hero-cta-wrapper {
  margin-bottom: 10px;
}

.hero-btn-primary {
  padding: 16px 42px;
  font-size: 1.25rem;
  border-radius: 60px;
}

.btn-icon {
  font-size: 1.3rem;
}

.btn-main-text {
  font-weight: 800;
}

.btn-arrow {
  font-size: 1.2rem;
  transition: transform var(--trans-fast);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* Hero Visual Card */
.hero-visual-card {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin-top: 15px;
}

.visual-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(245, 200, 66, 0.3);
  background: #000;
}

.hero-main-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.visual-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 2, 5, 0.05) 0%, rgba(13, 2, 5, 0.2) 60%, rgba(13, 2, 5, 0.75) 100%);
  pointer-events: none;
}

.visual-floating-badge {
  position: absolute;
  background: rgba(13, 2, 5, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.visual-floating-badge.top-left {
  top: 16px;
  left: 16px;
}

.visual-floating-badge.bottom-right {
  bottom: 16px;
  right: 16px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #e62347;
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 1.2s infinite;
}

.visual-center-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  z-index: 2;
}

.play-circle {
  width: 68px;
  height: 68px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(245, 200, 66, 0.7);
}

.play-label {
  background: rgba(13, 2, 5, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--text-white);
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
}

.check-icon {
  color: #00ff88;
  font-weight: 800;
  font-size: 1rem;
}

/* ==========================================================================
   4. BENEFITS SECTION (3 CLEAN CARDS)
   ========================================================================== */
.benefits-section {
  padding: 60px 0 50px;
}

.benefits-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-icon-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(245, 200, 66, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-icon {
  font-size: 1.8rem;
}

.benefit-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 8px;
  line-height: 1.3;
}

.benefit-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   5. CATEGORIES & SHOWCASE SECTION
   ========================================================================== */
.category-section {
  padding: 40px 0 50px;
}

.category-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  padding: 32px;
  align-items: center;
  border-color: var(--border-gold);
}

.category-image-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.category-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.category-content-column {
  display: flex;
  flex-direction: column;
}

.category-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.category-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.6;
}

.category-pills-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-pill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  transition: background var(--trans-fast), transform var(--trans-fast);
}

.category-pill-item:hover {
  background: rgba(245, 200, 66, 0.12);
  transform: translateX(3px);
}

.pill-bullet {
  font-size: 1rem;
}

/* ==========================================================================
   6. LIMITED TIME OFFER BOX (CLEAN & SIMPLE)
   ========================================================================== */
.offer-section {
  padding: 40px 0 50px;
}

.offer-card-wrapper {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
}

.offer-inner-card {
  background: linear-gradient(155deg, #25060f 0%, #150207 100%);
  border: 2px solid var(--gold-primary);
  border-radius: 26px;
  padding: 42px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 45px rgba(245, 200, 66, 0.2);
}

.offer-top-icon {
  margin-bottom: 10px;
}

.gift-icon {
  font-size: 2.8rem;
  filter: drop-shadow(0 0 10px rgba(245, 200, 66, 0.6));
}

.offer-subtitle-tag {
  display: block;
  font-size: 0.92rem;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.offer-main-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.25;
}

.price-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.offer-action-btn-wrap {
  display: flex;
  justify-content: center;
}

.btn-offer-simple {
  padding: 16px 40px;
  font-size: 1.25rem;
  border-radius: 50px;
}

/* ==========================================================================
   7. FINAL CONVERSION CTA SECTION
   ========================================================================== */
.final-cta-section {
  padding: 40px 0 70px;
}

.final-cta-card {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.final-heart-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 15px rgba(230, 35, 71, 0.8));
}

.final-cta-title {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.final-cta-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 28px;
}

.final-cta-btn-wrap {
  margin-bottom: 20px;
}

.btn-final-cta {
  padding: 16px 44px;
  font-size: 1.25rem;
  border-radius: 60px;
}

/* ==========================================================================
   8. MAIN FOOTER (META ADS COMPLIANT)
   ========================================================================== */
.main-footer {
  background: #050001;
  border-top: 1px solid var(--border-gold);
  padding: 35px 0 85px; /* extra bottom padding for mobile sticky bar */
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.footer-meta-disclaimer {
  max-width: 780px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
}

.footer-meta-disclaimer p {
  font-size: 0.78rem;
  color: #8c7379;
  line-height: 1.6;
  font-family: var(--font-english);
}

.footer-links-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links-row a:hover {
  color: var(--gold-primary);
  text-decoration: underline;
}

.footer-dot {
  color: var(--text-dim);
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-family: var(--font-english);
}

/* ==========================================================================
   9. MOBILE STICKY BOTTOM BAR
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 2, 5, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 2px solid var(--gold-primary);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
  padding: 10px 16px;
  z-index: 9999;
}

.sticky-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
  gap: 12px;
}

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

.sticky-main-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.2;
}

.sticky-sub-badge {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-sticky-download {
  padding: 11px 22px;
  font-size: 1rem;
  border-radius: 50px;
  flex-shrink: 0;
  gap: 6px;
}

.sticky-arrow {
  font-size: 1.1rem;
}

/* ==========================================================================
   10. LIVE PURCHASE TOAST NOTIFICATION
   ========================================================================== */
.live-toast-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(22, 3, 9, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--gold-primary);
  border-radius: 16px;
  box-shadow: var(--shadow-lg), 0 0 25px rgba(245, 200, 66, 0.3);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 330px;
  z-index: 999;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  pointer-events: none;
}

.live-toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  width: 34px;
  height: 34px;
  background: var(--red-btn-gradient);
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.toast-body {
  flex-grow: 1;
}

.toast-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
}

.toast-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.toast-close {
  color: var(--text-dim);
  font-size: 1.2rem;
  padding: 4px;
  line-height: 1;
  transition: color var(--trans-fast);
}

.toast-close:hover {
  color: var(--text-white);
}

/* ==========================================================================
   11. RESPONSIVE BREAKPOINTS (Mobile-First Optimization)
   ========================================================================== */
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: inline;
  }

  .main-navbar {
    padding: 10px 0;
  }

  .discrete-badge {
    display: none;
  }

  .hero-main-title {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-btn-primary {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.15rem;
  }

  .benefits-grid-three {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-wrapper {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    gap: 24px;
  }

  .category-title {
    font-size: 1.7rem;
  }

  .offer-inner-card {
    padding: 32px 18px;
  }

  .offer-main-title {
    font-size: 1.75rem;
  }

  .btn-offer-simple {
    width: 100%;
  }

  .final-cta-title {
    font-size: 1.8rem;
  }

  .btn-final-cta {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.15rem;
  }

  /* Show sticky bottom bar on mobile */
  .mobile-sticky-bar {
    display: block;
  }

  .live-toast-notification {
    bottom: 75px; /* Above mobile sticky bar */
    left: 14px;
    right: 14px;
    max-width: calc(100% - 28px);
  }
}

@media (max-width: 480px) {
  .hero-main-title {
    font-size: 1.95rem;
  }

  .section-heading {
    font-size: 1.7rem;
  }
}
