/* ============================================================
   Dragon Neon Jade — Style 3 | Casino Drakaris
   ============================================================ */

/* Logo: показывать только изображение */
.logo-text { display: none; }

/* Banners grid */
.banners-section { padding: 1.5rem 1.5rem 2.5rem !important; }
.banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.banner-img {
  width: 100%; display: block;
  border-radius: 14px;
  border: 1px solid rgba(0,255,136,.2);
  box-shadow: 0 0 22px rgba(0,255,136,.1), 0 6px 24px rgba(0,0,0,.4);
  transition: box-shadow .25s, transform .25s;
  aspect-ratio: auto;
}
.banner-img:hover {
  box-shadow: 0 0 38px rgba(0,255,136,.28);
  transform: translateY(-3px);
}
@media (max-width: 640px) {
  .banners-grid { grid-template-columns: 1fr; }
}
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:       #00ff88;
  --accent2:      #00e5cc;
  --accent-glow:  rgba(0,255,136,.42);
  --card-bg:      rgba(0,20,10,.55);
  --card-border:  rgba(0,255,136,.22);
  --text:         #f0f0f0;
  --text-muted:   rgba(240,240,240,.62);
  --radius:       12px;
  --fh: 'Orbitron', sans-serif;
  --fb: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: radial-gradient(ellipse at top left, #001a0d 0%, #000000 55%, #001205 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--fb);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Dragon-scale texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(60deg,  transparent 0, transparent 30px, rgba(0,255,136,.016) 30px, rgba(0,255,136,.016) 31px),
    repeating-linear-gradient(-60deg, transparent 0, transparent 30px, rgba(0,255,136,.016) 30px, rgba(0,255,136,.016) 31px);
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,255,136,.17);
}
.header-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem; height: 68px; gap: .75rem;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: .55rem;
  text-decoration: none; flex-shrink: 0;
}
.logo img { height: 40px; width: auto; }
.logo-text {
  font-family: var(--fh); font-size: 1.05rem; font-weight: 900;
  color: var(--accent); letter-spacing: .1em;
  text-shadow: 0 0 14px var(--accent-glow);
}

/* Main nav */
.main-nav {
  display: flex; align-items: center; gap: .1rem;
  flex: 1; justify-content: center;
}
.main-nav > a,
.nav-dropdown-trigger {
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: .84rem; font-weight: 500;
  padding: .45rem .72rem; border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap; cursor: pointer;
  background: none; border: none;
  font-family: var(--fb);
  display: inline-flex; align-items: center; gap: .3rem;
}
.main-nav > a:hover,
.nav-dropdown-trigger:hover {
  color: var(--accent); background: rgba(0,255,136,.07);
}

/* Dropdown cluster */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 192px;
  background: rgba(0,8,4,.97);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(0,255,136,.22);
  border-radius: 10px; padding: .35rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; visibility: visible;
  pointer-events: all; transform: translateY(0);
}
.nav-dropdown a {
  display: block; padding: .55rem .9rem; border-radius: 7px;
  font-size: .84rem; color: rgba(255,255,255,.72);
  text-decoration: none; transition: color .2s, background .2s;
}
.nav-dropdown a:hover { color: var(--accent); background: rgba(0,255,136,.09); }

