/* SlotLogics — Relate "Blueprint on frosted linen" design system */

:root {
  --signal-blue: #145aff;
  --primary-action: #0f1f3d;
  --midnight-ink: #020520;
  --graphite: #14141e;
  --slate: #374151;
  --ash: #696a72;
  --steel: #6b7280;
  --fog: #95959b;
  --sky-wash: #f0f4fe;
  --linen-canvas: #fcfcfc;
  --emerald: #16ca2e;
  --coral: #f26052;
  --hero-blue: #b6cbfd;
  --shadow-card: 0 0 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-elevated: 0 4px 24px -4px rgba(0, 0, 0, 0.08);
  --radius-card: 8px;
  --radius-feature: 40px;
  --radius-btn: 12px;
  --radius-pill: 100px;
  --max-width: 1200px;
  --section-gap: 80px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--linen-canvas);
  color: var(--graphite);
  line-height: 1.63;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--signal-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--primary-action);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.display {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--midnight-ink);
}

.heading-lg {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--midnight-ink);
}

.heading-md {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--midnight-ink);
}

.heading-sm {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--midnight-ink);
}

.text-accent {
  color: var(--signal-blue);
}

.text-muted {
  color: var(--ash);
  font-size: 0.875rem;
}

.text-small {
  font-size: 0.8125rem;
  color: var(--steel);
}

/* Buttons — outlined, never filled signal-blue */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--primary-action);
  background: transparent;
  color: var(--primary-action);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  background: var(--sky-wash);
  color: var(--primary-action);
}

.btn--primary {
  background: var(--primary-action);
  color: var(--linen-canvas);
  border-color: var(--primary-action);
}

.btn--primary:hover {
  background: var(--midnight-ink);
  border-color: var(--midnight-ink);
  color: var(--linen-canvas);
}

.btn--signal {
  border-color: var(--signal-blue);
  color: var(--signal-blue);
}

.btn--signal:hover {
  background: var(--sky-wash);
}

/* Disclosure bar */
.disclosure-bar {
  background: var(--sky-wash);
  border-bottom: 1px solid rgba(20, 90, 255, 0.12);
  padding: 8px 0;
  font-size: 0.75rem;
  color: var(--slate);
  text-align: center;
  line-height: 1.5;
}

.disclosure-bar strong {
  color: var(--graphite);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 252, 252, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo img {
  height: 32px;
  width: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
}

.nav-list a:hover {
  color: var(--signal-blue);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1.5px solid var(--primary-action);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-action);
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--graphite);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--hero-blue) 0%, var(--sky-wash) 45%, var(--linen-canvas) 100%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content .eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--signal-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.0625rem;
  color: var(--ash);
  margin: 20px 0 32px;
  max-width: 480px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-meta span {
  font-size: 0.8125rem;
  color: var(--steel);
}

/* MrGreen Hero Card */
.hero-recommendation {
  background: var(--linen-canvas);
  border-radius: var(--radius-feature);
  box-shadow: var(--shadow-elevated);
  border: 1px solid rgba(20, 90, 255, 0.1);
  padding: 40px;
  position: relative;
}

.hero-recommendation::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--signal-blue), var(--hero-blue));
  border-radius: 2px;
}

.rec-badge {
  display: inline-block;
  padding: 4px 14px;
  border: 1.5px solid var(--signal-blue);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--signal-blue);
  margin-bottom: 20px;
}

.hero-recommendation .rec-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.hero-recommendation .rec-title {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--midnight-ink);
  margin-bottom: 16px;
}

.hero-rec-logo {
  margin-bottom: 20px;
}

.hero-rec-logo img {
  height: 56px;
  width: auto;
  border-radius: var(--radius-card);
}

.rec-score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.rec-score .score {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--midnight-ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.rec-score .out-of {
  font-size: 0.875rem;
  color: var(--fog);
}

.rec-features {
  list-style: none;
  margin: 20px 0 28px;
}

.rec-features li {
  font-size: 0.9375rem;
  color: var(--slate);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.rec-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--signal-blue);
  border-radius: 50%;
}

.rec-cta {
  width: 100%;
  text-align: center;
  padding: 14px 28px;
  font-size: 1rem;
}

.hero-rec-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-rec-actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.rec-terms {
  font-size: 0.6875rem;
  color: var(--fog);
  margin-top: 12px;
  line-height: 1.5;
}

/* Sections */
.section {
  padding: var(--section-gap) 0;
}

.section--wash {
  background: var(--sky-wash);
}

.section-header {
  margin-bottom: 48px;
  max-width: 640px;
}

