:root {
  --primary: #800020;        /* Royal Burgundy */
  --primary-dark: #560015;
  --primary-light: #a31535;
  --accent-gold: #c59b27;    /* Saffron Gold */
  --accent-gold-light: #fef8eb;
  --accent-green: #198754;   /* Emerald / WhatsApp */
  --accent-green-dark: #12633d;
  --bg-cream: #fffdfa;
  --bg-surface: #ffffff;
  --text-dark: #1e1e24;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 25px -5px rgba(128, 0, 32, 0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 35px -10px rgba(128, 0, 32, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --font-base: 'Inter', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-padding-top: 80px;
}

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

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

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

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* Animations */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Top Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #560015, #800020, #a31535);
  color: #ffffff;
  padding: 6px 12px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  line-height: 1.35;
}
.announcement-bar .badge-pill {
  background-color: var(--accent-gold);
  color: #000;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 16px;
  font-size: 0.72rem;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1002;
}
.brand-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(128, 0, 32, 0.25);
  flex-shrink: 0;
  display: block;
}
.brand-text h1 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.brand-text span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.nav-menu a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s ease;
  padding: 6px 2px;
}
.nav-menu a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle-btn {
  background: #f8fafc;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  padding: 7px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
  min-height: 38px;
}
.lang-toggle-btn:hover {
  background: var(--accent-gold-light);
  border-color: var(--accent-gold);
}

/* Mobile Hamburger Menu */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: var(--primary);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  z-index: 1002;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 340px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 85px 24px 30px;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.mobile-drawer.open {
  right: 0;
}
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 25px;
}
.mobile-menu-list a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.mobile-menu-list a i {
  width: 22px;
  color: var(--primary);
}

/* Button UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  white-space: nowrap;
  min-height: 44px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(128, 0, 32, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 6px 18px rgba(128, 0, 32, 0.35);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ae06f, #159b8c);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.btn-outline-gold {
  background: #ffffff;
  color: var(--primary);
  border: 2px solid var(--accent-gold);
}
.btn-outline-gold:hover {
  background: var(--accent-gold-light);
}

.btn-lg {
  padding: 13px 24px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* Hero Section */
.hero-section {
  padding: 35px 0 55px;
  position: relative;
  background: radial-gradient(circle at 85% 20%, rgba(197, 155, 39, 0.12) 0%, rgba(128, 0, 32, 0.04) 60%, transparent 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.hero-content {
  max-width: 620px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fdf2f4;
  border: 1px solid rgba(128, 0, 32, 0.15);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.hero-title {
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  line-height: 1.25;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.hero-title .highlight {
  color: var(--primary);
  background: linear-gradient(120deg, rgba(197,155,39,0.25) 0%, rgba(197,155,39,0.06) 100%);
  padding: 1px 6px;
  border-radius: 4px;
  display: inline-block;
}
.hero-subtitle {
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  color: #475569;
  line-height: 1.6;
  margin-bottom: 24px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.3;
}

/* Family Image Showcase */
.hero-family-showcase {
  position: relative;
  width: 100%;
}
.family-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #ffffff;
  background: #ffffff;
}
.family-image-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.floating-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(197, 155, 39, 0.3);
  animation: floatSlow 4s ease-in-out infinite;
  z-index: 2;
  max-width: calc(100% - 24px);
}
.pill-top-left { top: 12px; left: 12px; }
.pill-bottom-right { bottom: 14px; right: 12px; animation-delay: 2s; }
.pill-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: #ffffff;
  flex-shrink: 0;
}
.pill-icon-gold { background: var(--accent-gold); }
.pill-icon-green { background: var(--accent-green); }
.pill-text h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.15;
}
.pill-text span {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
}

/* ================= TRIPLE WHATSAPP CONVERSION HUB ================= */
.whatsapp-hub-wrap {
  padding: 30px 0 50px;
}
.whatsapp-hub-card {
  background: linear-gradient(135deg, #560015, #800020);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--accent-gold);
}
.hub-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}
.hub-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-gold);
  color: #1a0207;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hub-header h3 {
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}
.hub-header p {
  font-size: 0.94rem;
  color: #fed7d7;
}

