/* ==========================================================================
   Coreon Gaming — Global Stylesheet
   ========================================================================== */

:root {
  --bg: #08050f;
  --bg-alt: #0d0919;
  --surface: #140e24;
  --surface-2: #1a1330;
  --border: rgba(168, 85, 247, 0.18);
  --border-strong: rgba(168, 85, 247, 0.4);
  --text: #f3eefc;
  --text-dim: #b6acce;
  --text-faint: #8074a0;
  --purple: #a855f7;
  --purple-light: #c084fc;
  --purple-dark: #7c1fe0;
  --pink: #e879f9;
  --gold: #f2c879;
  --success: #34d399;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.25);
  --max-width: 1240px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Space Grotesk', var(--font);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 60% 40% at 15% 0%, rgba(168, 85, 247, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 35% at 100% 20%, rgba(232, 121, 249, 0.10), transparent 60%),
    var(--bg);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--text-dim); }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  border-radius: 2px;
}

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { font-size: 17px; }

.section-alt { background: linear-gradient(180deg, transparent, var(--bg-alt) 12%, var(--bg-alt) 88%, transparent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(168, 85, 247, 0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.02);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: rgba(168,85,247,0.1); border-color: var(--purple); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 5, 15, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links > li { position: relative; }
.nav-links a.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: 999px;
  transition: color .15s ease, background .15s ease;
}
.nav-links a.nav-link:hover,
.nav-links li.active > a.nav-link { color: #fff; background: rgba(168,85,247,0.12); }

.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.dropdown a span { color: var(--text-faint); font-weight: 400; font-size: 12.5px; margin-top: 2px; }
.dropdown a:hover { background: rgba(168,85,247,0.14); color: var(--purple-light); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 10px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 100px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(168,85,247,0.35), transparent 65%);
  filter: blur(10px);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.02em;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead { font-size: 18px; color: var(--text-dim); max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.hero-badges { display: flex; gap: 22px; margin-top: 46px; flex-wrap: wrap; }
.hero-badges .badge { display: flex; flex-direction: column; }
.hero-badges .badge strong { font-family: var(--font-display); font-size: 24px; color: #fff; }
.hero-badges .badge span { font-size: 12.5px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .08em; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: linear-gradient(155deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}
.hero-visual .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
}
.hero-visual .ring.r1 { width: 78%; height: 78%; animation: spin 26s linear infinite; }
.hero-visual .ring.r2 { width: 58%; height: 58%; border-style: dashed; animation: spin 40s linear infinite reverse; }
.hero-visual .core {
  width: 38%; height: 38%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  filter: drop-shadow(0 0 50px rgba(168,85,247,0.6));
  display: flex; align-items: center; justify-content: center;
}
.hero-visual .core img { width: 52%; filter: drop-shadow(0 4px 10px rgba(0,0,0,.4)); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Trust strip ---------- */
.trust-strip { padding: 34px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-strip .container { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.trust-strip .label { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint); white-space: nowrap; }
.trust-logos { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.trust-logos span { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text-faint); letter-spacing: .02em; opacity: .8; }

/* ---------- Cards / Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 20px 40px rgba(0,0,0,0.35); }

.icon-tile {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168,85,247,0.25), rgba(232,121,249,0.12));
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--purple-light);
}
.icon-tile svg { width: 24px; height: 24px; }

.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { font-size: 14.5px; margin-bottom: 14px; }
.card .card-link { font-size: 13.5px; font-weight: 600; color: var(--purple-light); display: inline-flex; align-items: center; gap: 6px; }

/* product card */
.product-card { display: flex; flex-direction: column; }
.product-card .thumb {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, var(--surface-2), var(--bg-alt));
  border: 1px solid var(--border);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card .thumb svg { width: 46%; opacity: .92; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card .tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(168,85,247,0.18);
  border: 1px solid var(--border-strong);
  color: var(--purple-light);
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.product-card .price-row {
  margin-top: auto;
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.product-card .price { font-family: var(--font-display); font-size: 22px; color: #fff; font-weight: 600; }
.product-card .price small { font-size: 12px; color: var(--text-faint); font-weight: 400; }
.spec-list { margin: 14px 0; }
.spec-list li { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--text-dim); padding: 7px 0; border-bottom: 1px dashed var(--border); }
.spec-list li span:last-child { color: var(--text); font-weight: 500; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 28px 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.stat strong { display: block; font-family: var(--font-display); font-size: 34px; background: linear-gradient(135deg, var(--purple-light), var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-size: 13px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Pricing ---------- */
.pricing-toggle-note { font-size: 13.5px; color: var(--text-faint); text-align: center; margin-bottom: 40px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--purple);
  background: linear-gradient(165deg, rgba(168,85,247,0.14), var(--surface) 60%);
  position: relative;
  transform: scale(1.03);
  box-shadow: var(--shadow-glow);
}
.price-card .plan-tag { position: absolute; top: -13px; left: 28px; background: linear-gradient(135deg, var(--purple), var(--pink)); color: #fff; font-size: 11.5px; font-weight: 700; padding: 5px 14px; border-radius: 999px; letter-spacing: .04em; }
.price-card h3 { font-size: 20px; margin-bottom: 6px; }
.price-card .desc { font-size: 13.5px; color: var(--text-faint); margin-bottom: 22px; min-height: 36px; }
.price-card .amount { font-family: var(--font-display); font-size: 40px; color: #fff; font-weight: 600; }
.price-card .amount sup { font-size: 16px; font-weight: 500; color: var(--text-faint); }
.price-card .period { font-size: 13px; color: var(--text-faint); margin-bottom: 24px; }
.price-card ul.features { margin-bottom: 28px; flex-grow: 1; }
.price-card ul.features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-dim); padding: 8px 0; }
.price-card ul.features li svg { flex-shrink: 0; width: 17px; height: 17px; margin-top: 2px; color: var(--success); }

.pricing-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table.pricing-table { width: 100%; border-collapse: collapse; min-width: 640px; }
table.pricing-table th, table.pricing-table td { text-align: left; padding: 16px 20px; font-size: 14.5px; border-bottom: 1px solid var(--border); }
table.pricing-table th { background: var(--surface-2); color: var(--text-faint); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
table.pricing-table td.price-cell { color: #fff; font-weight: 600; font-family: var(--font-display); }
table.pricing-table tr:last-child td { border-bottom: none; }
table.pricing-table tr:hover td { background: rgba(168,85,247,0.05); }

.note-box {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px 26px;
  font-size: 13.5px;
  color: var(--text-faint);
  margin-top: 28px;
}
.note-box strong { color: var(--text-dim); }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(168,85,247,0.22), rgba(232,121,249,0.08));
  border: 1px solid var(--border-strong);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: 28px; margin-bottom: 8px; }
.cta-band p { margin-bottom: 0; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Timeline (About) ---------- */
.timeline { position: relative; padding-left: 30px; border-left: 1px solid var(--border); }
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item::before { content: ""; position: absolute; left: -35px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 0 4px rgba(168,85,247,0.2); }
.timeline-item .yr { font-family: var(--font-display); color: var(--purple-light); font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.timeline-item h4 { margin-bottom: 6px; font-size: 17px; }
.timeline-item p { font-size: 14.5px; margin: 0; }

/* ---------- Values ---------- */
.value-row { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.value-row:last-child { border-bottom: none; }
.value-row .num { font-family: var(--font-display); font-size: 22px; color: var(--text-faint); width: 46px; flex-shrink: 0; }
.value-row h4 { margin-bottom: 6px; font-size: 17px; }
.value-row p { margin: 0; font-size: 14.5px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
.office-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 20px; }
.office-card .flag { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--purple-light); font-weight: 700; margin-bottom: 10px; }
.office-card h4 { font-size: 18px; margin-bottom: 6px; }
.office-card address { font-style: normal; color: var(--text-dim); font-size: 14.5px; line-height: 1.7; }
.office-card .meta { margin-top: 12px; font-size: 13.5px; color: var(--text-faint); }
.office-card .meta a { color: var(--purple-light); }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-dim); }
.field input, .field select, .field textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--purple); }
.field textarea { resize: vertical; min-height: 120px; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-faint); margin-bottom: 20px; }
.consent input { margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: 15.5px; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--purple-light); transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; font-size: 14.5px; }

/* ---------- Showcase / photo frames ---------- */
.showcase {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-glow);
  position: relative;
}
.showcase img { width: 100%; display: block; }
.showcase .showcase-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 26px;
  background: linear-gradient(0deg, rgba(8,5,15,0.92), transparent);
}
.showcase .showcase-caption h4 { margin-bottom: 4px; font-size: 16px; color: #fff; }
.showcase .showcase-caption p { margin: 0; font-size: 13.5px; }

.office-photo-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.office-photo-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.office-photo-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }
.office-photo-card .cap { padding: 20px 22px; }
.office-photo-card .cap .flag { font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--purple-light); font-weight: 700; margin-bottom: 8px; }
.office-photo-card .cap h4 { margin-bottom: 4px; font-size: 17px; }
.office-photo-card .cap p { margin: 0; font-size: 13.5px; }

.hero-visual.has-photo { background: none; }
.hero-visual.has-photo img.bg-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 24px; opacity: .55; }
.hero-visual.has-photo::before { content: ""; position: absolute; inset: 0; border-radius: 24px; background: radial-gradient(circle, rgba(8,5,15,0.15), rgba(8,5,15,0.75) 75%); }

/* ---------- Compliance badges ---------- */
.badge-row { display: flex; gap: 14px; flex-wrap: wrap; }
.compliance-badge {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border); background: var(--surface);
  padding: 12px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--text-dim);
}
.compliance-badge svg { width: 18px; height: 18px; color: var(--purple-light); }