.nav-chevron { font-size: .6rem; transition: transform .2s; display: inline-block; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* PROMO nav button */
.nav-promo-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .42rem 1rem;
  background: linear-gradient(135deg, #002200, #00bb55);
  color: #fff !important; font-weight: 700; font-size: .78rem;
  border-radius: 8px; text-decoration: none;
  letter-spacing: .07em; text-transform: uppercase;
  border: 1px solid rgba(0,255,136,.6);
  box-shadow: 0 0 14px rgba(0,255,136,.3);
  transition: box-shadow .2s, transform .2s, background .2s;
  animation: promoPulse 2.8s ease-in-out infinite;
}
.nav-promo-btn:hover {
  background: linear-gradient(135deg,#003300,#00ff88) !important;
  box-shadow: 0 0 28px rgba(0,255,136,.65); transform: translateY(-1px);
}
@keyframes promoPulse {
  0%,100% { box-shadow: 0 0 14px rgba(0,255,136,.3); }
  50%      { box-shadow: 0 0 24px rgba(0,255,136,.58); }
}

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.btn-cta {
  display: inline-flex; align-items: center;
  padding: .5rem 1.15rem;
  background: linear-gradient(135deg,#001a00,#00ff88);
  color: #000 !important; font-weight: 700; font-size: .82rem;
  border-radius: 8px; text-decoration: none; letter-spacing: .03em;
  border: 1px solid var(--accent);
  box-shadow: 0 0 14px rgba(0,255,136,.25);
  transition: all .2s; white-space: nowrap;
}
.btn-cta:hover { box-shadow: 0 0 26px rgba(0,255,136,.58); transform: translateY(-2px); }
.btn-cta-outline {
  background: transparent !important;
  color: var(--accent) !important;
  border: 1px solid rgba(0,255,136,.45);
}
.btn-cta-outline:hover { background: rgba(0,255,136,.08) !important; }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--accent); border-radius: 2px; transition: .25s;
}

/* ===================== LAYOUT ===================== */
main { position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===================== HERO ===================== */
.hero {
  padding: 5rem 1.5rem 4rem; text-align: center; position: relative;
  overflow: hidden; max-width: 1320px; margin: 0 auto;
}
.hero::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse,rgba(0,255,136,.07) 0%,transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .32rem 1rem;
  background: rgba(0,255,136,.08); border: 1px solid rgba(0,255,136,.35);
  border-radius: 50px; font-size: .78rem; color: var(--accent);
  margin-bottom: 1.4rem; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--fh); font-size: clamp(1.9rem,5vw,3.4rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 1.1rem;
  text-shadow: 0 0 35px rgba(0,255,136,.35);
  position: relative; z-index: 1;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-desc {
  font-size: clamp(.95rem,2vw,1.1rem); color: var(--text-muted);
  max-width: 660px; margin: 0 auto 2.2rem; line-height: 1.75;
  position: relative; z-index: 1;
}
.hero-btns {
  display: flex; justify-content: center; gap: 1rem;
  flex-wrap: wrap; margin-bottom: 2.5rem; position: relative; z-index: 1;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2.2rem;
  background: linear-gradient(135deg,#002800,#00ff88);
  color: #000 !important; font-weight: 700; font-size: 1rem;
  border-radius: var(--radius); text-decoration: none; letter-spacing: .04em;
  border: 1px solid var(--accent);
  box-shadow: 0 0 24px rgba(0,255,136,.35),0 4px 20px rgba(0,0,0,.4);
  transition: all .25s;
}
.btn-primary:hover {
  box-shadow: 0 0 45px rgba(0,255,136,.62),0 6px 30px rgba(0,0,0,.5);
  transform: translateY(-3px);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2.2rem;
  background: rgba(0,255,136,.06); color: var(--accent) !important;
  font-weight: 600; font-size: 1rem; border-radius: var(--radius);
  text-decoration: none; border: 1px solid rgba(0,255,136,.38);
  transition: all .25s;
}
.btn-secondary:hover {
  background: rgba(0,255,136,.12);
  box-shadow: 0 0 20px rgba(0,255,136,.15); transform: translateY(-2px);
}

/* Hero banner image */
.hero-img {
  width: 100%; max-width: 900px; margin: 0 auto;
  display: block; border-radius: 16px;
  border: 1px solid rgba(0,255,136,.2);
  box-shadow: 0 0 40px rgba(0,255,136,.12),0 20px 60px rgba(0,0,0,.5);
  position: relative; z-index: 1;
}

/* ===================== STATS BAR ===================== */
.stats-bar {
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  padding: 2rem 1.5rem; max-width: 900px; margin: 0 auto;
  border-top: 1px solid rgba(0,255,136,.1);
  border-bottom: 1px solid rgba(0,255,136,.1);
}
.stat { text-align: center; }
.stat-val {
  font-family: var(--fh); font-size: clamp(1.5rem,4vw,2.2rem);
  font-weight: 900; color: var(--accent);
  text-shadow: 0 0 20px rgba(0,255,136,.5); display: block;
}
.stat-lbl {
  font-size: .77rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem;
}

/* ===================== SECTIONS ===================== */
.section { padding: 4rem 1.5rem; max-width: 1320px; margin: 0 auto; }
.section-title {
  font-family: var(--fh); font-size: clamp(1.3rem,3vw,1.9rem);
  font-weight: 700; text-align: center; margin-bottom: .65rem;
  text-shadow: 0 0 18px rgba(0,255,136,.25);
}
.section-title em { color: var(--accent); font-style: normal; }
.section-sub {
  text-align: center; color: var(--text-muted); margin-bottom: 2.5rem;
  max-width: 580px; margin-left: auto; margin-right: auto;
  font-size: .93rem; line-height: 1.7;
}
.divider {
  width: 100%; height: 1px; margin: 0;
  background: linear-gradient(90deg,transparent,rgba(0,255,136,.3) 50%,transparent);
}

/* ===================== CARDS (glassmorphism) ===================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap: 1.2rem; max-width: 1200px; margin: 0 auto;
}
.card {
  background: var(--card-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--card-border); border-radius: 14px;
  padding: 1.5rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(135deg,rgba(0,255,136,.03) 0%,transparent 55%);
}
.card:hover {
  border-color: rgba(0,255,136,.5);
  box-shadow: 0 0 30px rgba(0,255,136,.12),0 8px 32px rgba(0,0,0,.4);
  transform: translateY(-4px);
}
.card-icon { font-size: 2rem; margin-bottom: .75rem; display: block; }
.card h3 {
  font-family: var(--fh); font-size: .88rem; font-weight: 700;
  margin-bottom: .5rem; color: var(--accent); letter-spacing: .04em;
}
.card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* ===================== TABLES ===================== */
.table-wrap {
  overflow-x: auto; margin: 1.5rem 0;
  border-radius: var(--radius); border: 1px solid rgba(0,255,136,.15);
}
table { width: 100%; border-collapse: collapse; font-size: .88rem; }
thead th {
  background: rgba(0,255,136,.09); color: var(--accent);
  padding: .8rem 1rem; text-align: left; font-weight: 600;
  border-bottom: 1px solid rgba(0,255,136,.25); white-space: nowrap;
}
tbody td {
  padding: .7rem 1rem; border-bottom: 1px solid rgba(255,255,255,.05);
  color: var(--text-muted); vertical-align: top;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(0,255,136,.03); color: var(--text); }

/* ===================== STEPS ===================== */
.steps { display: flex; flex-direction: column; gap: 1rem; max-width: 720px; margin: 0 auto; }
.step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--card-bg); border: 1px solid var(--card-border);
  backdrop-filter: blur(10px); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; transition: border-color .2s;
}
.step:hover { border-color: rgba(0,255,136,.4); }
.step-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg,#002200,#00ff88);
  color: #000; font-weight: 900; font-size: .88rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); box-shadow: 0 0 12px rgba(0,255,136,.35);
}
.step-content h4 { font-weight: 700; margin-bottom: .3rem; color: var(--text); font-size: .93rem; }
.step-content p  { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }

/* ===================== FAQ ===================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--card-border);
  backdrop-filter: blur(10px); border-radius: var(--radius);
  margin-bottom: .65rem; overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: rgba(0,255,136,.4); }
.faq-q {
  padding: 1.1rem 1.4rem; font-weight: 600; font-size: .93rem;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; user-select: none;
}
.faq-q::after { content:'+'; font-size: 1.4rem; color: var(--accent); font-weight: 300; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-q::after { content:'−'; }
.faq-a {
  padding: 0 1.4rem 1.1rem; font-size: .88rem;
  color: var(--text-muted); line-height: 1.75; display: none;
}
.faq-item.open .faq-a { display: block; }

/* ===================== PROMO BADGE ===================== */
.promo-badge-wrap { max-width: 580px; margin: 0 auto 3rem; }
.promo-badge {
  background: linear-gradient(135deg,rgba(0,22,10,.94),rgba(0,48,20,.94));
  border: 2px solid var(--accent); border-radius: 20px;
  padding: 2.6rem 2rem; text-align: center;
  box-shadow: 0 0 60px rgba(0,255,136,.22),inset 0 0 60px rgba(0,255,136,.03);
  position: relative; overflow: hidden;
}
.promo-badge::before {
  content: ''; position: absolute; top:-50%; left:-50%;
  width: 200%; height: 200%;
  background: conic-gradient(transparent 280deg,rgba(0,255,136,.11) 295deg,transparent 310deg);
  animation: rotateBadge 5s linear infinite; pointer-events: none;
}
@keyframes rotateBadge { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.promo-badge-inner { position: relative; z-index: 1; }
.promo-badge-label {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .3rem 1rem;
  background: rgba(0,255,136,.12); border: 1px solid rgba(0,255,136,.45);
  border-radius: 50px; font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.1rem;
}
.promo-code-display {
  font-family: var(--fh); font-size: clamp(2.6rem,10vw,4rem);
  font-weight: 900; color: var(--accent);
  text-shadow: 0 0 40px rgba(0,255,136,.7),0 0 80px rgba(0,255,136,.25);
  letter-spacing: .18em; display: block; margin: .4rem 0 .8rem;
}
.promo-badge-headline {
  font-size: .95rem; color: var(--text-muted); line-height: 1.55; margin-bottom: .5rem;
}
.promo-badge-value {
  font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 1.5rem; line-height: 1.5;
}
.promo-badge-disclaimer {
  font-size: .72rem; color: rgba(255,255,255,.36);
  line-height: 1.55; margin-top: 1.2rem;
}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  padding: 3.5rem 1.5rem 2.5rem; text-align: center;
  position: relative; max-width: 1320px; margin: 0 auto;
}
.page-hero::after {
  content: ''; position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse,rgba(0,255,136,.06) 0%,transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--fh); font-size: clamp(1.6rem,4vw,2.6rem);
  font-weight: 900; text-shadow: 0 0 22px rgba(0,255,136,.3);
  margin-bottom: .75rem; position: relative; z-index: 1;
}
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero p {
  font-size: .97rem; color: var(--text-muted); max-width: 600px;
  margin: 0 auto; line-height: 1.75; position: relative; z-index: 1;
}

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
  padding: 1.2rem 1.5rem 0; max-width: 1200px; margin: 0 auto;
  display: flex; gap: .45rem; font-size: .8rem; color: var(--text-muted); flex-wrap: wrap;
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,.25); }

