/* ============================================================
   Casinia Casino – assets/style.css
   Dark luxury casino theme: emerald, gold, amber
   ============================================================ */

:root {
  --brand-primary:     #1a3a2a;
  --brand-secondary:   #c8a64e;
  --brand-accent:      #2d8f3e;
  --brand-bg:          #0d1f1a;
  --brand-text:        #e8d9a0;
  --brand-header-bg:   #0a1a14;
  --brand-btn-bg:      #2d8f3e;
  --brand-btn-text:    #ffffff;
  --brand-btn-radius:  8px;
  --brand-head-font:   'Georgia', serif;
  --brand-body-font:   'Arial', sans-serif;
  --brand-head-weight: 700;
  --brand-body-size:   14px;
  --brand-border:      1px solid rgba(200,166,78,0.25);
  --brand-gold-glow:   0 0 18px rgba(200,166,78,0.18);
  --brand-card-bg:     #112219;
  --transition:        0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--brand-bg);
  color: var(--brand-text);
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--brand-secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: #e6c06a; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--brand-head-font);
  font-weight: var(--brand-head-weight);
  color: var(--brand-secondary);
  line-height: 1.25;
}

/* ── Skip to content ────────────────────────────────────────── */
.skip-to-content {
  position: absolute;
  top: -999px;
  left: 0;
  background: var(--brand-secondary);
  color: #0d1f1a;
  padding: 10px 18px;
  z-index: 99999;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-to-content:focus { top: 0; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Logo ───────────────────────────────────────────────────── */
.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

/* ── Sticky Header / Nav ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--brand-header-bg);
  border-bottom: var(--brand-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.55);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }

/* Nav */
.main-nav { display: flex; align-items: center; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-family: var(--brand-body-font);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-text);
  border-radius: var(--brand-btn-radius);
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: rgba(200,166,78,0.12);
  border-color: rgba(200,166,78,0.35);
  color: var(--brand-secondary);
}

/* Header CTA */
.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--brand-accent) 0%, #1e6b2e 100%);
  color: #fff;
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--brand-btn-radius);
  border: 1px solid rgba(45,143,62,0.6);
  box-shadow: 0 4px 14px rgba(45,143,62,0.35);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,143,62,0.5);
  color: #fff;
}

/* Mobile burger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(200,166,78,0.4);
  border-radius: var(--brand-btn-radius);
  color: var(--brand-secondary);
  font-size: 22px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background var(--transition);
}
.mobile-menu-btn:hover { background: rgba(200,166,78,0.1); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #071510 0%, #0d2318 40%, #1a3a2a 100%);
  border-bottom: 2px solid rgba(200,166,78,0.22);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(45,143,62,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,166,78,0.08) 0%, transparent 60%);
  pointer-events: none;
}
/* Decorative geometric lines */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 38px,
      rgba(200,166,78,0.04) 38px,
      rgba(200,166,78,0.04) 39px
    );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, rgba(200,166,78,0.2), rgba(200,166,78,0.08));
  border: 1px solid rgba(200,166,78,0.45);
  color: var(--brand-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--brand-head-font);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  line-height: 1.18;
}
.hero h1 span { color: #fff; }
.hero-sub {
  font-size: 16px;
  color: rgba(232,217,160,0.82);
  margin-bottom: 28px;
  max-width: 460px;
  line-height: 1.7;
}
.hero-bonus-box {
  background: linear-gradient(135deg, rgba(26,58,42,0.85) 0%, rgba(13,31,26,0.9) 100%);
  border: 1px solid rgba(200,166,78,0.35);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
  box-shadow: var(--brand-gold-glow);
}
.hero-bonus-box .bonus-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(200,166,78,0.7);
  margin-bottom: 6px;
}
.hero-bonus-box .bonus-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--brand-secondary);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-bonus-box .bonus-detail {
  font-size: 13px;
  color: rgba(232,217,160,0.65);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Hero visual side */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.hero-cards-display {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 380px;
}
.hero-card-item {
  background: linear-gradient(145deg, rgba(26,58,42,0.9), rgba(10,26,20,0.95));
  border: 1px solid rgba(200,166,78,0.25);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(200,166,78,0.15);
  border-color: rgba(200,166,78,0.5);
}
.hero-card-item .card-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}
.hero-card-item .card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.hero-stats {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 380px;
}
.hero-stat {
  flex: 1;
  background: rgba(26,58,42,0.6);
  border: 1px solid rgba(200,166,78,0.2);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}
.hero-stat .stat-num {
  font-family: var(--brand-head-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-secondary);
  display: block;
}
.hero-stat .stat-lbl {
  font-size: 11px;
  color: rgba(232,217,160,0.6);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--brand-secondary); outline-offset: 3px; }