/* 3-Column WhatsApp Actions */
.whatsapp-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wa-action-box {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 2px solid transparent;
}
.wa-action-box:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}
.wa-box-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.icon-biodata { background: #e8f5e9; color: #1b5e20; }
.icon-chat { background: #e0f2fe; color: #0284c7; }
.icon-group { background: #fef3c7; color: #b45309; }

.wa-action-box h4 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.wa-action-box p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Comparison, Features, Steps, FAQ (Reusable) */
.section-padding { padding: 55px 0; }
.bg-white { background-color: #ffffff; }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 35px;
}
.section-tag {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}
.section-title {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 10px;
}
.section-desc {
  font-size: clamp(0.88rem, 1.6vw, 0.98rem);
  color: var(--text-muted);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.comparison-card {
  border-radius: var(--radius-lg);
  padding: 26px 22px;
}
.card-problem { background: #fff5f5; border: 1px solid #fed7d7; }
.card-problem h3 { color: #c53030; font-size: 1.15rem; font-weight: 700; margin-bottom: 15px; display: flex; align-items: center; gap: 9px; }
.card-solution { background: #fbfdf9; border: 2px solid var(--accent-gold); box-shadow: var(--shadow-md); }
.card-solution h3 { color: var(--primary); font-size: 1.15rem; font-weight: 800; margin-bottom: 15px; display: flex; align-items: center; gap: 9px; }
.comparison-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.comparison-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; line-height: 1.45; }
.card-problem li i { color: #e53e3e; margin-top: 3px; flex-shrink: 0; }
.card-solution li i { color: var(--accent-green); margin-top: 3px; flex-shrink: 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: all 0.3s ease;
}
.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}
.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fdf2f4;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.feature-box h4 { font-size: 1.08rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.feature-box p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 18px 20px;
  text-align: center;
  margin-top: 20px;
}
.step-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -48px auto 14px;
  border: 3px solid var(--bg-cream);
}
.step-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item.active { border-color: var(--accent-gold); }
.faq-question {
  padding: 15px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question i { transition: transform 0.3s; color: var(--primary); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s;
  padding: 0 18px;
  font-size: 0.88rem;
  color: #475569;
  background: #fffdfa;
}
.faq-item.active .faq-answer {
  max-height: 280px;
  padding: 0 18px 16px 18px;
}

/* Footer */
.site-footer {
  background-color: #1a0207;
  color: #f1f5f9;
  padding: 50px 0 25px;
  border-top: 4px solid var(--accent-gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 35px;
}
.footer-brand h3 { font-size: 1.3rem; font-weight: 800; color: #ffffff; margin-bottom: 10px; }
.footer-brand p { font-size: 0.85rem; color: #cbd5e1; line-height: 1.55; margin-bottom: 15px; }
.footer-col h5 { font-size: 0.9rem; font-weight: 700; color: var(--accent-gold); margin-bottom: 14px; text-transform: uppercase; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.85rem; color: #cbd5e1; }
.footer-links a:hover { color: var(--accent-gold); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.78rem; color: #94a3b8; }

/* Sticky Mobile Conversion Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  padding: 8px 12px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 15px rgba(0,0,0,0.09);
  z-index: 999;
  gap: 8px;
}
.mobile-bottom-bar .btn {
  flex: 1;
  padding: 10px 8px;
  font-size: 0.84rem;
  min-height: 42px;
  border-radius: var(--radius-sm);
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .mobile-nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-content { text-align: center; max-width: 100%; }
  .trust-pill { margin: 0 auto 14px; }
  .hero-cta-group { justify-content: center; }
  .whatsapp-actions-grid { grid-template-columns: 1fr; gap: 16px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .site-header { height: 60px; }
  .nav-wrapper { height: 60px; }
  .brand-logo-img { width: 34px; height: 34px; }
  .brand-text h1 { font-size: 0.98rem; }
  .brand-text span { font-size: 0.62rem; }
  .nav-actions .btn { display: none; }
  .family-image-wrapper img { height: 260px; }
  .hero-cta-group .btn { width: 100%; }
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 70px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ================= LEGAL & DISCLAIMER PAGE STYLES ================= */
.legal-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  padding: 48px 0 38px;
  text-align: center;
  border-bottom: 3px solid var(--accent-gold);
}
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-gold);
  color: #1a0207;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.legal-hero h1 {
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.25;
}
.legal-hero p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 0.92rem;
  color: #fed7d7;
  line-height: 1.65;
}
.legal-content-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 16px 60px;
}
.legal-box-warning {
  background: #fff5f5;
  border: 2px solid #fed7d7;
  border-left: 6px solid #e53e3e;
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.legal-box-warning h4 {
  color: #c53030;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.legal-box-warning p {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.65;
}
.legal-section {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.legal-section h3 {
  color: var(--primary-dark);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-section h3 i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}
.legal-section p {
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 12px;
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-list {
  padding-left: 22px;
  margin: 10px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-list li {
  font-size: 0.89rem;
  color: #334155;
  line-height: 1.6;
}
.legal-grievance-box {
  background: var(--accent-gold-light);
  border: 1.5px solid var(--accent-gold);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 14px;
}
.legal-grievance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.legal-action-card {
  text-align: center;
  background: #ffffff;
  border: 2px dashed var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  margin-top: 35px;
}

/* YouTube Shorts Video Embed Section */
.video-shorts-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}
.video-shorts-wrapper {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid #ffffff;
  background: #000000;
}
.video-shorts-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Hero Video Showcase & Dedicated Action Buttons */
.hero-video-showcase {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-video-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 360px;
}

.hero-video-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  width: 100%;
  max-width: 340px;
  justify-content: center;
}

.hero-video-actions .btn {
  flex: 1;
  font-size: 0.92rem;
  padding: 12px 14px;
}

@media (max-width: 420px) {
  .hero-video-actions {
    flex-direction: column;
    gap: 10px;
  }
}