/* ==========================================================================
   MANTRA LUXURY DESIGN SYSTEM
   Dark Obsidian (#070709 / #040406), Pure Gold Accents (#D4AF37, #FFE896)
   Cinzel & Plus Jakarta Sans Typography
   ========================================================================== */

:root {
  /* Colors */
  --bg-main: #070709;
  --bg-deep: #040406;
  --bg-secondary: #0d0d14;
  --bg-card: rgba(18, 18, 26, 0.82);
  --bg-card-hover: rgba(28, 28, 40, 0.95);
  --bg-glass: rgba(255, 255, 255, 0.03);
  
  /* Gold Palette */
  --gold-main: #D4AF37;
  --gold-light: #FFE896;
  --gold-bright: #F9E076;
  --gold-dark: #A88320;
  --gold-gradient: linear-gradient(135deg, #FFE896 0%, #D4AF37 50%, #9B7817 100%);
  --gold-gradient-horizontal: linear-gradient(90deg, #FFE896 0%, #D4AF37 50%, #B28D28 100%);
  --gold-glow: rgba(212, 175, 55, 0.35);
  --gold-glow-soft: rgba(212, 175, 55, 0.15);
  --gold-glow-intense: rgba(212, 175, 55, 0.6);

  /* Border Tokens */
  --border-gold: rgba(212, 175, 55, 0.28);
  --border-gold-strong: rgba(212, 175, 55, 0.55);
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Typography Colors */
  --text-main: #FFFFFF;
  --text-secondary: #E4E4EB;
  --text-muted: #9E9EB3;
  --text-dark: #070709;

  /* Accents */
  --accent-fire: #FF5E36;
  --accent-amber: #F59E0B;
  --accent-teal: #00E5FF;
  --accent-emerald: #10B981;

  /* Fonts */
  --font-heading: 'Cinzel', 'Syne', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Shadows & Transitions */
  --shadow-card: 0 16px 40px -10px rgba(0, 0, 0, 0.7);
  --shadow-gold-card: 0 20px 50px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.22);
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
}

body {
  background-color: var(--bg-deep);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: #1f1f2e;
  border-radius: 4px;
  border: 1px solid var(--border-gold);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-main);
}

/* ==========================================================================
   DESKTOP 80% CENTERED CONTAINER SPACING RULE (10% MARGIN)
   ========================================================================== */
.site-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background-color: var(--bg-main);
  min-height: 100vh;
}

@media (min-width: 1024px) {
  .site-wrapper {
    width: 80%;
    max-width: 80vw;
    margin: 0 auto;
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.98), 0 0 0 1px rgba(212, 175, 55, 0.16);
    border-left: 1px solid rgba(212, 175, 55, 0.18);
    border-right: 1px solid rgba(212, 175, 55, 0.18);
  }

  .navbar {
    width: 80% !important;
    left: 10% !important;
    right: 10% !important;
    border-left: 1px solid rgba(212, 175, 55, 0.18);
    border-right: 1px solid rgba(212, 175, 55, 0.18);
  }
}

/* Ambient Background Lights */
.ambient-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.45;
}

.glow-top {
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.28) 0%, rgba(168, 131, 32, 0.08) 60%, transparent 80%);
}

.glow-middle {
  top: 40%;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
}

.glow-bottom {
  bottom: 10%;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 75%);
}

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

.gold-glow-text {
  text-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.section-spacing {
  padding: 90px 0;
  position: relative;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(7, 7, 9, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transition: var(--transition);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-logo-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 0 16px var(--gold-glow);
  overflow: hidden;
  transition: var(--transition);
}

.brand-logo:hover .brand-logo-wrap {
  border-color: var(--gold-main);
  box-shadow: 0 0 24px var(--gold-glow-intense);
  transform: scale(1.05);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  box-shadow: 0 0 18px var(--gold-glow);
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gold-light);
  font-weight: 600;
  text-transform: uppercase;
}

.hero-pill-emblem {
  width: 24px;
  height: 24px;
  object-fit: contain;
  vertical-align: middle;
}

.footer-signature-wrap {
  margin: 16px 0 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  max-width: 320px;
}

.footer-bat-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
  filter: brightness(1.1);
}