.section-header p {
  margin-top: 12px;
  color: var(--ash);
  font-size: 1.0625rem;
}

.section-date {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--fog);
  padding: 4px 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-pill);
}

/* Why MrGreen */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.why-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-card {
  background: var(--linen-canvas);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--midnight-ink);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9375rem;
  color: var(--ash);
  line-height: 1.55;
}

/* Comparison Table */
.comparison-table-wrap {
  background: var(--linen-canvas);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
  background: var(--sky-wash);
  font-weight: 600;
  color: var(--midnight-ink);
  font-size: 0.8125rem;
}

.comparison-table td {
  color: var(--slate);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table .highlight-col {
  background: rgba(20, 90, 255, 0.04);
  font-weight: 500;
}

.comparison-table .check {
  color: var(--emerald);
  font-weight: 600;
}

.comparison-table .partial {
  color: var(--steel);
}

.table-caption {
  padding: 12px 16px;
  font-size: 0.6875rem;
  color: var(--fog);
  background: var(--linen-canvas);
}

/* Casino Cards */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.casino-card {
  background: var(--linen-canvas);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.casino-card:hover {
  box-shadow: var(--shadow-elevated);
}

.casino-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 40px;
  border: 1.5px solid rgba(20, 90, 255, 0.2);
  border-radius: var(--radius-feature);
  background: linear-gradient(135deg, var(--linen-canvas) 0%, var(--sky-wash) 100%);
}

.casino-card--featured .card-logo img {
  height: 64px;
}

.casino-card--featured .card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.casino-card--featured .card-score {
  font-size: 2.25rem;
}

.card-rank {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fog);
}

.top-pick-badge {
  display: inline-block;
  padding: 3px 12px;
  border: 1.5px solid var(--signal-blue);
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--signal-blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.card-logo {
  margin-bottom: 16px;
}

.card-logo img {
  height: 40px;
  width: auto;
  border-radius: 4px;
}

.card-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--midnight-ink);
  margin-bottom: 4px;
}

.card-score {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--midnight-ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.card-score span {
  font-size: 0.75rem;
  color: var(--fog);
  font-weight: 400;
}

.card-offer {
  font-size: 0.875rem;
  color: var(--slate);
  margin-bottom: 12px;
  flex-grow: 1;
}

.card-features {
  list-style: none;
  margin-bottom: 16px;
}

.card-features li {
  font-size: 0.8125rem;
  color: var(--ash);
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}

.card-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--signal-blue);
}

.card-cta {
  width: 100%;
  margin-top: auto;
}

.card-terms {
  font-size: 0.625rem;
  color: var(--fog);
  margin-top: 8px;
  line-height: 1.4;
}

/* Featured Offers */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.offer-card {
  background: var(--linen-canvas);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.offer-card--primary {
  border: 1.5px solid rgba(20, 90, 255, 0.2);
  background: linear-gradient(180deg, var(--sky-wash) 0%, var(--linen-canvas) 100%);
  border-radius: var(--radius-feature);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
}

.offer-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--signal-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.offer-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--midnight-ink);
  margin-bottom: 8px;
}

.offer-card p {
  font-size: 0.9375rem;
  color: var(--ash);
  flex-grow: 1;
  margin-bottom: 16px;
}

.offer-card--primary p {
  margin-bottom: 0;
}

.offer-logo img {
  height: 48px;
  border-radius: 4px;
}

/* Game Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  background: var(--linen-canvas);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow 0.2s ease;
}

.category-card:hover {
  box-shadow: var(--shadow-elevated);
}

.category-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border: 1.5px solid var(--signal-blue);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--signal-blue);
  letter-spacing: 0.04em;
}

.category-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--midnight-ink);
  margin-bottom: 6px;
}

.category-card p {
  font-size: 0.8125rem;
  color: var(--ash);
  line-height: 1.45;
}

/* Regulators */
.regulators-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.regulator-item {
  background: var(--linen-canvas);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 16px 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.regulator-item img {
  height: 40px;
  width: auto;
}

.regulators-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.875rem;
  color: var(--ash);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ */
.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  color: var(--midnight-ink);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--signal-blue);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--ash);
  line-height: 1.6;
}

/* Responsible Gambling */
.rg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.rg-block {
  background: var(--linen-canvas);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.rg-block h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--midnight-ink);
  margin-bottom: 12px;
}

.rg-block p,
.rg-block li {
  font-size: 0.9375rem;
  color: var(--ash);
  line-height: 1.6;
}

.rg-block ul {
  list-style: none;
  margin-top: 12px;
}

