/* ============================================================
   SLOTORADO CASINO CANADA — Main Stylesheet
   Domain: slotoradocasinoholland.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@400;600&display=swap');

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:       #0d1117;
  --bg-card:       #161c27;
  --bg-section:    #111722;
  --gold:          #f5a623;
  --gold-light:    #ffd166;
  --gold-dark:     #c47d0e;
  --green-cta:     #1db954;
  --green-hover:   #17a348;
  --text-primary:  #e8eaf0;
  --text-muted:    #8b95a8;
  --border:        #222d3d;
  --accent-teal:   #00c2cb;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --font-display:  'Montserrat', sans-serif;
  --font-body:     'Open Sans', sans-serif;
  --shadow-gold:   0 0 24px rgba(245,166,35,0.25);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.45);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); text-decoration: underline; }

img { display: none; } /* No images per requirements */

/* ── TYPOGRAPHY SCALE ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section--dark { background: var(--bg-section); }
.section--card { background: var(--bg-card); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a0f00;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 0 36px rgba(245,166,35,0.45);
  color: #1a0f00;
}

.btn--green {
  background: linear-gradient(135deg, var(--green-cta) 0%, #158a3e 100%);
  color: #fff;
  box-shadow: 0 0 20px rgba(29,185,84,0.3);
}
.btn--green:hover {
  background: linear-gradient(135deg, #25d46a 0%, var(--green-cta) 100%);
  box-shadow: 0 0 32px rgba(29,185,84,0.5);
  color: #fff;
}

.btn--lg { padding: 18px 44px; font-size: 1.15rem; }
.btn--sm { padding: 10px 22px; font-size: 0.9rem; }
.btn--full { width: 100%; }

/* ── TOP BONUS STRIP (above header) ──────────────────────── */
.bonus-strip {
  background: linear-gradient(90deg, #7b2ff7 0%, #c7183a 50%, #f5a623 100%);
  padding: 10px 20px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bonus-strip span { color: #fff; }
.bonus-strip strong { color: var(--gold-light); }

/* ── HEADER / NAV ─────────────────────────────────────────── */
header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* ── LOGO SVG AREA ────────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo__text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.logo__text span.slot { color: var(--gold); }
.logo__text span.orado { color: #fff; }
.logo__sub {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}

nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}

nav a:hover { color: var(--gold); background: rgba(245,166,35,0.08); }

.header-cta { flex-shrink: 0; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse at 70% 0%, rgba(245,166,35,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(0,194,203,0.08) 0%, transparent 55%),
    var(--bg-deep);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 40px;
  padding: 5px 14px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__title { color: #fff; margin-bottom: 16px; }
.hero__title .highlight { color: var(--gold); }

.hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.trust-item .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-cta);
  flex-shrink: 0;
}

/* ── HERO BONUS CARD ──────────────────────────────────────── */
.hero-card {
  background: linear-gradient(145deg, var(--bg-card) 0%, #1c2535 100%);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-gold), var(--shadow-card);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.hero-card__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a0f00;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-card__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-card__sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hero-card__spins {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-teal);
  margin-bottom: 20px;
}

.hero-card__terms {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.4;
}

/* ── RATING STARS ─────────────────────────────────────────── */
.stars {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}

.star {
  width: 18px; height: 18px;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.rating-score {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  margin-left: 6px;
}

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-head {
  margin-bottom: 40px;
}

.section-head--center { text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2 { color: #fff; margin-bottom: 12px; }
.section-head p { color: var(--text-muted); max-width: 600px; }
.section-head--center p { margin: 0 auto; }

/* ── BONUS CARDS GRID ─────────────────────────────────────── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
  overflow: hidden;
}

.bonus-card:hover {
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-4px);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.bonus-card:hover::before { opacity: 1; }

.bonus-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  background: rgba(245,166,35,0.1);
}

.bonus-card__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 4px;
  line-height: 1.1;
}

.bonus-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.bonus-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.bonus-card .tag-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  list-style: none;
  padding: 0;
}

.tag {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.tag--teal {
  background: rgba(0,194,203,0.1);
  border-color: rgba(0,194,203,0.25);
  color: var(--accent-teal);
}

/* ── MID BANNER ───────────────────────────────────────────── */
.mid-banner {
  background: linear-gradient(135deg, #1a1040 0%, #2d1060 40%, #1c0a30 100%);
  border-top: 1px solid rgba(245,166,35,0.2);
  border-bottom: 1px solid rgba(245,166,35,0.2);
  padding: 36px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mid-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.mid-banner__inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mid-banner__text h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 4px;
}

.mid-banner__text p {
  color: var(--gold-light);
  font-size: 0.95rem;
  margin: 0;
}

/* ── GAME CATEGORIES ──────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.category-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.category-tile:hover {
  border-color: var(--gold);
  background: rgba(245,166,35,0.06);
  transform: translateY(-3px);
}

.category-tile__emoji {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.category-tile__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.category-tile__count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── PAYMENT METHODS ──────────────────────────────────────── */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
}

.payment-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 12px;
  text-align: center;
  transition: border-color 0.2s;
}

.payment-tile:hover { border-color: rgba(245,166,35,0.35); }

.payment-tile__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
}

.payment-tile__detail {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── INFO GRID (2-col text blocks) ───────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-block h3 {
  color: var(--gold);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.info-block p, .info-block li {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ── PROS & CONS ──────────────────────────────────────────── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pros-box, .cons-box {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.pros-box { border: 1px solid rgba(29,185,84,0.3); }
.cons-box { border: 1px solid rgba(239,83,80,0.3); }

.pros-box h3 { color: var(--green-cta); margin-bottom: 16px; }
.cons-box h3 { color: #ef5350; margin-bottom: 16px; }

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: '✓';
  color: var(--green-cta);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.cross-list li::before {
  content: '✗';
  color: #ef5350;
}

/* ── TABLE WRAPPER ────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  background: var(--bg-card);
}

thead tr {
  background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(245,166,35,0.05));
}

th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold);
  padding: 14px 16px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

td {
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(34,45,61,0.6);
  vertical-align: top;
}

tbody tr:hover { background: rgba(245,166,35,0.03); }
tbody tr:last-child td { border-bottom: none; }

td .ok { color: var(--green-cta); font-weight: 700; }
td .no { color: #ef5350; font-weight: 700; }

/* ── REVIEW TEXT SECTION ──────────────────────────────────── */
.review-body {
  max-width: 820px;
  margin: 0 auto;
}

.review-body h2 { color: #fff; margin: 48px 0 16px; padding-top: 8px; }
.review-body h3 { color: var(--gold); margin: 32px 0 12px; }
.review-body p { color: var(--text-muted); }
.review-body ul { color: var(--text-muted); margin-bottom: 1rem; }

.review-body h2:first-child { margin-top: 0; }

/* ── SCORE WIDGET ─────────────────────────────────────────── */
.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.score-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}

.score-item__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 8px;
}

.score-item__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { list-style: none; padding: 0; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  gap: 16px;
  transition: background 0.15s;
}

.faq-question:hover { background: rgba(245,166,35,0.05); }

.faq-arrow {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--gold);
  transition: transform 0.25s;
  font-style: normal;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 22px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 22px 20px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li { margin-bottom: 8px; }

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.15s;
  text-decoration: none;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 700px;
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.age-badge {
  background: #ef5350;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── HIGHLIGHT BOX ────────────────────────────────────────── */
.highlight-box {
  background: rgba(245,166,35,0.07);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.highlight-box strong { color: var(--gold); }

/* ── DIVIDER ──────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb span { margin: 0 6px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero-card { max-width: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .section { padding: 40px 0; }
  .header-inner { padding: 12px 16px; }
  nav { display: none; }
  .hero { padding: 44px 0 36px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
  .bonus-strip { font-size: 0.8rem; gap: 10px; }
  .mid-banner__inner { flex-direction: column; text-align: center; }
  .pros-cons { grid-template-columns: 1fr; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
}

@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .hero-card { padding: 22px 16px; }
  .hero-card__amount { font-size: 2.2rem; }
}