/* ---------- Breadcrumb / Page header ---------- */
.page-header { padding: 56px 0 44px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-header::before {
  content: "";
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 400px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.18), transparent 70%);
  z-index: -1;
}
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-faint); margin-bottom: 16px; }
.breadcrumb a { color: var(--text-faint); }
.breadcrumb a:hover { color: var(--purple-light); }
.page-header h1 { font-size: clamp(28px, 4vw, 42px); max-width: 780px; }
.page-header p.lead { font-size: 16.5px; max-width: 640px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-alt); padding: 64px 0 28px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; max-width: 260px; }
.footer-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-faint); margin-bottom: 16px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 14px; color: var(--text-dim); }
.footer-col a:hover { color: var(--purple-light); }
.footer-office strong { display: block; color: var(--text); font-size: 13.5px; margin-bottom: 4px; }
.footer-office address { font-style: normal; font-size: 13px; color: var(--text-faint); line-height: 1.6; margin-bottom: 16px; }
.social-row { display: flex; gap: 10px; margin-top: 6px; }
.social-row a { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-dim); }
.social-row a:hover { border-color: var(--purple); color: var(--purple-light); }
.social-row svg { width: 16px; height: 16px; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { margin: 0; font-size: 13px; color: var(--text-faint); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 13px; color: var(--text-faint); }
.footer-legal a:hover { color: var(--purple-light); }
.age-notice { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border-strong); border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 700; color: var(--gold); }

/* ---------- Responsible gambling banner ---------- */
.rg-banner { background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; }
.rg-banner .container { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; text-align: center; font-size: 12.5px; color: var(--text-faint); }
.rg-banner strong { color: var(--gold); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; order: -1; }
  .grid-3, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .grid-3, .grid-2, .pricing-grid, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 40px 26px; }
  .cta-band .actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip .container { justify-content: center; text-align: center; }
  table.pricing-table { min-width: 560px; }

  /* Mobile nav drawer */
  .nav-links {
    display: flex;
    position: fixed;
    top: 78px; left: 0; right: 0; height: calc(100vh - 78px);
    background: var(--bg-alt);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a.nav-link { width: 100%; padding: 14px 16px; }
  .has-dropdown .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    display: none; box-shadow: none; margin-top: 4px; border: none; background: rgba(255,255,255,0.02);
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-cta { display: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 16px; }
  .section-head h2 { font-size: 26px; }
}
