/* ==========================================================
   SlotsGallery.au — Main Stylesheet
   Brand Colors (exact from slotsgallery.com):
   --main-color: #b42ccb (purple-pink)
   --second-color: #7b28a4 (dark purple)
   --header-bg-color: #000917 (near black)
   --footer-bg-color: #12172a
   ========================================================== */

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

:root {
  --main:      #b42ccb;
  --main-2:    #7b28a4;
  --main-light:#f259ff;
  --bg:        #000917;
  --surface:   #0d1420;
  --surface-2: #12172a;
  --border:    rgba(180,44,203,0.15);
  --border-2:  rgba(255,255,255,0.07);
  --teal:      #22d3a7;
  --gold:      #f5c518;
  --red:       #f63d3d;
  --text:      #e5e7eb;
  --text-muted:#9ca3af;
  --text-dim:  #6b7280;
  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 4px 32px rgba(180,44,203,0.2);
  --tr:        0.2s ease;
  --container: 1200px;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-h:    'Exo 2', 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.7; font-size: 16px; min-height: 100vh; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--main-light); text-decoration: none; transition: color var(--tr); }
a:hover { color: #fff; }
ul, ol { list-style: none; }

/* Skip link */
.skip-link { position: absolute; top: -999px; left: 0; background: var(--main); color: #fff; padding: 0.5rem 1rem; z-index: 99999; border-radius: 0 0 var(--radius-sm) 0; font-weight: 700; }
.skip-link:focus { top: 0; }

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

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(0,9,23,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(180,44,203,0.2);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 1rem; }

/* Logo uses real brand image */
.logo { display: flex; align-items: center; gap: 0; text-decoration: none; flex-shrink: 0; }
.logo img { height: 36px; width: auto; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0.125rem; }
.nav-link { display: inline-flex; align-items: center; padding: 0.45rem 0.8rem; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 500; color: #d1d5db; transition: all var(--tr); white-space: nowrap; }
.nav-link:hover { background: rgba(180,44,203,0.12); color: var(--main-light); }
.nav-link.active { background: rgba(180,44,203,0.15); color: var(--main-light); }

/* Header CTA */
.btn-header { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--main); color: #fff; font-weight: 700; font-size: 0.875rem; padding: 0.55rem 1.25rem; border-radius: 50px; border: none; cursor: pointer; transition: all var(--tr); white-space: nowrap; text-decoration: none; flex-shrink: 0; box-shadow: 0 0 20px rgba(180,44,203,0.4); }
.btn-header:hover { background: var(--main-light); color: #fff; box-shadow: 0 0 30px rgba(242,89,255,0.55); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--tr); }

/* Mobile nav */
.mobile-nav { display: none; position: absolute; top: 66px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid rgba(180,44,203,0.25); padding: 1rem 1.25rem; flex-direction: column; gap: 0.25rem; z-index: 999; }
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 1rem; padding: 0.75rem 1rem; }
.mobile-cta { margin-top: 0.75rem; }
.mobile-cta .btn-header { width: 100%; justify-content: center; padding: 0.9rem 1.5rem; font-size: 1rem; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.8rem 1.75rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none; transition: all var(--tr); text-decoration: none; }
.btn-primary { background: var(--main); color: #fff; box-shadow: 0 0 24px rgba(180,44,203,0.45); }
.btn-primary:hover { background: var(--main-light); color: #fff; box-shadow: 0 0 36px rgba(242,89,255,0.6); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-outline { background: transparent; border: 2px solid rgba(180,44,203,0.5); color: var(--main-light); }
.btn-outline:hover { background: rgba(180,44,203,0.1); border-color: var(--main-light); color: #fff; }
.btn-teal { background: var(--teal); color: #0a0e1a; box-shadow: 0 0 20px rgba(34,211,167,0.35); }
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(34,211,167,0.5); color: #0a0e1a; }

/* =========================================================
   HERO — Homepage
   ========================================================= */
.hero { position: relative; overflow: hidden; min-height: 580px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,9,23,0.9) 0%, rgba(0,9,23,0.7) 50%, rgba(0,9,23,0.4) 100%); z-index: 1; }
.hero-overlay::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(0deg, var(--bg) 0%, transparent 100%); }
.hero-content { position: relative; z-index: 2; padding: 5rem 0; max-width: 600px; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(180,44,203,0.2); border: 1px solid rgba(180,44,203,0.4); color: var(--main-light); font-size: 0.78rem; font-weight: 700; padding: 0.3rem 0.875rem; border-radius: 50px; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.06em; }
.hero h1 { font-family: var(--font-h); font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 1.25rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero h1 em { font-style: normal; color: var(--main-light); }
.hero-lead { font-size: 1.05rem; color: #c4c4d4; margin-bottom: 2rem; max-width: 480px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.stat-num { font-family: var(--font-h); font-size: 2rem; font-weight: 900; color: var(--main-light); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-dim); margin-top: 0.2rem; }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero { position: relative; overflow: hidden; padding: 3.5rem 0 3rem; background: linear-gradient(135deg, #05080f 0%, #12072a 100%); border-bottom: 1px solid rgba(180,44,203,0.2); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 100% at 90% 50%, rgba(180,44,203,0.15) 0%, transparent 70%); pointer-events: none; }
.hero-img-wrap { position: relative; overflow: hidden; }
.hero-img-wrap img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); }
.page-hero h1 { font-family: var(--font-h); font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 900; color: #fff; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.page-hero h1 em { font-style: normal; color: var(--main-light); }
.page-hero-lead { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--text-dim); padding-bottom: 0.875rem; position: relative; z-index: 1; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--main-light); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--text-muted); }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 4.5rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-dark { background: var(--surface); }
.section-darker { background: var(--surface-2); }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { font-family: var(--font-h); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: #fff; margin-bottom: 0.625rem; }
.eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--main-light); background: rgba(180,44,203,0.12); border: 1px solid rgba(180,44,203,0.3); padding: 0.25rem 0.75rem; border-radius: 50px; margin-bottom: 0.625rem; }
.section-lead { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0.75rem auto 0; line-height: 1.8; text-align: center; }

/* =========================================================
   TABLES
   ========================================================= */
.tbl-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid rgba(180,44,203,0.2); }
.sg-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.sg-table th { background: rgba(123,40,164,0.3); color: var(--main-light); font-weight: 700; text-align: left; padding: 0.9rem 1.1rem; border-bottom: 1px solid rgba(180,44,203,0.2); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
.sg-table td { padding: 0.85rem 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--text); vertical-align: middle; }
.sg-table tbody tr:last-child td { border-bottom: none; }
.sg-table tbody tr:hover td { background: rgba(180,44,203,0.05); }
.sg-table td:first-child { font-weight: 600; }

