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

:root {
  --navy: #0F1B2D;
  --navy-mid: #1A2D44;
  --navy-light: #253D59;
  --amber: #E8A020;
  --amber-light: #F5C563;
  --slate: #6B7A8D;
  --bg: #F5F7FA;
  --white: #FFFFFF;
  --text: #1A2032;
  --text-soft: #4A5568;
  --border: #DDE3EC;
  --green: #2D8A60;
  --red-soft: #C53030;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(15, 27, 45, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.logo span {
  color: var(--amber);
}

.header-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.disclaimer-banner {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--navy-light);
  text-align: center;
  padding: 8px 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.disclaimer-banner strong {
  color: var(--amber-light);
  font-weight: 600;
}

.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  font-size: 13px;
  color: var(--slate);
}

.breadcrumb-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.breadcrumb a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--amber);
}

.breadcrumb-sep {
  color: var(--border);
}

.review-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1E3A5A 100%);
  padding: 48px 24px 56px;
}

.review-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.review-hero-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--amber-light);
}

.review-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  line-height: 1.15;
}

.review-hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 28px;
  box-shadow: var(--shadow);
}

.review-hero-logo img {
  display: block;
  max-width: 220px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.review-updated {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.review-hero-aside {
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px 36px;
}

.review-score-big {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.review-score-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.review-verdict {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin: 12px 0 20px;
}

.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: scale(1.02);
}

.review-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 48px 24px 64px;
  align-items: start;
}

.review-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.sidebar-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate);
  margin-bottom: 14px;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc-list a {
  display: block;
  font-size: 13px;
  color: var(--text-soft);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 6px;
  transition: all 0.15s;
}

.toc-list a:hover {
  background: var(--bg);
  color: var(--navy);
}

.sidebar-score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.sidebar-score-row:last-child {
  border-bottom: none;
}

.sidebar-score-row span:last-child {
  font-weight: 700;
  color: var(--navy);
}

.review-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.review-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow);
}

.review-block h2 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

.review-block h3 {
  font-size: 17px;
  color: var(--navy);
  margin: 24px 0 10px;
}

.review-block p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 14px;
}

.review-block p:last-child {
  margin-bottom: 0;
}

.review-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0;
}

.review-list li {
  font-size: 14px;
  color: var(--text-soft);
  padding-left: 20px;
  position: relative;
  line-height: 1.65;
}

.review-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 13px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.info-table th {
  background: var(--bg);
  font-weight: 600;
  color: var(--navy);
  width: 38%;
}

.info-table td {
  color: var(--text-soft);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

.pros-box,
.cons-box {
  padding: 20px 24px;
  border-radius: var(--radius);
}

.pros-box {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}

.cons-box {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

.pros-box h3,
.cons-box h3 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 12px;
}

.pros-box h3 {
  color: var(--green);
}

.cons-box h3 {
  color: var(--red-soft);
}

.pros-box ul,
.cons-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pros-box li,
.cons-box li {
  font-size: 13.5px;
  color: var(--text-soft);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}

.pros-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.cons-box li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--red-soft);
  font-weight: 700;
}

.highlight-box {
  background: rgba(232, 160, 32, 0.08);
  border: 1px solid rgba(232, 160, 32, 0.25);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

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

.verdict-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: none;
  color: var(--white);
}

.verdict-block h2 {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.verdict-block p {
  color: rgba(255, 255, 255, 0.75);
}

.regulators {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-light);
  padding: 40px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
}

.regulators a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.regulators a:hover {
  opacity: 1;
}

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

.regulators-text {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
  line-height: 1.6;
}

.regulators-text a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 12.5px;
  line-height: 1.7;
}

.footer-brand .entity {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-disclaimer {
  background: rgba(232, 160, 32, 0.08);
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.footer-disclaimer strong {
  color: var(--amber-light);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.legal-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px 36px;
}

.legal-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.legal-hero h1 {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--navy);
  margin-bottom: 10px;
}

.legal-hero p {
  font-size: 14px;
  color: var(--slate);
}

.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.legal-section h3 {
  font-size: 16px;
  color: var(--navy);
  margin: 20px 0 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.legal-section p,
.legal-section li {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.75;
}

.legal-section p {
  margin-bottom: 12px;
}

.legal-section ul,
.legal-section ol {
  margin: 12px 0 12px 20px;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-section a {
  color: var(--navy);
  font-weight: 500;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.contact-card p {
  margin-bottom: 8px;
}

.contact-card strong {
  color: var(--navy);
}

@media (max-width: 900px) {
  .review-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .review-hero-logo {
    margin: 0 auto;
  }

  .review-meta {
    justify-content: center;
  }

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

  .review-sidebar {
    position: static;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .review-block {
    padding: 24px 20px;
  }

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

  .regulators {
    gap: 24px 32px;
    padding: 32px 20px;
  }
}
