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

:root {
  --navy: #0F1F3D;
  --navy-mid: #1A3260;
  --gold: #C9A84C;
  --gold-light: #F0DFA0;
  --white: #F7F8FA;
  --off-white: #EDF0F5;
  --divider: #D8DDE8;
  --text-main: #1C2A44;
  --text-sub: #4A5770;
  --text-muted: #7A89A3;
  --green: #2E7D5A;
  --green-bg: #EAF4EE;
  --red: #C0392B;
  --red-bg: #FDF0EE;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}
header {
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #A8B8D4;
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--gold);
}

.header-entity {
  font-size: 0.75rem;
  color: #6A7F9C;
  letter-spacing: 0.03em;
}

.disclaimer-strip {
  background: #1A3260;
  border-bottom: 1px solid #2A4275;
  text-align: center;
  padding: 8px 24px;
  font-size: 0.78rem;
  color: #8FA8C8;
}

.disclaimer-strip strong {
  color: #A8C0DC;
  font-weight: 600;
}

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

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.review-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #1E3A6A 100%);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.review-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.breadcrumb {
  font-size: 0.8rem;
  color: #8FA8C8;
  margin-bottom: 28px;
}

.breadcrumb a {
  color: #A8BFD8;
  text-decoration: none;
}

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

.breadcrumb span {
  color: #6A8098;
  margin: 0 8px;
}

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

.review-logo {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.review-logo img {
  display: block;
  width: 130px;
  height: auto;
}

.review-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.review-hero-text p {
  font-size: 1rem;
  color: #A8BFD8;
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 18px;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #C8D8ED;
}

.review-tag.licensed {
  background: rgba(46, 125, 90, 0.2);
  border-color: rgba(46, 125, 90, 0.4);
  color: #8FD4B0;
}

.review-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 7px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #C8D8ED;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.review-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-meta-item {
  font-size: 0.8rem;
  color: #8FA8C8;
}

.review-meta-item strong {
  display: block;
  color: #C8D8ED;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.review-score-badge {
  color: var(--gold);
  font-weight: 600;
}
.review-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 56px 0 72px;
  align-items: start;
}

.review-sidebar {
  position: sticky;
  top: 88px;
}

.fact-card {
  background: #FFFFFF;
  border: 1px solid var(--divider);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}

.fact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--divider);
}

.fact-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--off-white);
  font-size: 0.84rem;
}

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

.fact-label {
  color: var(--text-muted);
}

.fact-value {
  color: var(--navy);
  font-weight: 600;
  text-align: right;
}

.fact-value.yes {
  color: var(--green);
}

.fact-value.no {
  color: var(--text-muted);
}

.sidebar-cta {
  background: var(--navy);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}

.sidebar-cta p {
  font-size: 0.82rem;
  color: #8FA8C8;
  margin-bottom: 14px;
  line-height: 1.5;
}

.sidebar-cta .btn-primary {
  width: 100%;
  background: var(--gold);
}

.sidebar-disclaimer {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 10px;
}
.review-content section {
  margin-bottom: 48px;
}

.review-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--off-white);
}

.review-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 24px 0 10px;
}

.review-content p {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 14px;
}

.review-content ul,
.review-content ol {
  margin: 0 0 16px 20px;
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.7;
}

.review-content li {
  margin-bottom: 6px;
}

.highlight-box {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 20px 0;
}

.highlight-box p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.feature-box {
  background: #FFFFFF;
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 18px 20px;
}

.feature-box h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.feature-box p {
  font-size: 0.82rem;
  margin-bottom: 0;
  line-height: 1.55;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}

.pros-box,
.cons-box {
  border-radius: 10px;
  padding: 24px;
}

.pros-box {
  background: var(--green-bg);
  border: 1px solid #B8DFC9;
}

.cons-box {
  background: var(--red-bg);
  border: 1px solid #E8C4C0;
}

