/* ============================================================
   Aladdin99 — style.css
   Mobile-first, responsive, dark-gold theme
   ============================================================ */

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

:root {
  --gold:        #c8960c;
  --gold-light:  #f0c040;
  --gold-dark:   #9a6f00;
  --bg:          #09090f;
  --bg-card:     #111120;
  --bg-card2:    #18182c;
  --border:      #2a2a45;
  --text:        #f0f0f8;
  --text-muted:  #b0b0c8;
  --text-heading:#ffffff;
  --white:       #ffffff;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --transition:  0.25s ease;
  --max-width:   1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

main { flex: 1; }

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

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-card);
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,150,12,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-card2);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
}

.btn-block { width: 100%; display: block; }

/* ---------- Header ---------- */
.site-header {
  background: rgba(9,9,15,0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-link img {
  height: 44px;
  width: auto;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* Main nav */
.main-nav { display: none; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  color: var(--text);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(200,150,12,0.1);
}

.header-ctas {
  display: none;
  align-items: center;
  gap: 0.6rem;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  border: none;
  background: none;
  color: var(--text);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1.25rem;
  gap: 0.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text);
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
  background: rgba(200,150,12,0.1);
}

.mobile-menu-ctas {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.mobile-menu-ctas .btn { flex: 1; min-width: 120px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #09090f 0%, #12122a 60%, #0d0d1a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/featured.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,9,15,0.3) 0%, rgba(9,9,15,0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200,150,12,0.15);
  border: 1px solid rgba(200,150,12,0.4);
  color: var(--gold);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 1rem;
  color: var(--white);
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero-disclosure {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-disclosure::before {
  content: "🔒";
  font-size: 0.9rem;
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: rgba(200,150,12,0.4);
  box-shadow: 0 6px 30px rgba(200,150,12,0.08);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

/* ---------- Grid Utilities ---------- */
.grid-2 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.grid-4 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}

/* ---------- Feature List ---------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text);
}

.feature-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ---------- Steps ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  counter-reset: steps;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-body h3 { margin-bottom: 0.35rem; }
.step-body p { color: var(--text-muted); margin: 0; }

/* ---------- Disclosure Box ---------- */
.disclosure-box {
  background: rgba(200,150,12,0.06);
  border: 1px solid rgba(200,150,12,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.disclosure-box::before {
  content: "🔒";
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---------- Alert / Notice ---------- */
.notice {
  background: var(--bg-card2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

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

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

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

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, #09090f 0%, #12122a 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/featured.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--gold); }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

th {
  background: var(--bg-card2);
  color: var(--gold);
  text-align: left;
  padding: 0.85rem 1rem;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}

td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(200,150,12,0.04); }

/* ---------- Game Category Cards ---------- */
.game-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.game-category:hover {
  border-color: rgba(200,150,12,0.5);
  transform: translateY(-3px);
}

.game-category-header {
  background: linear-gradient(135deg, var(--bg-card2), #1c1c35);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.game-cat-icon { font-size: 2rem; }

.game-category-body {
  padding: 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.93rem;
}

/* ---------- Payment Method Cards ---------- */
.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  transition: border-color var(--transition);
}

.payment-card:hover { border-color: var(--gold); }
.payment-card-icon { font-size: 2.4rem; margin-bottom: 0.6rem; }
.payment-card-name { font-weight: 600; color: var(--text-heading); font-size: 0.95rem; }
.payment-card-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.35rem; }

/* ---------- Promo Card ---------- */
.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.promo-card:hover {
  border-color: rgba(200,150,12,0.4);
  box-shadow: 0 6px 30px rgba(200,150,12,0.08);
}

.promo-card-header {
  background: linear-gradient(135deg, var(--gold-dark), var(--bg-card2));
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.promo-card-header h3 { color: var(--white); }
.promo-tag {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.promo-card-body {
  padding: 1.25rem 1.5rem;
}

/* ---------- Help Card ---------- */
.help-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
}

.help-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.help-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.help-card h3 { margin-bottom: 0.5rem; }
.help-card p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 1.25rem; }

/* ---------- Info Two-Col ---------- */
.info-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* ---------- Stat Row ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-label { font-size: 0.85rem; color: var(--text-muted); }
.stat-value { font-size: 1.7rem; font-weight: 800; color: var(--gold); }

/* ---------- Responsible Gaming ---------- */
.rg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
}

.rg-card h3 { margin-bottom: 0.5rem; }
.rg-card p { color: var(--text-muted); font-size: 0.93rem; margin: 0; }

/* ---------- Legal content ---------- */
.legal-body h2 { margin: 2rem 0 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.legal-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-body h3 { margin: 1.25rem 0 0.5rem; color: var(--gold); font-size: 1rem; }
.legal-body p, .legal-body li { color: var(--text-muted); font-size: 0.94rem; }
.legal-body ul { padding-left: 1.4rem; list-style: disc; margin-bottom: 1rem; }
.legal-body ul li { margin-bottom: 0.35rem; }
.legal-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }

/* ---------- Contact ---------- */
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.contact-method:hover { border-color: var(--gold); }
.contact-method-icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-method h3 { margin-bottom: 0.25rem; font-size: 1rem; }
.contact-method p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
  margin-top: auto;
}

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

.footer-brand .logo-text {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
}

.footer-legal-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

/* ---------- Updates / Blog ---------- */
.update-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.update-card:hover {
  border-color: rgba(200,150,12,0.4);
  transform: translateY(-3px);
}

.update-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.update-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.category-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-promo   { background: rgba(200,150,12,0.15);  color: var(--gold);  border: 1px solid rgba(200,150,12,0.3); }
.badge-guide   { background: rgba(60,180,100,0.12);  color: #5dd47a;      border: 1px solid rgba(60,180,100,0.25); }
.badge-banking { background: rgba(80,150,220,0.12);  color: #7ab8f5;      border: 1px solid rgba(80,150,220,0.25); }
.badge-games   { background: rgba(180,80,220,0.12);  color: #c97af5;      border: 1px solid rgba(180,80,220,0.25); }
.badge-agent   { background: rgba(220,120,60,0.12);  color: #f5a07a;      border: 1px solid rgba(220,120,60,0.25); }

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

.update-card-body h3 { margin-bottom: 0.6rem; font-size: 1.1rem; }
.update-card-body p  { color: var(--text-muted); font-size: 0.93rem; flex: 1; margin-bottom: 1.25rem; }

.update-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Article page */
.article-header {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #09090f 0%, #12122a 100%);
}

.article-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/featured.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.article-header > .container {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.article-header h1 { margin: 0.75rem 0 1rem; }

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.article-body h2 {
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.article-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.article-body h3 { margin: 1.75rem 0 0.6rem; color: var(--gold); }

.article-body p { color: var(--text-muted); line-height: 1.8; }

.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.article-body li { margin-bottom: 0.5rem; line-height: 1.7; }

.article-cta-box {
  background: linear-gradient(135deg, var(--bg-card2), #1c1c35);
  border: 1px solid rgba(200,150,12,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.article-cta-box h3 { color: var(--gold); margin-bottom: 0.75rem; }
.article-cta-box p  { color: var(--text-muted); margin-bottom: 1.5rem; }

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

/* ---------- Responsive Breakpoints ---------- */

/* Tablet: 640px */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop: 900px */
@media (min-width: 900px) {
  .main-nav { display: block; }
  .header-ctas { display: flex; }
  .hamburger { display: none; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .info-two-col { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* Large: 1100px */
@media (min-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .main-nav a { font-size: 0.92rem; padding: 0.4rem 0.8rem; }
}