/* ===================== TEXT CONTENT ===================== */
.text-content { max-width: 860px; margin: 0 auto; }
.text-content h2 {
  font-family: var(--fh); font-size: 1.15rem; font-weight: 700;
  color: var(--accent); margin: 2.2rem 0 .7rem;
}
.text-content h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin: 1.5rem 0 .5rem; }
.text-content p { font-size: .91rem; color: var(--text-muted); line-height: 1.8; margin-bottom: .75rem; }
.text-content ul, .text-content ol { padding-left: 1.5rem; margin-bottom: .75rem; }
.text-content li { font-size: .91rem; color: var(--text-muted); line-height: 1.75; margin-bottom: .35rem; }
.text-content strong { color: var(--text); font-weight: 600; }

/* ===================== ACCENT LIST ===================== */
.accent-list { list-style: none; padding: 0; max-width: 720px; margin: 0 auto; }
.accent-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .9rem; color: var(--text-muted); line-height: 1.65;
}
.accent-list li:last-child { border-bottom: none; }
.accent-list li::before { content:'◆'; color: var(--accent); flex-shrink: 0; font-size: .6rem; margin-top: .28rem; }

/* ===================== VIP TIER TABLE ===================== */
.vip-table { max-width: 820px; margin: 0 auto 2rem; }

/* ===================== TOOLS GRID ===================== */
.tools-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr));
  gap: 1.2rem; max-width: 900px; margin: 2rem auto;
}
.tool-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  backdrop-filter: blur(10px); border-radius: 14px; padding: 1.4rem; text-align: center;
}
.tool-card .card-icon { font-size: 2rem; margin-bottom: .65rem; }
.tool-card h3 { font-family: var(--fh); font-size: .82rem; font-weight: 700; color: var(--accent); margin-bottom: .4rem; }
.tool-card p { font-size: .84rem; color: var(--text-muted); line-height: 1.6; }