.pros-box h3,
.cons-box h3 {
  font-size: 1rem;
  margin: 0 0 14px;
}

.pros-box ul,
.cons-box ul {
  list-style: none;
  margin: 0;
}

.pros-box li,
.cons-box li {
  font-size: 0.86rem;
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--text-sub);
}

.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);
  font-weight: 700;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--divider);
  border-radius: 8px;
  overflow: hidden;
  margin: 20px 0;
  font-size: 0.86rem;
}

.data-table th {
  background: var(--navy);
  color: #A8BFD8;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--divider);
  color: var(--text-sub);
  background: #FFFFFF;
}

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

.data-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}
.review-faq {
  background: var(--off-white);
  padding: 56px 0 72px;
}

.faq-list {
  max-width: 100%;
}

.faq-item {
  border: 1px solid var(--divider);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: #FFFFFF;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
}

.faq-q:hover {
  background: var(--off-white);
}

.faq-q .arrow {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

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

.faq-a {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.7;
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 400px;
  padding: 0 22px 18px;
}
.related-section {
  padding: 56px 0 72px;
  background: #FFFFFF;
  border-top: 1px solid var(--divider);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--off-white);
  border: 1px solid var(--divider);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.related-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(15, 31, 61, 0.06);
}

.related-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.related-card span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.regulators-bar {
  background: #0C1828;
  border-top: 1px solid #1A2A44;
  padding: 32px 24px;
}

.regulators-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.regulators {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 32px;
}

.regulators a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 8px 16px;
  background: transparent;
  border: none;
  border-radius: 6px;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}

.regulators a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.regulators img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  flex-shrink: 0;
}

.regulators a.regulator-link-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: #8AAABB;
  letter-spacing: 0.02em;
  min-height: 44px;
  border: 1px solid #2A3A54;
  border-radius: 6px;
}

.regulators a.regulator-link-text:hover {
  color: #C8D8ED;
  border-color: #3A5070;
}

footer {
  background: #080F1E;
  padding: 52px 24px 32px;
  border-top: 1px solid #1A2A44;
}

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

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

.footer-brand .logo {
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.83rem;
  color: #5A7090;
  line-height: 1.65;
}

.footer-brand .entity-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4A6080;
  border: 1px solid #2A3A54;
  padding: 4px 10px;
  border-radius: 4px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4A6080;
  margin-bottom: 16px;
}

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

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

.footer-col ul li a {
  font-size: 0.83rem;
  color: #5A7090;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #A8BFD8;
}

.footer-divider {
  border: none;
  border-top: 1px solid #1A2A44;
  margin: 0 0 24px;
}

.responsible-box {
  background: #0C1828;
  border: 1px solid #1A2A44;
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 28px;
}

.responsible-box p {
  font-size: 0.8rem;
  color: #6A8090;
  line-height: 1.6;
}

.responsible-box strong {
  color: #8AAABB;
}

.responsible-box a {
  color: #A8C0DC;
  text-decoration: underline;
}

.responsible-box a:hover {
  color: #C8D8ED;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #3A5060;
}

.footer-bottom a {
  color: #4A6070;
  text-decoration: none;
}

.age-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #4A6070;
  border: 1px solid #2A3A4A;
  padding: 3px 9px;
  border-radius: 4px;
}

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

  .review-logo {
    margin: 0 auto;
  }

  .review-hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .review-hero-actions {
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
  }

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

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

  .review-sidebar {
    position: static;
  }

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

  nav {
    display: none;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.legal-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 48px 0 56px;
}

.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.legal-hero p {
  font-size: 0.92rem;
  color: #8FA8C8;
}

.legal-body {
  padding: 56px 0 72px;
  max-width: 780px;
}

.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--divider);
}

.legal-body h2:first-of-type {
  margin-top: 0;
}

.legal-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 22px 0 10px;
}

.legal-body p,
.legal-body li {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-body ul,
.legal-body ol {
  margin: 0 0 16px 22px;
}

.legal-updated {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
