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

:root {
  --gold: #c9a84c;
  --gold-dark: #a8852e;
  --gold-light: #f0d080;
  --navy: #0d1b2e;
  --navy-mid: #142338;
  --navy-light: #1e3251;
  --navy-lighter: #274069;
  --white: #ffffff;
  --off-white: #f7f4ef;
  --text-main: #1a1a2e;
  --text-light: #4a5568;
  --text-muted: #718096;
  --border: #d4c89a;
  --card-bg: #ffffff;
  --success: #2d6a4f;
  --danger: #8b2020;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(13,27,46,0.13);
  --shadow-sm: 0 2px 8px rgba(13,27,46,0.09);
  --transition: 0.22s ease;
  --font-main: 'Georgia', 'Times New Roman', serif;
  --font-ui: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  background: var(--off-white);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

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

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}

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

.site-header {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -1px;
  font-family: var(--font-ui);
  flex-shrink: 0;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-ui);
  line-height: 1.2;
}

.logo-text em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 400;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav ul li a {
  color: rgba(255,255,255,0.82);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.main-nav ul li a:hover {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  white-space: nowrap;
  font-family: var(--font-ui);
  letter-spacing: 0.02em;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  font-size: 16px;
  padding: 13px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(168,133,46,0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 6px 24px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}

.btn-large {
  font-size: 18px;
  padding: 16px 38px;
}

.header-cta {
  flex-shrink: 0;
  font-size: 14px;
  padding: 9px 18px;
}

.bonus-banner {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 40%, #1a2c50 100%);
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding: 18px 0;
}

.bonus-banner--mid {
  margin: 48px 0;
  background: linear-gradient(90deg, #0a1520 0%, var(--navy-mid) 50%, #0a1520 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}

.bonus-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bonus-banner__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bonus-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}

.bonus-banner__text strong {
  font-size: 20px;
  color: var(--white);
  line-height: 1.3;
  font-family: var(--font-ui);
}

.bonus-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.site-main {
  padding: 40px 0 60px;
}

.hero-section {
  text-align: center;
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  color: var(--navy);
  font-family: var(--font-ui);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

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

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 400;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 26px;
  color: #d0c0a0;
  line-height: 1;
}

.star.filled {
  color: var(--gold);
}

.star.half {
  position: relative;
  color: #d0c0a0;
  overflow: hidden;
}

.star.half::before {
  content: '★';
  position: absolute;
  color: var(--gold);
  width: 55%;
  overflow: hidden;
  display: block;
}

.rating-score {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.qf-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.qf-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.qf-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  display: block;
  line-height: 1.2;
}

.qf-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1.3;
}

.qf-item > div,
.qf-item {
  flex-direction: row;
}

.qf-item .qf-label,
.qf-item .qf-value {
  display: block;
}

.qf-item > span:nth-child(2),
.qf-item > span:nth-child(3) {
  display: flex;
  flex-direction: column;
}

.content-section {
  margin-bottom: 48px;
}

.content-section h2 {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-ui);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.content-section h3 {
  font-size: clamp(17px, 3vw, 22px);
  font-weight: 700;
  color: var(--navy-light);
  margin: 28px 0 14px;
  font-family: var(--font-ui);
  line-height: 1.3;
}

.content-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 16px;
  font-family: var(--font-main);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.info-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}

.info-table thead {
  background: var(--navy);
  color: var(--white);
}

.info-table thead th {
  padding: 13px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-table tbody tr:nth-child(even) {
  background: #f7f4ef;
}

.info-table tbody tr:hover {
  background: rgba(201,168,76,0.07);
}

.info-table tbody td,
.info-table tbody th {
  padding: 12px 16px;
  border-bottom: 1px solid #e8e4da;
  vertical-align: middle;
}

.info-table tbody th {
  font-weight: 700;
  color: var(--navy);
  background: rgba(13,27,46,0.04);
  min-width: 160px;
}

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

.pros-cons-section {
  margin-bottom: 48px;
}

.pros-cons-section > h2 {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-ui);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  letter-spacing: -0.01em;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid;
  font-family: var(--font-ui);
}

.card--pros h3 {
  color: var(--success);
  border-color: #2d6a4f;
}

.card--cons h3 {
  color: var(--danger);
  border-color: #8b2020;
}

.check-list,
.cross-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-list li,
.cross-list li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
  color: var(--text-main);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
  font-size: 14px;
}

.cross-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 900;
  font-size: 14px;
}

.faq-section {
  margin-bottom: 48px;
}

.faq-section h2 {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-ui);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  letter-spacing: -0.01em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-ui);
  user-select: none;
  line-height: 1.4;
  transition: background var(--transition);
  gap: 12px;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-dark);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-question:hover {
  background: rgba(201,168,76,0.05);
}

.faq-toggle:checked + .faq-question {
  background: rgba(13,27,46,0.03);
  border-bottom: 1px solid var(--border);
}

.faq-toggle:checked + .faq-question::after {
  content: '−';
}

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

.faq-toggle:checked ~ .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-main);
  font-family: var(--font-main);
  margin: 0;
}

.cta-block {
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  padding: 36px 24px;
  margin-top: 32px;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow);
}

.cta-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-ui);
}

.disclaimer {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 40px 0 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .logo-icon {
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
}

.footer-logo .logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-ui);
}

.footer-logo .logo-text em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 400;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  font-family: var(--font-main);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  font-family: var(--font-ui);
}

@media (min-width: 480px) {
  .quick-facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .quick-facts {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-logo {
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    min-width: 160px;
  }

  .header-inner {
    flex-wrap: nowrap;
  }
}

@media (max-width: 600px) {
  .bonus-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .bonus-banner__text strong {
    font-size: 16px;
  }

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

  .main-nav {
    display: none;
  }

  .quick-facts {
    grid-template-columns: 1fr 1fr;
  }

  .btn-large {
    font-size: 15px;
    padding: 13px 22px;
  }
}

@media (max-width: 400px) {
  .quick-facts {
    grid-template-columns: 1fr;
  }
}