/* ===================== PROMO CLUSTER CARDS ===================== */
.promo-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr));
  gap: 1.4rem; max-width: 1200px; margin: 0 auto;
}
.promo-card {
  background: var(--card-bg); backdrop-filter: blur(12px);
  border: 1px solid var(--card-border); border-radius: 16px;
  overflow: hidden; transition: transform .25s,box-shadow .25s,border-color .25s;
  text-decoration: none; display: flex; flex-direction: column;
}
.promo-card:hover {
  transform: translateY(-4px); border-color: rgba(0,255,136,.45);
  box-shadow: 0 0 30px rgba(0,255,136,.13);
}
.promo-card-img { width: 100%; aspect-ratio: 16/7; object-fit: cover; display: block; }
.promo-card-body { padding: 1.2rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.promo-card-body h3 {
  font-family: var(--fh); font-size: .9rem; font-weight: 700;
  color: var(--accent); margin-bottom: .5rem;
}
.promo-card-body p { font-size: .86rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.promo-card-link {
  display: inline-flex; align-items: center; gap: .3rem;
  color: var(--accent); font-size: .84rem; font-weight: 600; text-decoration: none;
}
.promo-card-link:hover { text-decoration: underline; }

/* ===================== SPIN VISUAL ===================== */
.spin-visual-wrap { text-align: center; margin: 2rem 0; }
.spin-visual {
  display: inline-block; width: 180px; height: 180px; border-radius: 50%;
  background: conic-gradient(
    #002200 0deg,  #00ff88 60deg,
    #001200 60deg, #00cc66 120deg,
    #002200 120deg,#00e5cc 180deg,
    #001200 180deg,#00ff88 240deg,
    #002200 240deg,#00cc66 300deg,
    #001200 300deg,#00e5cc 360deg
  );
  border: 3px solid var(--accent);
  box-shadow: 0 0 40px rgba(0,255,136,.42);
  position: relative;
}
.spin-visual::after {
  content:'🐉'; position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%); font-size: 2.4rem;
  filter: drop-shadow(0 0 8px rgba(0,255,136,.8));
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: rgba(0,0,0,.92);
  border-top: 1px solid rgba(0,255,136,.12);
  padding: 3rem 1.5rem 1.5rem;
  position: relative; z-index: 1;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: flex; justify-content: space-between; gap: 2.5rem;
  flex-wrap: wrap; margin-bottom: 2.5rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand p {
  font-size: .8rem; color: var(--text-muted);
  margin-top: .65rem; max-width: 250px; line-height: 1.7;
}
.footer-col h4 {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent); margin-bottom: .8rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-col a { font-size: .83rem; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap; padding-top: 1rem;
}
.footer-legal { font-size: .76rem; color: rgba(255,255,255,.28); line-height: 1.7; max-width: 720px; }
.footer-18 {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.35);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(0,0,0,.97);
    border-bottom: 1px solid rgba(0,255,136,.18);
    padding: .75rem 1rem; gap: .12rem; z-index: 999;
  }
  .main-nav.open .nav-item .nav-dropdown {
    position: static; opacity: 1; visibility: visible; pointer-events: all;
    transform: none; background: rgba(0,12,5,.5);
    margin: .2rem 0 .2rem .7rem; display: none;
    box-shadow: none; border-color: rgba(0,255,136,.15);
  }
  .main-nav.open .nav-item.dd-open .nav-dropdown { display: block; }
  .nav-toggle { display: flex; }
  .site-header { position: relative; }
  .header-cta .btn-cta-outline { display: none; }
}
@media (max-width: 640px) {
  .hero { padding: 2.5rem 1rem 2rem; }
  .section { padding: 2.5rem 1rem; }
  .stats-bar { gap: 1.2rem; padding: 1.5rem 1rem; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .promo-badge { padding: 1.75rem 1.2rem; }
  .header-cta { display: none; }
  .promo-code-display { font-size: 2.5rem; }
  .hero-btns { flex-direction: column; align-items: center; }
}
