/* ===== BBC OCEAN THEME ===== */
:root {
  --bg-deep:    #06101e;
  --bg-mid:     #0b1c30;
  --bg-card:    #0d2240;
  --bg-card2:   #0f2848;
  --border:     rgba(30,120,180,0.18);
  --border-red: rgba(229,5,57,0.25);
  --red:        #e50539;
  --red-hover:  #f9194d;
  --gold:       #e8a020;
  --teal:       #1a8fa0;
  --teal-light: #28c5dd;
  --text:       #f0f8ff;
  --text-muted: #7fafc8;
  --text-dim:   #3a6a8a;
  --white:      #ffffff;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 32px rgba(0,0,0,0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Mulish', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-light); text-decoration: none; }
a:hover { color: var(--red); }
strong, b { color: var(--text); }

h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-bottom: 24px;
  margin-top: 16px;
}
h3 { font-size: clamp(18px, 2.5vw, 24px); margin-bottom: 16px; }

p { color: var(--text-muted); font-size: 17px; line-height: 1.75; margin-bottom: 14px; }
p strong { color: var(--text); }

.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover { background: var(--red-hover); transform: translateY(-1px); }
.btn-white {
  background: #fff;
  color: var(--red);
}
.btn-white:hover { background: #ebebeb; }
.btn-teal {
  background: linear-gradient(135deg, var(--teal), #0d6f80);
  color: #fff;
}
.btn-teal:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--teal-light);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: rgba(26,143,160,0.12); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,16,30,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo img { height: 48px; width: auto; }

nav.desktop ul {
  display: flex;
  list-style: none;
  gap: 2px;
  position: relative;
}
nav.desktop ul li {
  position: relative;
}
nav.desktop ul li a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all 0.2s;
}
nav.desktop ul li a:hover,
nav.desktop ul li a.active { color: var(--text); background: rgba(255,255,255,0.06); }
nav.desktop .has-sub:hover > .sub-menu { display: flex; }
nav.desktop .chevron {
  font-size: 10px;
  transition: transform 0.2s;
  opacity: 0.6;
}
nav.desktop .has-sub:hover .chevron { transform: rotate(180deg); }
nav.desktop .sub-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(11,28,48,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 0 0 12px 12px;
  min-width: 180px;
  padding: 8px 0;
  box-shadow: var(--shadow);
}
nav.desktop .sub-menu li a {
  padding: 10px 20px;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
}
nav.desktop .sub-menu li:last-child a { border-bottom: none; }

.mobile-btn {
  display: none;
  background: var(--red);
  border: none;
  border-radius: 6px;
  width: 36px; height: 36px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
nav.mobile {
  display: none;
  position: absolute;
  top: 68px; left: 0; right: 0;
  background: rgba(6,16,30,0.98);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
}
nav.mobile.open { display: block; }
nav.mobile ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
nav.mobile ul li a {
  display: block;
  padding: 10px 12px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 6px;
}
nav.mobile ul li a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(26,143,160,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(229,5,57,0.07) 0%, transparent 60%),
    linear-gradient(180deg, #06101e 0%, #0b1c30 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a8fa0' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tagline {
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-light);
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--teal-light); }
.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero-desc strong { color: var(--gold); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-awards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.award-badge {
  background: rgba(26,143,160,0.08);
  border: 1px solid rgba(26,143,160,0.2);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.award-badge img { max-height: 44px; object-fit: contain; }
.award-badge span { font-size: 11px; color: var(--text-muted); }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual svg { width: 100%; max-width: 520px; filter: drop-shadow(0 0 50px rgba(26,143,160,0.3)); }
.multiplier-badge {
  position: absolute;
  top: 16px;
  right: 10px;
  background: linear-gradient(135deg, var(--red), #ff4466);
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 12px;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(229,5,57,0.4); }
  50% { box-shadow: 0 0 0 14px rgba(229,5,57,0); }
}
@keyframes fishFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}
.fish-animate { animation: fishFloat 3s ease-in-out infinite; }
@keyframes multPop {
  0%,100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.mult-1 { animation: multPop 2s ease-in-out infinite; }
.mult-2 { animation: multPop 2s ease-in-out infinite 0.7s; }
.mult-3 { animation: multPop 2s ease-in-out infinite 1.4s; }

/* ===== TABLE OF CONTENTS ===== */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 40px 0;
}
.toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}
.toc-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.toc-toggle {
  background: none;
  border: none;
  color: var(--teal-light);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
}
.toc-items { padding-top: 16px; }
.toc-items ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.toc-items ol li a {
  display: flex;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}
.toc-items ol li a:hover { color: var(--teal-light); }
.toc-num { min-width: 20px; font-weight: 700; color: var(--teal); }