.signature-tagline {
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ==========================================================================
   BUTTONS & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #070709;
  box-shadow: 0 4px 22px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-main);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* Shimmer Highlight on Primary Buttons */
.shimmer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 35%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 65%
  );
  transform: rotate(30deg);
  animation: btnShimmer 4.5s infinite linear;
}

@keyframes btnShimmer {
  0% { transform: translate(-100%, -100%) rotate(30deg); }
  35%, 100% { transform: translate(100%, 100%) rotate(30deg); }
}

/* Main CTA Button Styles */
.btn-cta-main {
  padding: 20px 48px;
  font-size: 1.22rem;
  letter-spacing: 1px;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, #FFF1B0 0%, #D4AF37 35%, #F59E0B 75%, #B45309 100%);
  color: #070709;
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5), 0 0 20px rgba(245, 158, 11, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.btn-cta-main:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 55px rgba(212, 175, 55, 0.7), 0 0 35px rgba(245, 158, 11, 0.6);
  color: #000;
}

/* Pulse Glow Effect */
.pulse-glow {
  animation: pulseGlowAnim 2.8s infinite alternate ease-in-out;
}

@keyframes pulseGlowAnim {
  0% { box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4), 0 0 15px rgba(245, 158, 11, 0.3); }
  100% { box-shadow: 0 14px 50px rgba(212, 175, 55, 0.75), 0 0 30px rgba(245, 158, 11, 0.6); }
}

/* ==========================================================================
   SECTION 1 — HERO
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 70px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 20%, rgba(30, 26, 15, 0.7) 0%, rgba(7, 7, 9, 0.95) 70%, #040406 100%);
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-badge-container {
  margin-bottom: 24px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold-strong);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  text-transform: uppercase;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-subtext {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #E2E2EC;
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero-add-highlight {
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 18px 26px;
  font-size: 1.05rem;
  color: var(--gold-light);
  max-width: 860px;
  margin: 0 auto 34px;
  line-height: 1.65;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  position: relative;
}

.hero-add-highlight i {
  color: var(--gold-main);
  margin-right: 8px;
}

.hero-actions-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-quick-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

.quick-badge-card {
  background: rgba(18, 18, 26, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.quick-badge-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  background: rgba(28, 28, 40, 0.85);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.quick-badge-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
  display: block;
}

.quick-badge-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
}

.quick-badge-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================================================
   SECTION 2 — PROGRAM OVERVIEW (WHITE BACKGROUND, HERO BG TEXT COLOR)
   ========================================================================== */
.overview-section {
  background: #FFFFFF;
  color: #070709;
  position: relative;
}

.overview-section .section-tag {
  background: rgba(7, 7, 9, 0.05);
  border: 1px solid rgba(168, 131, 32, 0.35);
  color: #8C6811;
}

.overview-section .section-title {
  color: #070709;
}

.overview-section .section-subtitle {
  color: #2F2F3D;
}

.overview-header {
  margin-bottom: 50px;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.overview-card {
  background: #FFFFFF;
  border: 1px solid rgba(7, 7, 9, 0.1);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.overview-card:hover {
  border-color: var(--gold-main);
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.2), 0 4px 15px rgba(0, 0, 0, 0.06);
  background: #FFFFFF;
}

.overview-step-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(7, 7, 9, 0.12);
}

.overview-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 232, 150, 0.3) 0%, rgba(212, 175, 55, 0.2) 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #8C6811;
  margin-bottom: 22px;
}

.overview-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #070709;
  margin-bottom: 12px;
}

.overview-card-text {
  font-size: 0.94rem;
  color: #4A4A5A;
  line-height: 1.65;
}