/* Badges */
.badge { display: inline-flex; align-items: center; padding: 0.2rem 0.65rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.badge-green { background: rgba(34,211,167,0.12); color: var(--teal); }
.badge-purple { background: rgba(180,44,203,0.15); color: var(--main-light); }
.badge-gold { background: rgba(245,197,24,0.12); color: var(--gold); }
.badge-red { background: rgba(246,61,61,0.12); color: var(--red); }
.badge-gray { background: rgba(255,255,255,0.07); color: var(--text-muted); }

/* =========================================================
   CARDS
   ========================================================= */
.card-grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--surface); border: 1px solid rgba(180,44,203,0.12); border-radius: var(--radius); padding: 1.5rem; transition: all var(--tr); }
.card:hover { border-color: rgba(180,44,203,0.35); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(180,44,203,0.2); }
.card-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; background: rgba(180,44,203,0.12); }
.card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.card-value { font-family: var(--font-h); font-size: 1.75rem; font-weight: 900; color: var(--main-light); }

/* =========================================================
   BONUS CARD
   ========================================================= */
.bonus-band { background: linear-gradient(135deg, #1a0533 0%, #2a0844 100%); border: 1px solid rgba(180,44,203,0.35); border-radius: var(--radius); padding: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; box-shadow: 0 0 40px rgba(180,44,203,0.15); }
.bonus-pill { display: inline-flex; background: rgba(180,44,203,0.2); border: 1px solid rgba(180,44,203,0.4); color: var(--main-light); font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.bonus-amount { font-family: var(--font-h); font-size: 2.75rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 0.3rem; }
.bonus-amount span { color: var(--main-light); }
.bonus-sub { font-size: 0.875rem; color: #c4b4d4; }

/* =========================================================
   BAR CHART (CSS)
   ========================================================= */
.chart-box { background: var(--surface); border: 1px solid rgba(180,44,203,0.12); border-radius: var(--radius); padding: 1.75rem; }
.chart-title { font-weight: 700; font-size: 0.95rem; color: #fff; margin-bottom: 1.5rem; }
.bar-chart { display: flex; flex-direction: column; gap: 1rem; }
.bar-row { display: flex; flex-direction: column; gap: 0.35rem; }
.bar-meta { display: flex; justify-content: space-between; font-size: 0.82rem; }
.bar-label { color: var(--text-muted); }
.bar-pct { font-weight: 700; color: var(--main-light); }
.bar-track { height: 10px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 99px; width: 0; transition: width 1s ease; }
.fill-main { background: linear-gradient(90deg, var(--main) 0%, var(--main-light) 100%); }
.fill-teal { background: linear-gradient(90deg, #0ea5e9 0%, var(--teal) 100%); }
.fill-gold { background: linear-gradient(90deg, #d97706 0%, var(--gold) 100%); }
.fill-purple { background: linear-gradient(90deg, var(--main-2) 0%, var(--main) 100%); }

/* =========================================================
   RATING CARD
   ========================================================= */
.rating-card { background: linear-gradient(145deg, var(--surface) 0%, #1a0830 100%); border: 1px solid rgba(180,44,203,0.25); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); }
.rating-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.rating-logo-box { width: 52px; height: 52px; border-radius: 10px; overflow: hidden; background: var(--surface-2); flex-shrink: 0; }
.rating-logo-box img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.rating-name { font-family: var(--font-h); font-weight: 800; font-size: 1.1rem; color: #fff; }
.rating-sub { font-size: 0.78rem; color: var(--text-dim); }
.score-item { margin-bottom: 0.85rem; }
.score-label-row { display: flex; justify-content: space-between; font-size: 0.82rem; margin-bottom: 0.3rem; }
.score-name { color: var(--text-muted); }
.score-val { font-weight: 700; color: var(--teal); }
.score-track { height: 8px; background: rgba(255,255,255,0.05); border-radius: 99px; overflow: hidden; }
.score-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--main) 0%, var(--main-light) 100%); width: 0; transition: width 1s ease; }
.rating-total { text-align: center; padding-top: 1.25rem; border-top: 1px solid rgba(180,44,203,0.15); margin-top: 1.25rem; }
.rating-score-big { font-family: var(--font-h); font-size: 3.5rem; font-weight: 900; color: var(--main-light); line-height: 1; }
.rating-stars { font-size: 1.1rem; color: var(--gold); margin: 0.4rem 0; }
.rating-label { font-size: 0.8rem; color: var(--text-dim); }

/* =========================================================
   SEO ARTICLE CONTENT
   ========================================================= */
.seo-section { padding: 4rem 0; }
.seo-article { max-width: 860px; }
.seo-article h2 { font-family: var(--font-h); font-size: 1.65rem; font-weight: 800; color: #fff; margin: 2.25rem 0 0.875rem; border-left: 3px solid var(--main); padding-left: 1rem; }
.seo-article h2:first-child { margin-top: 0; }
.seo-article h3 { font-size: 1.1rem; font-weight: 700; color: #d1d5db; margin: 1.5rem 0 0.5rem; }
.seo-article p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.85; }
.seo-article strong { color: var(--text); font-weight: 600; }
.seo-article ul { margin: 0.75rem 0 1rem 1rem; list-style: disc; }
.seo-article li { color: var(--text-muted); margin-bottom: 0.35rem; line-height: 1.7; }
.text-link { color: var(--main-light); text-decoration: underline; text-decoration-color: rgba(242,89,255,0.35); transition: all var(--tr); }
.text-link:hover { text-decoration-color: var(--main-light); }

/* =========================================================
   PROS / CONS
   ========================================================= */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.pros-box, .cons-box { border-radius: var(--radius); padding: 1.5rem; }
.pros-box { background: rgba(34,211,167,0.06); border: 1px solid rgba(34,211,167,0.2); }
.cons-box { background: rgba(246,61,61,0.06); border: 1px solid rgba(246,61,61,0.2); }
.box-title { font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 1rem; }
.pros-box .box-title { color: var(--teal); }
.cons-box .box-title { color: var(--red); }
.pc-list { display: flex; flex-direction: column; gap: 0.55rem; }
.pc-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--text-muted); }
.pc-list li span { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; margin-top: 2px; }
.pros-box .pc-list li span { background: rgba(34,211,167,0.15); color: var(--teal); }
.cons-box .pc-list li span { background: rgba(246,61,61,0.12); color: var(--red); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: flex; flex-direction: column; gap: 0.625rem; }
.faq-item { background: var(--surface); border: 1px solid rgba(180,44,203,0.12); border-radius: var(--radius-sm); overflow: hidden; transition: border-color var(--tr); }
.faq-item:has(.faq-q[aria-expanded="true"]) { border-color: rgba(180,44,203,0.35); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; background: none; border: none; color: #fff; font-size: 0.95rem; font-weight: 600; cursor: pointer; text-align: left; }
.faq-q:hover { background: rgba(180,44,203,0.06); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; background: rgba(180,44,203,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--main-light); font-size: 1rem; font-weight: 700; transition: transform var(--tr), background var(--tr); }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: rgba(180,44,203,0.3); }
.faq-answer { display: none; padding: 0 1.25rem 1.1rem; }
.faq-q[aria-expanded="true"] + .faq-answer { display: block; }
.faq-answer p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }

/* =========================================================
   AUTHOR
   ========================================================= */
.author-section { padding: 2.5rem 0; border-top: 1px solid rgba(180,44,203,0.12); background: var(--surface); }
.author-flex { display: flex; align-items: flex-start; gap: 1.5rem; flex-wrap: wrap; }
.author-img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid rgba(180,44,203,0.5); }
.author-name { font-family: var(--font-h); font-weight: 800; font-size: 1.1rem; color: #fff; margin-bottom: 0.2rem; }
.author-role { font-size: 0.82rem; color: var(--main-light); margin-bottom: 0.5rem; }
.author-bio { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; max-width: 560px; }

/* =========================================================
   DISCLAIMER
   ========================================================= */
.disclaimer { background: rgba(180,44,203,0.06); border: 1px solid rgba(180,44,203,0.2); border-radius: var(--radius-sm); padding: 1rem 1.25rem; font-size: 0.78rem; color: var(--text-dim); line-height: 1.7; }
.disclaimer strong { color: var(--main-light); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--surface-2); border-top: 1px solid rgba(180,44,203,0.15); padding: 3.5rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 32px; width: auto; }
.footer-desc { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.875rem; line-height: 1.7; }
.footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--main-light); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.5rem; transition: color var(--tr); }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; }
.footer-legal { font-size: 0.77rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 1rem; }
.footer-badges { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.footer-badge { display: inline-flex; align-items: center; gap: 0.3rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 0.3rem 0.7rem; font-size: 0.73rem; color: var(--text-muted); }
.age-badge { background: rgba(246,61,61,0.1); border-color: rgba(246,61,61,0.3); color: var(--red); font-weight: 700; }

/* =========================================================
   PAYMENT CHIPS
   ========================================================= */
.payments { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.pay-chip { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--surface-2); border: 1px solid rgba(180,44,203,0.12); border-radius: var(--radius-sm); padding: 0.4rem 0.875rem; font-size: 0.82rem; color: var(--text-muted); }
.pay-chip:hover { border-color: rgba(180,44,203,0.35); color: var(--text); }

/* =========================================================
   HIGHLIGHT BOX
   ========================================================= */
.highlight { background: rgba(180,44,203,0.07); border: 1px solid rgba(180,44,203,0.2); border-radius: var(--radius); padding: 1.25rem 1.5rem; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .bonus-band { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
  .hero-content { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}
