/* ============================================
   colomboscalecasinia.pro — Emerald Colombian Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* === Variables === */
:root {
  --bg-primary: #0D1117;
  --bg-secondary: #161B22;
  --bg-card: #1C2333;
  --bg-card-hover: #242D3D;
  --accent-emerald: #00C853;
  --accent-emerald-light: #69F0AE;
  --accent-warm: #FF6D00;
  --accent-warm-light: #FF9100;
  --accent-sky: #29B6F6;
  --accent-red: #FF5252;
  --text-primary: #F0F6FC;
  --text-secondary: #8B949E;
  --text-muted: #484F58;
  --border: #30363D;
  --border-hover: #00C853;
  --gradient-emerald: linear-gradient(135deg, #00C853, #00E676);
  --gradient-warm: linear-gradient(135deg, #FF6D00, #FF9100);
  --gradient-sky: linear-gradient(135deg, #29B6F6, #4FC3F7);
  --gradient-dark: linear-gradient(180deg, #0D1117 0%, #161B22 100%);
  --shadow-emerald: 0 0 24px rgba(0, 200, 83, 0.15);
  --shadow-warm: 0 0 24px rgba(255, 109, 0, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.25);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50px;
  --max-width: 1180px;
  --header-h: 68px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset === */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: var(--accent-emerald); text-decoration:none; transition: color var(--transition); }
a:hover { color: var(--accent-emerald-light); }
img { max-width:100%; height:auto; display:block; }
ul, ol { list-style:none; }

/* === Utility === */
.container { max-width: var(--max-width); margin:0 auto; padding:0 20px; }
.section { padding: 72px 0; }
.text-center { text-align:center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0, 200, 83, 0.08);
  border: 1px solid rgba(0, 200, 83, 0.2);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-emerald);
  margin-bottom: 16px;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-title .highlight {
  background: var(--gradient-emerald);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 620px;
}

.text-center .section-desc { margin-left:auto; margin-right:auto; }

/* === Badges === */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.pill-emerald { background: rgba(0,200,83,0.12); color: var(--accent-emerald); border:1px solid rgba(0,200,83,0.25); }
.pill-warm { background: rgba(255,109,0,0.12); color: var(--accent-warm); border:1px solid rgba(255,109,0,0.25); }
.pill-sky { background: rgba(41,182,246,0.12); color: var(--accent-sky); border:1px solid rgba(41,182,246,0.25); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}
.btn-emerald {
  background: var(--gradient-emerald);
  color: #0D1117;
}
.btn-emerald:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: var(--shadow-emerald);
  color: #0D1117;
}
.btn-warm {
  background: var(--gradient-warm);
  color: #0D1117;
}
.btn-warm:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
  color: #0D1117;
}
.btn-ghost {
  background: transparent;
  color: var(--accent-emerald);
  border: 1.5px solid var(--accent-emerald);
}
.btn-ghost:hover {
  background: rgba(0,200,83,0.08);
  color: var(--accent-emerald);
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* === Header === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(13, 17, 23, 0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.logo:hover { color: var(--text-primary); }
.logo .brand {
  background: var(--gradient-emerald);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav { display:flex; align-items:center; gap:28px; }
.nav a {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  transition: color var(--transition);
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--text-primary); }
.nav a::after {
  content:'';
  position:absolute;
  bottom:-4px; left:0;
  width:0; height:2px;
  background: var(--gradient-emerald);
  transition: width var(--transition);
  border-radius:2px;
}
.nav a:hover::after, .nav a.active::after { width:100%; }

.hamburger {
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding:8px;
  background:none;
  border:none;
}
.hamburger span {
  display:block; width:22px; height:2px;
  background: var(--text-primary);
  border-radius:2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
}
.hero-bg img {
  width:100%; height:100%; object-fit:cover; opacity:0.25;
}
.hero-bg::after {
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(13,17,23,0.3) 0%, rgba(13,17,23,0.85) 60%, var(--bg-primary) 100%);
}
.hero-content {
  position:relative; z-index:1;
  max-width:660px;
  padding: 56px 0;
}
.hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 .highlight {
  background: var(--gradient-emerald);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.hero-counters {
  display: flex;
  gap: 40px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.counter-item { text-align:center; }
.counter-num {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-emerald);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.counter-label { font-size:12px; color: var(--text-secondary); margin-top:2px; }

/* === Casino Showcase (Horizontal Cards) === */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.showcase-card::after {
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height:3px;
  background: var(--gradient-emerald);
  opacity:0;
  transition: opacity var(--transition);
}
.showcase-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-emerald);
  transform: translateY(-6px);
}
.showcase-card:hover::after { opacity:1; }

.sc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.sc-name { font-size:20px; font-weight:800; }
.sc-rank {
  width:36px; height:36px;
  display:flex; align-items:center; justify-content:center;
  background: var(--gradient-emerald);
  color: #0D1117;
  font-weight:800; font-size:15px;
  border-radius:50%;
}
.sc-rating {
  display:flex; align-items:center; gap:6px;
  margin-bottom:14px;
}
.sc-stars { color: var(--accent-emerald); font-size:15px; }
.sc-score { font-size:13px; font-weight:700; color: var(--accent-emerald); }

.sc-bonus {
  background: rgba(0,200,83,0.06);
  border: 1px solid rgba(0,200,83,0.15);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 16px;
}
.sc-bonus-label {
  font-size:10px; text-transform:uppercase; letter-spacing:1px;
  color: var(--accent-emerald); font-weight:700; margin-bottom:3px;
}
.sc-bonus-value { font-size:18px; font-weight:800; }

.sc-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:18px; }
.sc-tag {
  padding:3px 10px;
  background: var(--bg-secondary);
  border-radius:6px;
  font-size:11px;
  color: var(--text-secondary);
  font-weight:500;
}

.sc-actions { display:flex; gap:10px; }
.sc-actions .btn { flex:1; }

/* === Feature Blocks === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.feature-block:hover {
  border-color: var(--accent-sky);
  box-shadow: 0 0 20px rgba(41,182,246,0.12);
  transform: translateY(-4px);
}
.feature-icon {
  width:56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(41,182,246,0.08);
  border-radius: var(--radius-md);
  font-size:26px;
  margin: 0 auto 16px;
}
.feature-block h3 { font-size:17px; font-weight:700; margin-bottom:10px; }
.feature-block p { font-size:13px; color: var(--text-secondary); line-height:1.6; }

/* === Steps === */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: stepcount;
}
.step-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  counter-increment: stepcount;
  transition: all var(--transition);
}
.step-item:hover { border-color: var(--accent-warm); box-shadow: var(--shadow-warm); }
.step-item::before {
  content: counter(stepcount);
  position:absolute; top:-12px; left:20px;
  width:24px; height:24px;
  display:flex; align-items:center; justify-content:center;
  background: var(--gradient-warm);
  color: #0D1117;
  font-weight:800; font-size:12px;
  border-radius:50%;
}
.step-item h3 { font-size:15px; font-weight:700; margin:6px 0 8px; }
.step-item p { font-size:13px; color: var(--text-secondary); line-height:1.6; }