.btn-hero {
  padding: 16px 36px;
  font-size: 17px;
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #a8892e 50%, var(--brand-secondary) 100%);
  background-size: 200% 200%;
  color: #0d1f1a;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(200,166,78,0.45);
  font-weight: 700;
  letter-spacing: 0.4px;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200,166,78,0.6);
  background-position: right center;
  color: #0d1f1a;
}

.btn-cta {
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--brand-accent) 0%, #1e6b2e 100%);
  color: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(45,143,62,0.4);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45,143,62,0.55);
  color: #fff;
}

.btn-outline {
  padding: 14px 28px;
  background: transparent;
  color: var(--brand-secondary);
  border: 2px solid rgba(200,166,78,0.5);
  border-radius: 50px;
}
.btn-outline:hover {
  background: rgba(200,166,78,0.1);
  border-color: var(--brand-secondary);
  color: var(--brand-secondary);
  transform: translateY(-2px);
}

/* Floating CTA — always visible */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #a8892e 100%);
  color: #0d1f1a;
  border-radius: 50px;
  font-family: var(--brand-body-font);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(200,166,78,0.5), 0 2px 8px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  border: 2px solid rgba(200,166,78,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}
.floating-cta::before { content: '🎰'; font-size: 17px; }
.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(200,166,78,0.65), 0 4px 16px rgba(0,0,0,0.4);
  color: #0d1f1a;
}
.floating-cta:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

/* ── Trust Bar ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--brand-header-bg);
  border-bottom: var(--brand-border);
  border-top: var(--brand-border);
  padding: 14px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(232,217,160,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.trust-item .trust-icon { font-size: 16px; color: var(--brand-secondary); }

/* ── Section base ───────────────────────────────────────────── */
.section { padding: 72px 0; }
.section-alt { background: rgba(26,58,42,0.15); }
.section-title {
  font-family: var(--brand-head-font);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 15px;
  color: rgba(232,217,160,0.68);
  margin-bottom: 40px;
  max-width: 580px;
}
.section-header { margin-bottom: 40px; }
.section-header .divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-secondary), transparent);
  border-radius: 2px;
  margin: 14px 0 20px;
}

/* ── Feature cards grid ─────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--brand-card-bg);
  border: var(--brand-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4), var(--brand-gold-glow);
  border-color: rgba(200,166,78,0.5);
}
.feature-card .card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(45,143,62,0.25), rgba(26,58,42,0.6));
  border: 1px solid rgba(45,143,62,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 16px;
  color: var(--brand-secondary);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: rgba(232,217,160,0.72);
  line-height: 1.65;
}

/* ── Game Categories ────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.category-card {
  background: var(--brand-card-bg);
  border: var(--brand-border);
  border-radius: 10px;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  display: block;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35), var(--brand-gold-glow);
  border-color: rgba(200,166,78,0.48);
}
.category-card .cat-icon { font-size: 32px; margin-bottom: 10px; display: block; }
.category-card .cat-name {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-secondary);
  display: block;
  margin-bottom: 4px;
}
.category-card .cat-count {
  font-size: 12px;
  color: rgba(232,217,160,0.5);
}

/* ── Content article body ───────────────────────────────────── */
.content-body { max-width: 820px; margin: 0 auto; }
.content-body h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  color: var(--brand-secondary);
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,166,78,0.18);
}
.content-body h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: #d4c080;
  margin: 28px 0 10px;
}
.content-body p {
  font-size: 15px;
  color: rgba(232,217,160,0.82);
  line-height: 1.78;
  margin-bottom: 16px;
}
.content-body ul, .content-body ol {
  margin: 14px 0 20px 22px;
}
.content-body ul li, .content-body ol li {
  font-size: 14px;
  color: rgba(232,217,160,0.78);
  line-height: 1.7;
  margin-bottom: 6px;
  list-style: disc;
}
.content-body ol li { list-style: decimal; }
.content-body strong { color: var(--brand-secondary); font-weight: 700; }
.content-body a { color: var(--brand-secondary); border-bottom: 1px solid rgba(200,166,78,0.35); }
.content-body a:hover { border-color: var(--brand-secondary); }

/* ── Info box ───────────────────────────────────────────────── */
.info-box {
  background: linear-gradient(135deg, rgba(26,58,42,0.7), rgba(10,26,20,0.8));
  border: 1px solid rgba(200,166,78,0.3);
  border-left: 4px solid var(--brand-secondary);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 28px 0;
}
.info-box p { margin-bottom: 0; font-size: 14px; }