.section-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ==========================================================================
   SECTION 3 — WHAT YOU GET (8 ICON CARDS GRID)
   ========================================================================== */
.what-you-get-section {
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
  background: var(--bg-card-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-emoji-header {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-emoji-header {
  transform: scale(1.1);
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-main);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.35;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 4 — PRICING / OFFER (WHITE BACKGROUND, ALTERNATING PATTERN)
   ========================================================================== */
.pricing-section {
  position: relative;
  background: #FFFFFF;
  color: #070709;
  padding: 100px 0;
}

.pricing-wrapper {
  max-width: 840px;
  margin: 0 auto;
}

.pricing-card {
  background: #FFFFFF;
  border: 2px solid var(--gold-main);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 35px rgba(212, 175, 55, 0.22);
  position: relative;
  overflow: hidden;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-top-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #070709;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 28px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.pricing-header {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 35px;
}

.pricing-badge-exclusive {
  font-size: 0.9rem;
  font-weight: 700;
  color: #8C6811;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.pricing-plan-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #070709;
  margin-bottom: 24px;
}

/* Price Display Breakdown on Light BG */
.pricing-breakdown-box {
  background: #F8F8FC;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02);
}

.price-regular-col {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.85rem;
  color: #64647A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.price-original-strikethrough {
  font-size: 1.5rem;
  font-weight: 700;
  color: #7B7B8E;
  text-decoration: line-through;
  text-decoration-color: #EF4444;
  text-decoration-thickness: 3px;
}

.discount-pill-tag {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #DC2626;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 6px;
  display: inline-block;
}

.price-final-col {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.price-final-lead {
  font-size: 0.95rem;
  font-weight: 700;
  color: #8C6811;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.price-final-amount {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #B28D28 0%, #D4AF37 50%, #7A5B0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.35));
}

.savings-highlight-badge {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: #059669;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 6px 16px;
  border-radius: 999px;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-end;
}

/* What's included bullet checklist */
.pricing-included-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #070709;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-bullets-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 38px;
}

.pricing-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: #2D2D3D;
  line-height: 1.55;
  background: #F9F9FD;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(7, 7, 9, 0.06);
}

.bullet-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.22);
  color: #8C6811;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta-block {
  text-align: center;
}

