@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,700&family=Barlow:wght@300;400;500;600&family=Syncopate:wght@400;700&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
  --ink:        #07080a;
  --ink2:       #0e1117;
  --ink3:       #141820;
  --ink4:       #1c2230;
  --amber:      #f5a623;
  --amber-dim:  #c47e10;
  --amber-glow: rgba(245,166,35,0.18);
  --cyan:       #00d4ff;
  --cyan-dim:   rgba(0,212,255,0.12);
  --red:        #ff3b4e;
  --green:      #00c97a;
  --text:       #dce4f0;
  --text-muted: #68788f;
  --text-faint: #38455a;
  --border:     rgba(245,166,35,0.15);
  --border-hi:  rgba(245,166,35,0.45);

  --f-head:  'Syncopate', sans-serif;
  --f-cond:  'Barlow Condensed', sans-serif;
  --f-body:  'Barlow', sans-serif;

  --radius: 2px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grid texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

a { color: var(--amber); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(7,8,10,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-age-bar {
  background: rgba(255,59,78,0.08);
  border-bottom: 1px solid rgba(255,59,78,0.18);
  padding: 5px 2rem;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--f-cond);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.age-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border: 2px solid var(--red);
  border-radius: 50%;
  font-family: var(--f-head);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--red);
  margin-right: 0.6rem;
  box-shadow: 0 0 10px rgba(255,59,78,0.4);
  animation: pulseRed 2.5s ease-in-out infinite;
}

@keyframes pulseRed {
  0%,100% { box-shadow: 0 0 8px rgba(255,59,78,0.35); }
  50%      { box-shadow: 0 0 18px rgba(255,59,78,0.7); }
}

.age-bar-text { color: rgba(255,59,78,0.75); display: flex; align-items: center; }

.lang-switcher { display: flex; gap: 6px; }
.lang-btn {
  font-family: var(--f-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 2px 10px;
  border: 1px solid var(--text-faint);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  background: transparent;
}
.lang-btn:hover, .lang-btn.active {
  color: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 8px var(--amber-glow);
}

.header-nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  max-width: 1380px; margin: 0 auto;
  height: 60px;
}

.logo {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  display: flex; align-items: center; gap: 0.3rem;
  white-space: nowrap;
}
.logo .accent { color: var(--amber); }
.logo .dot { color: var(--amber); font-size: 1.4rem; line-height: 0; }

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

.nav-link {
  font-family: var(--f-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0.75rem;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.nav-link:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.nav-cta {
  margin-left: 0.5rem;
  background: var(--amber);
  color: var(--ink) !important;
  font-family: var(--f-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  transition: background var(--transition), box-shadow var(--transition);
  border-bottom: none !important;
}
.nav-cta:hover {
  background: #ffbe4a;
  box-shadow: 0 0 20px rgba(245,166,35,0.5);
  color: var(--ink) !important;
}

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--amber); margin: 5px 0; transition: 0.3s; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 5rem 2rem;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 0% 50%, rgba(245,166,35,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 100% 20%, rgba(0,212,255,0.05) 0%, transparent 60%),
    linear-gradient(175deg, var(--ink2) 0%, var(--ink) 100%);
}

/* diagonal stripe */
.hero-stripe {
  position: absolute;
  top: 0; right: -10%;
  width: 55%;
  height: 100%;
  background: var(--ink2);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  border-left: 1px solid var(--border);
}

.hero-stripe-inner {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 18px,
    rgba(245,166,35,0.025) 18px, rgba(245,166,35,0.025) 19px
  );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--f-cond);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: slideRight 0.6s 0.1s both;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px; height: 2px;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
}

.hero-h1 {
  font-family: var(--f-cond);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: slideRight 0.6s 0.25s both;
}

.hero-h1-accent {
  font-family: var(--f-cond);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--amber);
  text-shadow: 0 0 40px rgba(245,166,35,0.4);
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0;
  animation: slideRight 0.6s 0.35s both;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: slideRight 0.6s 0.5s both;
  font-weight: 400;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0;
  animation: slideRight 0.6s 0.65s both;
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* hero stats */
.hero-stats {
  position: absolute;
  bottom: 2.5rem; right: 5%;
  z-index: 2;
  display: flex; gap: 2px;
  opacity: 0;
  animation: fadeUp 0.6s 1s both;
}

.stat-box {
  background: var(--ink3);
  border: 1px solid var(--border);
  padding: 1.1rem 1.6rem;
  text-align: center;
  border-top: 2px solid var(--amber);
}

.stat-num {
  font-family: var(--f-cond);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-family: var(--f-cond);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--f-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 0 24px rgba(245,166,35,0.35);
}
.btn-primary:hover {
  background: #ffcc5c;
  color: var(--ink);
  box-shadow: 0 0 40px rgba(245,166,35,0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(220,228,240,0.3);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  box-shadow: 0 0 20px var(--amber-glow);
}

.btn-sm {
  padding: 0.55rem 1.4rem;
  font-size: 0.78rem;
}

/* ════════════════════════════════════════
   LAYOUT
════════════════════════════════════════ */
.section { padding: 5rem 2rem; position: relative; z-index: 1; }
.section-alt { background: var(--ink2); }
.container { max-width: 1200px; margin: 0 auto; }
.container-lg { max-width: 1380px; margin: 0 auto; }

.section-label {
  font-family: var(--f-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--amber); }

.section-title {
  font-family: var(--f-cond);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--text);
}
.section-title .hl { color: var(--amber); }