/* ── Bonus highlight ────────────────────────────────────────── */
.bonus-highlight {
  background: linear-gradient(135deg, rgba(26,58,42,0.85), rgba(45,143,62,0.1));
  border: 1px solid rgba(200,166,78,0.35);
  border-radius: 14px;
  padding: 36px 32px;
  text-align: center;
  margin: 48px 0;
  box-shadow: var(--brand-gold-glow);
}
.bonus-highlight .bh-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(200,166,78,0.65);
  margin-bottom: 10px;
}
.bonus-highlight .bh-amount {
  font-family: var(--brand-head-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 8px;
}
.bonus-highlight .bh-detail {
  font-size: 14px;
  color: rgba(232,217,160,0.65);
  margin-bottom: 24px;
}

/* ── Payment methods ────────────────────────────────────────── */
.payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.payment-badge {
  background: rgba(26,58,42,0.7);
  border: 1px solid rgba(200,166,78,0.22);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(232,217,160,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.payment-badge .pay-icon { font-size: 16px; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--brand-card-bg);
  border: var(--brand-border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--brand-secondary);
  font-family: var(--brand-head-font);
  font-size: 15px;
  font-weight: 700;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(200,166,78,0.06); }
.faq-question .faq-arrow {
  font-size: 11px;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: rgba(232,217,160,0.72);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--brand-header-bg);
  border-top: 2px solid rgba(200,166,78,0.2);
  padding: 56px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: var(--brand-border);
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(232,217,160,0.6);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 320px;
}
.footer-col-title {
  font-family: var(--brand-head-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 13px;
  color: rgba(232,217,160,0.65);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover {
  color: var(--brand-secondary);
  padding-left: 4px;
}

/* Gambling logos row */
.footer-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: var(--brand-border);
  margin-bottom: 24px;
}
.footer-logo-badge {
  background: rgba(26,58,42,0.6);
  border: 1px solid rgba(200,166,78,0.18);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(232,217,160,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  min-height: 40px;
}
.footer-logo-badge.age-badge {
  background: rgba(180,30,30,0.2);
  border-color: rgba(220,50,50,0.4);
  color: #ff8a8a;
  font-size: 18px;
  font-weight: 900;
}
.footer-logo-badge .badge-icon { font-size: 18px; }

/* Footer bottom */
.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: rgba(232,217,160,0.4);
  line-height: 1.8;
}
.footer-bottom a {
  color: rgba(200,166,78,0.6);
  font-size: 12px;
}
.footer-bottom a:hover { color: var(--brand-secondary); }
.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-legal-links a {
  font-size: 12px;
  color: rgba(232,217,160,0.5);
  border-bottom: 1px solid transparent;
}
.footer-legal-links a:hover {
  color: var(--brand-secondary);
  border-color: rgba(200,166,78,0.4);
}

/* ── Responsible gambling note ──────────────────────────────── */
.responsible-note {
  background: rgba(26,58,42,0.4);
  border: 1px solid rgba(200,166,78,0.15);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 12px;
  color: rgba(232,217,160,0.5);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 24px;
}

/* ── Legal page content ─────────────────────────────────────── */
.legal-page { padding: 64px 0; min-height: 60vh; }
.legal-page h1 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 8px; }
.legal-page .last-updated {
  font-size: 13px;
  color: rgba(232,217,160,0.45);
  margin-bottom: 36px;
  display: block;
}
.legal-page h2 { font-size: 1.25rem; margin: 36px 0 12px; }
.legal-page h3 { font-size: 1.05rem; margin: 24px 0 8px; color: #d4c080; }
.legal-page p {
  font-size: 14px;
  color: rgba(232,217,160,0.75);
  line-height: 1.78;
  margin-bottom: 14px;
}
.legal-page ul { margin: 12px 0 16px 22px; }
.legal-page ul li {
  font-size: 14px;
  color: rgba(232,217,160,0.72);
  line-height: 1.7;
  margin-bottom: 6px;
  list-style: disc;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 992px) {
  .main-nav ul { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border-bottom: var(--brand-border);
    z-index: 999;
  }
  .mobile-nav-active ul li a { padding: 12px 16px; border-radius: 8px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 60px 0; }
  .hero-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero-inner { padding: 48px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .trust-bar-inner { gap: 18px; }
  .floating-cta { bottom: 20px; right: 16px; padding: 12px 20px; font-size: 14px; }
  .section { padding: 52px 0; }
  .header-cta-btn { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .btn-hero, .btn-outline { width: 100%; justify-content: center; }
  .footer-logos-row { gap: 10px; }
  .floating-cta::before { display: none; }
  .floating-cta { padding: 12px 18px; }
}

@media (max-width: 320px) {
  .container { padding: 0 12px; }
  .hero h1 { font-size: 1.5rem; }
}