.rg-block li {
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.rg-block li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--signal-blue);
}

.rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.rg-links a {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: var(--midnight-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 32px;
}

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

.footer-brand img {
  height: 28px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

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

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

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-18 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 32, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.hidden {
  display: none;
}

.modal {
  background: var(--linen-canvas);
  border-radius: var(--radius-feature);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-elevated);
}

.modal h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--midnight-ink);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.modal p {
  font-size: 0.9375rem;
  color: var(--ash);
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.modal-actions .btn {
  min-width: 140px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--linen-canvas);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
  padding: 20px 0;
  z-index: 999;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.875rem;
  color: var(--slate);
  flex: 1;
  min-width: 280px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 56px;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--linen-canvas);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    gap: 0;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .casino-card--featured {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px;
  }

  .casino-card--featured .card-cta-wrap {
    width: 100%;
  }

  .casino-grid {
    grid-template-columns: 1fr;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-card--primary {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rg-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table-wrap {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 560px;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    flex-direction: column;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Sticky RG bar */
body.has-rg-sticky {
  padding-bottom: 44px;
}

.rg-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--midnight-ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rg-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 24px;
  flex-wrap: wrap;
}

.rg-sticky-18 {
  font-weight: 700;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-pill);
  color: #fff;
}

.rg-sticky-msg {
  color: rgba(255, 255, 255, 0.6);
}

.rg-sticky a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.rg-sticky a:hover {
  color: #fff;
}

.rg-sticky-phone {
  color: rgba(255, 255, 255, 0.5);
}

body.has-rg-sticky .cookie-banner:not(.hidden) {
  bottom: 44px;
}

/* Inner pages */
.page-hero {
  padding: 40px 0 32px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--hero-blue) 0%, var(--sky-wash) 45%, var(--linen-canvas) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.breadcrumb {
  font-size: 0.8125rem;
  color: var(--steel);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--signal-blue);
}

.breadcrumb span {
  margin: 0 6px;
  color: var(--fog);
}

.prose-section {
  padding-top: 48px;
  padding-bottom: var(--section-gap);
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--midnight-ink);
  margin: 36px 0 12px;
  letter-spacing: -0.02em;
}

.prose h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--midnight-ink);
  margin: 24px 0 8px;
}

.prose p,
.prose li {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 12px;
}

.prose ul,
.prose ol {
  margin: 12px 0 12px 24px;
}

.prose li {
  margin-bottom: 6px;
}

.info-card,
.licence-box {
  background: var(--sky-wash);
  border: 1px solid rgba(20, 90, 255, 0.12);
  border-radius: var(--radius-card);
  padding: 24px;
  margin: 24px 0;
}

.licence-box h3 {
  margin-top: 0;
}

.author-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.author-box {
  background: var(--linen-canvas);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.author-box h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--midnight-ink);
  margin-bottom: 4px;
}

.author-role {
  font-size: 0.8125rem;
  color: var(--signal-blue);
  margin-bottom: 8px;
}

.card-licence {
  font-size: 0.6875rem;
  color: var(--steel);
  margin-bottom: 12px;
  line-height: 1.4;
}

.card-licence a {
  font-weight: 500;
}

.card-review-link {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 12px;
}

/* Review pages */
.review-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.review-logo {
  height: 56px;
  width: auto;
  margin-bottom: 12px;
}

.review-score {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--midnight-ink);
  letter-spacing: -0.03em;
}

.review-score-max {
  font-size: 1rem;
  color: var(--fog);
}

.review-score-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.review-header-cta {
  text-align: right;
}

.review-prose {
  max-width: 720px;
}

.review-cta-bottom {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.offer-disclaimer {
  font-size: 0.875rem;
  color: var(--ash);
  padding: 16px;
  background: var(--sky-wash);
  border-radius: var(--radius-card);
}

/* Guides */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.guide-card {
  background: var(--linen-canvas);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 28px;
}

.guide-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 8px 0 12px;
}

.guide-card h3 a {
  color: var(--midnight-ink);
}

.guide-card h3 a:hover {
  color: var(--signal-blue);
}

.guide-card p {
  font-size: 0.9375rem;
  color: var(--ash);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .author-grid {
    grid-template-columns: 1fr;
  }

  .review-header {
    grid-template-columns: 1fr;
  }

  .review-header-cta {
    text-align: left;
  }

  .guides-grid {
    grid-template-columns: 1fr;
  }

  .rg-sticky-inner {
    gap: 8px;
    font-size: 0.6875rem;
  }
}