.section-sub {
  color: var(--text-muted);
  margin-top: 0.75rem;
  max-width: 560px;
  font-size: 1rem;
}

.section-head { margin-bottom: 3rem; }
.section-head-center { text-align: center; }
.section-head-center .section-label { justify-content: center; }
.section-head-center .section-label::before { display: none; }
.section-head-center .section-sub { margin: 0.75rem auto 0; }

/* divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--cyan), transparent);
  opacity: 0.25;
  margin: 0;
}

/* ════════════════════════════════════════
   BOOKMAKER CARDS (homepage list)
════════════════════════════════════════ */
.bm-list { display: flex; flex-direction: column; gap: 1.5rem; }

.bm-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bm-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--amber-glow) 0%, transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
}
.bm-card:hover { border-color: var(--amber); transform: translateX(4px); }
.bm-card:hover::after { opacity: 1; }

.bm-rank {
  font-family: var(--f-cond);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  text-align: center;
}

.bm-info { position: relative; z-index: 1; }

.bm-name {
  font-family: var(--f-cond);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.bm-tagline { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.6rem; }

.bm-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.tag {
  font-family: var(--f-cond);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 10px;
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--amber);
  background: rgba(245,166,35,0.07);
}

.bm-actions { display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-end; position: relative; z-index: 1; }

.bm-rating {
  font-family: var(--f-cond);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--amber);
  text-align: right;
}
.bm-stars { font-size: 0.8rem; color: var(--amber); letter-spacing: 2px; }

/* ════════════════════════════════════════
   REVIEW PAGE
════════════════════════════════════════ */
.review-hero {
  padding: 4rem 2rem 3rem;
  background: var(--ink2);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 1; overflow: hidden;
}

.review-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  align-items: start; gap: 3rem;
}

.review-brand {
  font-family: var(--f-cond);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
}
.review-brand span { color: var(--amber); }

.review-tagline { font-size: 1.1rem; color: var(--text-muted); margin-top: 0.5rem; }

.review-badge {
  background: var(--ink3);
  border: 1px solid var(--border-hi);
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 160px;
}
.review-score {
  font-family: var(--f-cond);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}
.review-score-label { font-family: var(--f-cond); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }

.review-meta-bar {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.review-meta-item { display: flex; flex-direction: column; gap: 0.2rem; }
.review-meta-label { font-family: var(--f-cond); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.review-meta-value { font-family: var(--f-cond); font-size: 1rem; font-weight: 600; color: var(--text); }
.review-meta-value a { color: var(--amber); font-size: 0.82rem; word-break: break-all; }

/* pros/cons grid */
.pros-cons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 2rem;
}

.pros-box, .cons-box {
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.pros-box { border-top: 2px solid var(--green); background: rgba(0,201,122,0.04); }
.cons-box { border-top: 2px solid var(--red); background: rgba(255,59,78,0.04); }

.pros-cons-title {
  font-family: var(--f-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.pros-box .pros-cons-title { color: var(--green); }
.cons-box .pros-cons-title { color: var(--red); }

.pros-cons ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pros-box li { color: var(--text-muted); font-size: 0.95rem; padding-left: 1.2rem; position: relative; }
.pros-box li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons-box li { color: var(--text-muted); font-size: 0.95rem; padding-left: 1.2rem; position: relative; }
.cons-box li::before { content: '✗'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ════════════════════════════════════════
   WHY TRUST US GRID
════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.trust-item {
  background: var(--ink2);
  padding: 2rem;
  transition: background var(--transition);
}
.trust-item:hover { background: var(--ink3); }

.trust-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.trust-title {
  font-family: var(--f-cond);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 0.6rem;
}

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

/* ════════════════════════════════════════
   GUIDE GRID
════════════════════════════════════════ */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.guide-card {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--amber);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.guide-num {
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--f-cond);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(245,166,35,0.07);
  line-height: 1;
  user-select: none;
}

.guide-title {
  font-family: var(--f-cond);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.guide-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.faq-q {
  font-family: var(--f-cond);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color var(--transition), background var(--transition);
  user-select: none;
}
.faq-q:hover { color: var(--amber); background: rgba(245,166,35,0.04); }

.faq-q.open { color: var(--amber); background: rgba(245,166,35,0.06); border-left: 2px solid var(--amber); }

.faq-icon { font-size: 1.2rem; transition: transform 0.25s; color: var(--amber); flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1.5rem;
}
.faq-a.open { max-height: 300px; padding: 0 1.5rem 1.3rem; }

/* ════════════════════════════════════════
   RESPONSIBLE GAMING
════════════════════════════════════════ */
.rg-tips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.rg-tip {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--ink2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cyan);
  padding: 1.5rem;
}

.rg-tip-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.rg-tip-title {
  font-family: var(--f-cond);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}

.rg-tip-desc { color: var(--text-muted); font-size: 0.92rem; }

.rg-resources {
  background: var(--ink3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--amber);
  padding: 2rem;
}

.rg-resources-title {
  font-family: var(--f-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.2rem;
}

.rg-links {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}

.rg-link {
  font-family: var(--f-cond);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 0.5rem;
}
.rg-link::before { content: '→'; color: var(--amber); }
.rg-link:hover { color: var(--amber); border-color: var(--amber); background: var(--amber-glow); }

/* ════════════════════════════════════════
   CONTENT BOX (about / legal / standalone pages)
════════════════════════════════════════ */
.content-block {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--amber);
  padding: 2.5rem 3rem;
}
.content-block p { color: var(--text-muted); margin-bottom: 1.3rem; line-height: 1.8; font-size: 0.98rem; }
.content-block p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════════ */
.page-hero {
  padding: 4rem 2rem 2.5rem;
  background: var(--ink2);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }

.page-title {
  font-family: var(--f-cond);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.0;
  color: var(--text);
}
.page-title span { color: var(--amber); }

.page-sub { color: var(--text-muted); margin-top: 0.75rem; font-size: 1rem; max-width: 580px; }

/* ════════════════════════════════════════
   CONTACT FORM
════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }

.form-group { margin-bottom: 1.3rem; }
.form-label {
  display: block;
  font-family: var(--f-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--ink3);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  outline: none;
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 12px var(--amber-glow);
}
.form-textarea { resize: vertical; min-height: 140px; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--ink2);
  border: 1px solid var(--border);
  padding: 1.2rem;
}
.ci-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber); font-size: 1rem; flex-shrink: 0;
}
.ci-label { font-family: var(--f-cond); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.ci-value { font-size: 0.92rem; color: var(--text); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: #050609;
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber) 30%, var(--cyan) 70%, transparent);
  opacity: 0.6;
}

.footer-age-strip {
  background: rgba(255,59,78,0.06);
  border-bottom: 1px solid rgba(255,59,78,0.12);
  padding: 0.65rem 2rem;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  font-family: var(--f-cond);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,59,78,0.65);
}

.footer-age-circle {
  width: 28px; height: 28px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-head);
  font-size: 0.58rem;
  color: var(--red);
}

.footer-main {
  max-width: 1200px; margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo { font-family: var(--f-head); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin-bottom: 0.75rem; display: block; }
.footer-logo .accent { color: var(--amber); }

.footer-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 1.5rem; }

.footer-col-title {
  font-family: var(--f-cond);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--amber); }

/* RG logos */
.rg-logos { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.rg-logo {
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  background: var(--ink2);
  padding: 5px 10px;
  height: 34px;
  transition: border-color var(--transition);
}
.rg-logo:hover { border-color: var(--amber); }
.rg-logo img { height: 20px; width: auto; filter: brightness(0.75) grayscale(0.2); transition: filter var(--transition); }
.rg-logo:hover img { filter: brightness(1) grayscale(0); }
.rg-logo-text { font-family: var(--f-cond); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-muted); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.2rem 2rem;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}

.footer-legal-row { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; align-items: center; }
.footer-legal-row a {
  font-family: var(--f-cond);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color var(--transition);
}
.footer-legal-row a:hover { color: var(--amber); }
.footer-legal-row span { color: var(--text-faint); }

.footer-copy { font-family: var(--f-cond); font-size: 0.7rem; letter-spacing: 0.08em; color: var(--text-faint); }

.footer-disclaimer {
  background: rgba(245,166,35,0.04);
  border-top: 1px solid rgba(245,166,35,0.08);
  padding: 0.9rem 2rem;
  text-align: center;
  font-family: var(--f-cond);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  color: var(--text-faint);
}

/* ════════════════════════════════════════
   ANIMATIONS & UTILS
════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up { opacity: 0; animation: fadeUp 0.55s both; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1080px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
  .bm-card { grid-template-columns: 40px 1fr; }
  .bm-actions { display: none; }
  .bm-card { display: block; padding: 1.2rem; }
  .bm-rank { font-size: 1.2rem; display: inline; margin-right: 0.5rem; }
  .review-hero-inner { grid-template-columns: 1fr; }
  .review-badge { display: flex; gap: 2rem; align-items: center; min-width: auto; }
  .pros-cons { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .rg-tips { grid-template-columns: 1fr; }
  .hero-stats { position: static; margin-top: 2.5rem; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(5,6,9,0.98); border-bottom: 1px solid var(--border); padding: 1rem; gap: 0; }
  nav.open { display: flex; }
  .hamburger { display: block; }
  .header-nav-row { flex-wrap: wrap; position: relative; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .content-block { padding: 1.5rem; }
  .hero-stripe { display: none; }
  .hero { min-height: auto; padding: 4rem 1.5rem; }
}
