/* ==========================================================================
   VerifiedPlayHub.com - Premium Single-Operator Review & Partner Hub
   Target Location: New Jersey, USA
   Google Ads & NJ DGE Compliant Theme
   ========================================================================== */

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

:root {
  /* Color Palette */
  --bg-dark: #070A12;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --bg-elevated: #1E293B;
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(245, 158, 11, 0.4);

  /* Brand Accents */
  --primary-gold: #F59E0B;
  --primary-gold-light: #FBBF24;
  --primary-gold-dark: #D97706;
  --gold-gradient: linear-gradient(135deg, #FCE38A 0%, #F59E0B 50%, #D97706 100%);

  --emerald-accent: #10B981;
  --emerald-glow: rgba(16, 185, 129, 0.25);
  --emerald-gradient: linear-gradient(135deg, #34D399 0%, #10B981 60%, #059669 100%);

  --betmgm-gold: #D4AF37;
  --betmgm-dark: #121212;

  /* Typography */
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dark: #0F172A;

  /* Layout Constants */
  --max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-main: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(245, 158, 11, 0.15);
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(16, 185, 129, 0.05) 0%, transparent 40%);
}

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Helpers */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

.emerald-text {
  color: var(--emerald-accent);
}

/* ==========================================================================
   1. Mandatory Compliance Top Announcement Bar
   ========================================================================== */
.top-notice-bar {
  background: linear-gradient(90deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  padding: 0.6rem 0;
  position: relative;
  z-index: 1000;
}

.top-notice-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge-21plus {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #F87171;
  font-weight: 800;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.rg-helpline-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.rg-link {
  color: var(--primary-gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.rg-link:hover {
  color: #FFF;
}

.nj-state-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--emerald-accent);
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.state-dot {
  width: 7px;
  height: 7px;
  background-color: var(--emerald-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald-accent);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   2. Main Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(7, 10, 18, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
  transition: var(--transition);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: #FFF;
}

.brand-icon {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--text-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-emerald {
  background: var(--emerald-gradient);
  color: #FFF;
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-gold);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 1.4rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
}

/* Mobile Drawer Styling */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #0B1120;
  padding: 1.5rem 2rem;
  border-bottom: 2px solid var(--primary-gold);
  box-shadow: 0 15px 30px rgba(0,0,0,0.8);
  gap: 1.2rem;
  align-items: flex-start;
  z-index: 1001;
}

/* ==========================================================================
   3. Single-Operator Spotlight Hero Section
   ========================================================================== */
.hero-section {
  padding: 4rem 0 3rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.legal-verified-tag {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--primary-gold-light);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #FFF;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.featured-card {
  background: linear-gradient(145deg, rgba(20, 29, 47, 0.9) 0%, rgba(11, 17, 30, 0.95) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-main), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.operator-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.operator-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.operator-logo-box {
  background: #000;
  border: 2px solid var(--betmgm-gold);
  border-radius: var(--radius-md);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.operator-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFF;
}

.operator-dge-badge {
  font-size: 0.78rem;
  color: var(--emerald-accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.2rem;
}

.rating-badge {
  text-align: right;
}

.score-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-gold);
  line-height: 1;
}

.score-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.bonus-hero-box {
  background: rgba(15, 23, 42, 0.8);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-tag {
  font-size: 0.78rem;
  color: var(--primary-gold-light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.bonus-amount {
  font-size: 1.85rem;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
}

.bonus-code-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed var(--primary-gold);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-gold-light);
  margin-top: 0.4rem;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-cta-btn {
  width: 100%;
  padding: 1.1rem 1.5rem;
  font-size: 1.05rem;
}

.cta-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.4rem;
}

/* Feature Highlights Grid */
.highlights-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.highlight-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.highlight-icon {
  width: 42px;
  height: 42px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.highlight-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFF;
}

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

/* ==========================================================================
   4. Deep Breakdown & Review Section
   ========================================================================== */
.review-section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 0.8rem;
}

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

.review-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
}

.review-main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.content-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.block-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.block-icon {
  width: 36px;
  height: 36px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.block-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFF;
}

.paragraph-text {
  font-size: 0.98rem;
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Pros & Cons Specs Grid */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pro-box, .con-box {
  background: rgba(15, 23, 42, 0.6);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.pro-box { border: 1px solid rgba(16, 185, 129, 0.3); }
.con-box { border: 1px solid rgba(239, 68, 68, 0.2); }

.box-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pro-box .box-title { color: var(--emerald-accent); }
.con-box .box-title { color: #F87171; }

.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.spec-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.spec-list li::before {
  content: '✓';
  color: var(--emerald-accent);
  font-weight: 800;
}

/* Dynamic Bonus Calculator Tool */
.calc-wrapper {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 1rem;
}

.calc-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 0.5rem;
}

.calc-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.deposit-amount-display {
  color: var(--primary-gold);
  font-size: 1.1rem;
}

.range-slider {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: var(--bg-elevated);
  outline: none;
  accent-color: var(--primary-gold);
  cursor: pointer;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  background: rgba(7, 10, 18, 0.6);
  padding: 1rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.calc-res-box {
  display: flex;
  flex-direction: column;
}

.calc-res-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFF;
  font-family: var(--font-heading);
}

.calc-res-val.highlight {
  color: var(--emerald-accent);
}

.calc-res-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* Sidebar Specifications */
.review-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.sidebar-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-table td {
  padding: 0.75rem 0;
  font-size: 0.88rem;
}

.info-table td.label {
  color: var(--text-muted);
  font-weight: 500;
  width: 45%;
}

.info-table td.value {
  color: var(--text-main);
  font-weight: 700;
  text-align: right;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.payment-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

/* Step-by-Step NJ Registration Guide */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  position: relative;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(245, 158, 11, 0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 0.4rem;
}

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

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #FFF;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: rgba(245, 158, 11, 0.4);
}

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

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.5rem 1.25rem;
}

/* ==========================================================================
   5. Responsible Gambling Modal & Fixed Bar
   ========================================================================== */
.rg-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0B1120;
  border-top: 2px solid var(--emerald-accent);
  padding: 0.8rem 0;
  z-index: 998;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
}

.rg-drawer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rg-drawer-text {
  font-size: 0.85rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.rg-phone-btn {
  background: var(--emerald-gradient);
  color: #FFF;
  font-weight: 800;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

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

.modal-container {
  background: #0F172A;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 90%;
  padding: 2.25rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

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

.modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

.modal-helpline-box {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.25rem 0;
  text-align: center;
}

.modal-helpline-title {
  color: var(--emerald-accent);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.modal-helpline-number {
  font-size: 2rem;
  font-weight: 900;
  color: #FFF;
  font-family: var(--font-heading);
}

/* ==========================================================================
   6. Mandatory Compliance Legal Footer
   ========================================================================== */
.site-footer {
  background: #030712;
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: #FFF;
}

.footer-summary {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.6;
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

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

/* Compliance Disclosure Box */
.compliance-box {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.comp-section-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.comp-text {
  font-size: 0.82rem;
  color: #94A3B8;
  line-height: 1.6;
}

.entity-info-card {
  background: rgba(7, 10, 18, 0.8);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1rem;
}

.entity-name {
  font-weight: 800;
  color: #FFF;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.entity-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright-text {
  font-size: 0.82rem;
  color: #64748B;
}

/* ==========================================================================
   7. Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .highlights-row {
    grid-template-columns: 1fr;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .calc-results-grid {
    grid-template-columns: 1fr;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .steps-wrapper {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .rg-drawer-content {
    flex-direction: column;
    text-align: center;
  }
}