/* ===== SPEC TABLE ===== */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.spec-table td:first-child { color: var(--text-muted); width: 42%; font-weight: 500; }
.spec-table td:last-child { color: var(--text); font-weight: 600; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-rtp { color: #3ddc7a; font-family: monospace; font-size: 18px; }
.spec-max { color: var(--gold); font-size: 18px; }

/* ===== CASINO CARDS ===== */
.casino-list { display: flex; flex-direction: column; gap: 14px; }
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.casino-card:hover { border-color: rgba(26,143,160,0.35); transform: translateY(-1px); }
.casino-card.featured { border-color: rgba(26,143,160,0.4); background: linear-gradient(135deg, rgba(26,143,160,0.07), var(--bg-card)); }
.casino-row {
  display: grid;
  grid-template-columns: 140px 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
}
.casino-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.casino-logo img {
  max-height: 42px;
  max-width: 120px;
  object-fit: contain;
}
.casino-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.casino-badge img { width: 12px; height: 12px; }
.casino-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.casino-text { color: var(--text-muted); font-size: 14px; line-height: 1.5; }
.casino-bonus {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(229,5,57,0.1), rgba(229,5,57,0.03));
  border: 1px solid rgba(229,5,57,0.22);
  border-radius: 10px;
  padding: 10px 14px;
  white-space: nowrap;
  min-width: 180px;
}
.casino-bonus img { width: 18px; height: 18px; object-fit: contain; }
.bonus-text { font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.4; }
.bonus-text b { color: var(--red); display: block; }
.casino-btns { display: flex; flex-direction: column; gap: 8px; min-width: 155px; }
.casino-chevron {
  display: flex; align-items: center; justify-content: center;
  padding: 6px; cursor: pointer; transition: transform 0.3s; flex-shrink: 0;
}
.casino-card.open .casino-chevron { transform: rotate(180deg); }
.casino-details {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
}
.casino-card.open .casino-details { display: block; }
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 20px 0;
}
.details-pros h5 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.details-pros ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.details-pros ul li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 14px;
}
.details-pros ul li::before { content: '✓'; position: absolute; left: 0; color: #3ddc7a; font-weight: 700; }
.details-pay h5 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.pay-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-icon {
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px 8px;
  height: 28px;
  display: flex;
  align-items: center;
}
.pay-icon img { height: 18px; width: auto; object-fit: contain; }
.details-btns {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

/* ===== SPLASH IMAGE ===== */
.splash {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(26,143,160,0.3);
  margin: 40px 0;
}
.splash img { width: 100%; max-height: 520px; object-fit: cover; object-position: center top; display: block; }
.splash-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,16,30,0) 40%, rgba(6,16,30,0.85) 100%),
              linear-gradient(0deg, rgba(6,16,30,0.35), rgba(6,16,30,0.35));
}
.splash-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.splash-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.splash-awards { display: flex; gap: 16px; align-items: center; }
.splash-awards img { max-height: 38px; opacity: 0.75; }

/* ===== MEDIA BLOCK ===== */
.media-block {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 24px;
}
.media-block.reverse { grid-template-columns: 1fr 38%; }
.media-block img { border-radius: var(--radius); width: 100%; }
.media-block-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}
.media-block-2col img { border-radius: var(--radius); width: 100%; }

/* ===== TERMS GRID ===== */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.term-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.term-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.term-card-top img { width: 18px; height: 18px; opacity: 0.8; }
.term-name { font-size: 15px; font-weight: 700; color: var(--teal-light); }
.term-desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ===== STEPS ===== */
.steps-list {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: step;
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step::before {
  content: counter(step);
  min-width: 28px;
  height: 28px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.step-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.step-desc { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* ===== INTEGRITY LIST ===== */
.integrity-list {
  list-style: none;
  counter-reset: integ;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.integrity-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: integ;
}
.integrity-item:last-child { border-bottom: none; }
.integrity-item::before {
  content: counter(integ);
  min-width: 28px;
  height: 28px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.integrity-item p { color: var(--text-muted); font-size: 15px; margin: 0; }
.integrity-item p strong { color: var(--text); }

/* ===== BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(26,143,160,0.15) 0%, rgba(6,16,30,0) 100%);
  border: 1px solid rgba(26,143,160,0.25);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 32px 0;
}
.cta-banner-title {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ===== STRATEGIES ===== */
.strat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.strat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.strat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}
.strat-card h3 { margin-bottom: 12px; font-size: 18px; }
.strat-card p { font-size: 14px; margin: 0; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}
.faq-q-text { font-size: 17px; font-weight: 600; color: var(--text); line-height: 1.4; }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-a.open { max-height: 300px; }
.faq-a-inner { padding-bottom: 18px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.review-author { font-size: 17px; font-weight: 700; margin-bottom: 4px; color: var(--teal-light); }
.review-stars { color: var(--gold); font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { color: var(--text-muted); font-size: 14px; line-height: 1.7; font-style: italic; }

/* ===== BULLET LIST ===== */
.bullet-list { list-style: none; padding: 0; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.bullet-list li {
  position: relative;
  padding-left: 26px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: rgba(26,143,160,0.3);
}
.bullet-list li strong { color: var(--text); }

/* ===== DETAILED CASINO TABLE ===== */
.detail-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--bg-card2);
  border-radius: var(--radius);
  overflow: hidden;
}
.detail-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.detail-table td:first-child { color: var(--text-muted); width: 40%; }
.detail-table td:last-child { color: var(--text); font-weight: 500; }
.detail-table tr:last-child td { border-bottom: none; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 80px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo img { height: 46px; width: auto; }
.footer-dl { display: flex; gap: 12px; }
.footer-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-logos img { max-height: 28px; opacity: 0.45; }
.footer-copy {
  color: var(--text-dim);
  font-size: 13px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ===== MOBILE STICKY ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(6,16,30,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  gap: 12px;
  z-index: 999;
  align-items: center;
}
.mobile-bar .btn { flex: 1; justify-content: center; }

/* ===== SCROLL TOP ===== */
#scrollTop {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px; height: 44px;
  background: var(--teal);
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  transition: background 0.2s;
}
#scrollTop:hover { background: var(--teal-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .casino-row { grid-template-columns: 1fr; }
  .casino-bonus { min-width: auto; }
  .casino-btns { flex-direction: row; }
  .details-grid { grid-template-columns: 1fr; }
  .media-block, .media-block.reverse { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  nav.desktop { display: none; }
  .mobile-btn { display: flex; }
  .mobile-bar { display: flex; }
  #scrollTop { bottom: 72px; }
  .strat-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .terms-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .cta-banner { padding: 24px 20px; }
  footer { margin-bottom: 68px; }
  .media-block-2col { grid-template-columns: 1fr; }
}