.pricing-guarantee-note {
  font-size: 0.85rem;
  color: #646478;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ==========================================================================
   SECTION 5 — CTA SECTION (DARK BACKGROUND)
   ========================================================================== */
.cta-section {
  position: relative;
  padding: 90px 0;
}

.cta-box {
  background: linear-gradient(135deg, rgba(28, 24, 12, 0.85) 0%, rgba(18, 18, 26, 0.95) 50%, rgba(10, 10, 15, 0.95) 100%);
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(212, 175, 55, 0.25);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient-horizontal);
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-subtext {
  font-size: 1.15rem;
  color: #D6D6E5;
  max-width: 780px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-button-wrapper {
  margin-bottom: 20px;
}

.cta-trust-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 24px;
}

.trust-tag-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-tag-item i {
  color: var(--gold-main);
}

/* ==========================================================================
   SECTION 6 — FAQ ACCORDION COMPONENT (WHITE / LIGHT THEME)
   ========================================================================== */
.faq-section {
  background: #FFFFFF;
  color: #070709;
  padding: 90px 0 50px;
  position: relative;
}

.faq-section .section-tag {
  background: rgba(7, 7, 9, 0.05);
  border: 1px solid rgba(168, 131, 32, 0.35);
  color: #8C6811;
}

.faq-section .section-title {
  color: #070709;
}

.faq-section .section-subtitle {
  color: #4A4A5A;
}

.faq-list {
  max-width: 820px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #F9F9FD;
  border: 1px solid rgba(7, 7, 9, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  border-color: var(--gold-main);
  background: #FFFFFF;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.18);
}

.faq-item.active {
  border-color: var(--gold-main);
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.22);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: #070709;
  user-select: none;
}

.faq-icon {
  color: #8C6811;
  transition: var(--transition);
  font-size: 0.95rem;
}

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

.faq-body {
  padding: 0 24px 22px;
  font-size: 0.96rem;
  color: #3F3F52;
  line-height: 1.7;
  display: none;
}

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

/* ==========================================================================
   SECTION 6B — DISCLAIMER (LIGHT THEME)
   ========================================================================== */
.disclaimer-section {
  background: #FFFFFF;
  color: #555566;
  padding: 10px 0 50px;
}

.disclaimer-box {
  background: #F6F6FB;
  border: 1px solid rgba(7, 7, 9, 0.08);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  max-width: 960px;
  margin: 0 auto 10px;
}

.disclaimer-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8C6811;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.disclaimer-text {
  font-size: 0.88rem;
  color: #555566;
  line-height: 1.65;
}

/* ==========================================================================
   SITE FOOTER (DARK THEME - SIMPLE, LARGE LEGIBLE TEXT FOR SENIORS)
   ========================================================================== */
.site-footer {
  background: linear-gradient(180deg, #070709 0%, #030305 100%);
  color: #FFFFFF;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 60px 0 35px;
  position: relative;
}

.footer-simple-card {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-brand-header .brand-name {
  color: #FFFFFF;
}

.footer-brand-header .brand-subtitle {
  color: var(--gold-light);
}

.footer-signature-wrap {
  padding: 10px 18px;
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-sm);
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.footer-bat-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  align-self: center;
}

.signature-tagline {
  font-size: 0.76rem;
  color: #8C6811;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Large, High-Contrast Description for Elders / Seniors (Dark Theme) */
.footer-senior-desc {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #E2E2EC;
  max-width: 780px;
  margin: 0 auto;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.footer-policy-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-policy-link {
  background: none;
  border: none;
  color: #B0B0C4;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  padding: 4px 8px;
  cursor: pointer;
  font-family: inherit;
}

.footer-policy-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.policy-divider {
  color: rgba(212, 175, 55, 0.4);
  font-size: 0.9rem;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #8E8E9E;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-credit-link {
  color: var(--gold-main);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.footer-credit-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Policy Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 4, 6, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.open {
  display: flex;
}

.modal-dialog {
  background: #FFFFFF;
  color: #070709;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #646478;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: #070709;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #070709;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(7, 7, 9, 0.08);
  padding-bottom: 10px;
}

.modal-content-body {
  font-size: 1rem;
  line-height: 1.75;
  color: #333344;
}

.modal-content-body h4 {
  margin: 16px 0 8px;
  color: #070709;
}

.modal-content-body p, .modal-content-body ul {
  margin-bottom: 12px;
}

/* ==========================================================================
   RESPONSIVE DESIGN MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1023px) {
  .hero-headline {
    font-size: 2.8rem;
  }
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-quick-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #0d0d14;
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-gold);
    display: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
  }
  .nav-menu.mobile-open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-actions .btn {
    display: none;
  }
  
  .hero-section {
    padding: 120px 0 60px;
  }
  .hero-headline {
    font-size: 2.2rem;
  }
  .hero-subtext {
    font-size: 1.05rem;
  }
  .hero-add-highlight {
    font-size: 0.95rem;
    padding: 16px 18px;
  }
  .section-title {
    font-size: 2rem;
  }
  .overview-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 40px 22px;
  }
  .pricing-breakdown-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .price-final-col {
    text-align: left;
  }
  .savings-highlight-badge {
    align-self: flex-start;
  }
  .cta-box {
    padding: 40px 20px;
  }
  .cta-heading {
    font-size: 1.85rem;
  }
  .btn-cta-main {
    padding: 16px 24px;
    font-size: 1.02rem;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .footer-simple-card {
    gap: 18px;
    margin-bottom: 28px;
  }
  .footer-brand-header {
    flex-direction: column;
    gap: 16px;
  }
  .footer-senior-desc {
    font-size: 1.05rem;
    line-height: 1.75;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