/* === Payment Strip === */
.payment-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.pay-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  transition: all var(--transition);
}
.pay-card:hover { border-color: var(--accent-emerald); }
.pay-card .pay-icon { font-size:28px; margin-bottom:8px; }
.pay-card h4 { font-size:13px; font-weight:700; margin-bottom:4px; }
.pay-card p { font-size:11px; color: var(--text-secondary); }

/* === News === */
.news-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.news-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.news-item:hover { border-color: var(--accent-emerald); transform: translateY(-4px); }
.news-img { width:100%; height:180px; object-fit:cover; }
.news-body { padding:20px; }
.news-date { font-size:11px; color: var(--text-muted); margin-bottom:6px; font-weight:600; }
.news-body h3 { font-size:16px; font-weight:700; margin-bottom:8px; line-height:1.35; }
.news-body p { font-size:13px; color: var(--text-secondary); line-height:1.6; }

/* === FAQ === */
.faq-list { max-width:760px; margin:0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.active { border-color: var(--accent-emerald); }
.faq-q {
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 22px;
  cursor:pointer;
  font-size:14px; font-weight:700;
  background:none; border:none;
  color: var(--text-primary);
  width:100%; text-align:left;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent-emerald); }
.faq-toggle {
  font-size:18px; color: var(--accent-emerald);
  transition: transform var(--transition);
  flex-shrink:0; margin-left:14px;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height:0; overflow:hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-a-inner {
  padding: 0 22px 18px;
  font-size:13px; color: var(--text-secondary); line-height:1.7;
}
.faq-item.active .faq-a { max-height:350px; }

/* === Comparison Table === */
.table-wrap {
  overflow-x:auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.cmp-table {
  width:100%; border-collapse:collapse; font-size:13px;
}
.cmp-table thead { background: var(--bg-card); }
.cmp-table th {
  padding:14px 18px; text-align:left;
  font-weight:700; color: var(--accent-emerald);
  font-size:12px; text-transform:uppercase; letter-spacing:0.5px;
  border-bottom: 1px solid var(--border);
}
.cmp-table td {
  padding:12px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.cmp-table tbody tr { transition: background var(--transition); }
.cmp-table tbody tr:nth-child(even) { background: var(--bg-secondary); }
.cmp-table tbody tr:hover { background: var(--bg-card-hover); }
.cmp-table tbody tr:last-child td { border-bottom:none; }

/* === Review Page === */
.review-hero {
  padding: calc(var(--header-h) + 36px) 0 36px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.review-head {
  display:flex; align-items:center; gap:20px; flex-wrap:wrap;
}
.review-icon {
  width:72px; height:72px;
  display:flex; align-items:center; justify-content:center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size:32px;
}
.review-info h1 { font-size:34px; font-weight:800; }
.review-pills { display:flex; gap:8px; margin-top:8px; flex-wrap:wrap; }

.review-layout {
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:28px;
  padding: 44px 0;
}
.review-main h2 {
  font-size:22px; font-weight:700;
  margin: 28px 0 14px; color: var(--text-primary);
}
.review-main h2:first-child { margin-top:0; }
.review-main p {
  font-size:14px; color: var(--text-secondary); line-height:1.8; margin-bottom:14px;
}
.review-main ul { margin-bottom:14px; }
.review-main ul li {
  padding:6px 0 6px 22px; position:relative;
  font-size:13px; color: var(--text-secondary);
}
.review-main ul li::before {
  content:'✓'; position:absolute; left:0;
  color: var(--accent-emerald); font-weight:700;
}
.review-main ul.cons li::before { content:'✗'; color: var(--accent-red); }

.sidebar-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 16px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.sidebar-box h3 {
  font-size:15px; font-weight:700; margin-bottom:14px; color: var(--accent-emerald);
}
.sb-row {
  display:flex; justify-content:space-between;
  padding:8px 0; border-bottom:1px solid var(--border);
  font-size:13px;
}
.sb-row:last-child { border-bottom:none; }
.sb-row .lbl { color: var(--text-secondary); }
.sb-row .val { font-weight:700; }

/* === Page Header === */
.page-hero {
  padding: calc(var(--header-h) + 44px) 0 44px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { font-size:36px; font-weight:800; margin-bottom:10px; }
.page-hero p { font-size:15px; color: var(--text-secondary); max-width:580px; margin:0 auto; }

/* === Tabs === */
.tab-bar {
  display:flex; gap:4px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding:4px;
  margin-bottom:28px;
  overflow-x:auto;
  border: 1px solid var(--border);
}
.tab-btn {
  padding:10px 18px; font-size:13px; font-weight:700;
  color: var(--text-secondary);
  background:none; border:none;
  border-radius: var(--radius-sm);
  cursor:pointer; transition: all var(--transition);
  white-space:nowrap;
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { background: var(--gradient-emerald); color: #0D1117; }
.tab-panel { display:none; }
.tab-panel.active { display:block; }

/* === Info Sections === */
.info-block { padding:40px 0; border-bottom:1px solid var(--border); }
.info-block:last-child { border-bottom:none; }
.info-block h2 { font-size:26px; font-weight:700; margin-bottom:20px; }
.info-block h3 { font-size:18px; font-weight:600; margin:20px 0 10px; color: var(--accent-emerald); }
.info-block p { font-size:14px; color: var(--text-secondary); line-height:1.8; margin-bottom:14px; }
.info-block ul { margin-bottom:14px; }
.info-block ul li {
  padding:5px 0 5px 18px; position:relative;
  font-size:13px; color: var(--text-secondary);
}
.info-block ul li::before { content:'•'; position:absolute; left:0; color: var(--accent-emerald); font-weight:700; }

.contact-boxes {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:20px;
}
.contact-box {
  background: var(--bg-card); border:1px solid var(--border);
  border-radius: var(--radius-lg); padding:24px; text-align:center;
  transition: all var(--transition);
}
.contact-box:hover { border-color: var(--accent-emerald); }
.contact-box .ico { font-size:28px; margin-bottom:12px; }
.contact-box h4 { font-size:15px; font-weight:700; margin-bottom:6px; }
.contact-box p { font-size:13px; color: var(--text-secondary); }

/* === Head-to-Head === */
.h2h-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.h2h-card {
  background: var(--bg-card); border:1px solid var(--border);
  border-radius: var(--radius-lg); padding:24px;
  transition: all var(--transition);
}
.h2h-card:hover { border-color: var(--accent-warm); box-shadow: var(--shadow-warm); }
.h2h-card h3 { font-size:16px; font-weight:700; margin-bottom:14px; color: var(--accent-warm); }
.h2h-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:8px 0; border-bottom:1px solid var(--border);
  font-size:12px;
}
.h2h-row:last-child { border-bottom:none; }
.h2h-row .cat { color: var(--text-secondary); font-weight:600; }
.h2h-row .winner { color: var(--accent-emerald); font-weight:700; }

/* === 404 === */
.page-404 {
  min-height:100vh; display:flex; align-items:center; justify-content:center;
  text-align:center; padding: var(--header-h) 20px 0;
}
.page-404 h1 {
  font-size:110px; font-weight:800;
  background: var(--gradient-emerald);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; line-height:1;
}
.page-404 h2 { font-size:26px; margin:14px 0; }
.page-404 p { color: var(--text-secondary); margin-bottom:28px; }

/* === Footer === */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 52px 0 0;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:36px; padding-bottom:36px;
}
.footer-brand p { font-size:13px; color: var(--text-secondary); line-height:1.7; margin-top:14px; }
.footer-col h4 {
  font-size:12px; font-weight:700; text-transform:uppercase;
  letter-spacing:1px; color: var(--accent-emerald); margin-bottom:16px;
}
.footer-col a {
  display:block; color: var(--text-secondary); font-size:13px;
  padding:5px 0; transition: color var(--transition);
}
.footer-col a:hover { color: var(--text-primary); }
.footer-legal {
  max-width:780px; margin:0 auto; padding:20px 0;
  text-align:center; font-size:11px; color: var(--text-muted);
  line-height:1.6; border-top:1px solid var(--border);
}
.footer-bottom {
  border-top:1px solid var(--border);
  padding:16px 0;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px;
}
.footer-bottom p { font-size:11px; color: var(--text-muted); }

/* === Cookie === */
.cookie-bar {
  position:fixed; bottom:0; left:0; right:0;
  background: var(--bg-card);
  border-top:1px solid var(--border);
  padding:18px;
  z-index:9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(16px);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max-width); margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.cookie-inner p { font-size:12px; color: var(--text-secondary); flex:1; }
.cookie-btns { display:flex; gap:10px; flex-shrink:0; }

/* === Animations === */
.reveal {
  opacity:0; transform:translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* === Responsive === */
@media (max-width:1024px) {
  .showcase-grid, .features-grid, .news-row, .h2h-grid, .contact-boxes { grid-template-columns:repeat(2,1fr); }
  .steps-row { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
  .review-layout { grid-template-columns:1fr; }
  .sidebar-box { position:static; }
  .payment-strip { grid-template-columns:repeat(3,1fr); }
  .hero h1 { font-size:34px; }
}

@media (max-width:768px) {
  .nav {
    display:none; position:fixed;
    top: var(--header-h); left:0; right:0; bottom:0;
    background: var(--bg-primary);
    flex-direction:column; align-items:center; justify-content:center;
    gap:20px; z-index:999;
  }
  .nav.open { display:flex; }
  .nav a { font-size:16px; }
  .hamburger { display:flex; }
  .hero h1 { font-size:26px; }
  .hero p { font-size:15px; }
  .section { padding:44px 0; }
  .section-title { font-size:22px; }
  .showcase-grid, .features-grid, .news-row, .steps-row,
  .h2h-grid, .contact-boxes { grid-template-columns:1fr; }
  .payment-strip { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .cookie-inner { flex-direction:column; text-align:center; }
  .hero-actions { flex-direction:column; }
  .hero-actions .btn { width:100%; }
  .hero-counters { gap:20px; flex-wrap:wrap; }
  .page-hero h1 { font-size:26px; }
  .tab-bar { flex-wrap:nowrap; }
}

/* === Scrollbar === */
::-webkit-scrollbar { width:7px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius:4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-emerald); }