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

:root {
  --navy: #002147;
  --navy-dark: #001530;
  --navy-mid: #003366;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #F5E9C8;
  --cream: #FAF7F0;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-body: #2C2C44;
  --text-muted: #5A5A7A;
  --green: #1A7A4A;
  --red-soft: #8B1A1A;
  --border: #D6C89A;
  --shadow: 0 4px 24px rgba(0, 33, 71, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--cream);
  color: var(--text-body);
  font-size: 17px;
  line-height: 1.75;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- HEADER ---- */
.site-header {
  background: var(--navy-dark);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

.logo-icon {
  font-size: 22px;
  color: var(--gold);
}

.logo-text {
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: bold;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

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

.header-nav {
  display: flex;
  gap: 24px;
}

.header-nav a {
  color: #B0C4DE;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* ---- BONUS BANNERS ---- */
.bonus-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #004080 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 20px;
}

.top-banner {
  border-top: none;
}

.mid-banner {
  margin: 48px 0;
}

.banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.banner-tag {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.banner-text strong {
  font-size: 22px;
  color: var(--white);
  font-family: 'Georgia', serif;
  line-height: 1.2;
}

.banner-sub {
  font-size: 12px;
  color: #B0C4DE;
  font-family: Arial, sans-serif;
}

/* ---- CTA BUTTONS ---- */
.cta-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-dark);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 3px 12px rgba(201, 168, 76, 0.4);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.55);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-gold {
  background: linear-gradient(135deg, #E8C96A 0%, var(--gold) 100%);
}

.cta-large {
  padding: 18px 40px;
  font-size: 16px;
}

/* ---- HERO ---- */
.hero-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 0 48px;
  border-bottom: 3px solid var(--gold);
}

.breadcrumb {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #8899BB;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  font-family: 'Georgia', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: bold;
  color: var(--white);
  text-transform: capitalize;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative;
}

h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin-top: 12px;
}

.hero-lead {
  font-size: 19px;
  color: #B8CCE8;
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.rating-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 2px;
}

.rating-num {
  font-size: 22px;
  font-weight: bold;
  color: var(--white);
  font-family: Arial, sans-serif;
}

.rating-label {
  font-size: 13px;
  color: #8899BB;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fact {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 90px;
}

.fact-icon {
  font-size: 18px;
}

.fact-label {
  font-family: Arial, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8899BB;
}

.fact-val {
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: var(--gold-light);
}

/* ---- REVIEW SECTIONS ---- */
.review-section {
  padding: 56px 0;
}

.review-section + .review-section {
  border-top: 1px solid var(--border);
}

h2 {
  font-family: 'Georgia', serif;
  font-size: clamp(22px, 3.5vw, 30px);
  color: var(--navy);
  margin-bottom: 20px;
  margin-top: 40px;
  line-height: 1.25;
}

h2:first-child {
  margin-top: 0;
}

h3 {
  font-family: 'Georgia', serif;
  font-size: clamp(17px, 2.5vw, 21px);
  color: var(--navy-mid);
  margin-bottom: 12px;
  margin-top: 28px;
}

.review-section p {
  margin-bottom: 18px;
  color: var(--text-body);
}

/* ---- TABLES ---- */
.bonus-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bonus-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  background: var(--white);
  font-family: Arial, sans-serif;
  font-size: 15px;
}

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

.bonus-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bonus-table tbody tr {
  border-bottom: 1px solid #EDE8D8;
}

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

.bonus-table tbody td {
  padding: 13px 16px;
  color: var(--text-body);
}

.bonus-table .total-row {
  background: var(--gold-pale) !important;
  font-weight: bold;
}

/* ---- CARDS ---- */
.cards-section {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 33, 71, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 6px 24px rgba(0, 33, 71, 0.12);
  transform: translateY(-2px);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.card h3 {
  font-size: 17px;
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
}

.card p,
.card ul {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
}

.card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.card-pros {
  border-left: 4px solid var(--green);
}

.card-cons {
  border-left: 4px solid #B8860B;
}

/* ---- FAQ ---- */
.faq-section {
  padding: 56px 0;
  background: var(--cream);
}

.faq-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-toggle {
  display: none;
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Georgia', serif;
  font-size: 16px;
  color: var(--navy);
  font-weight: bold;
  line-height: 1.4;
  transition: background 0.2s;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.25s;
}

.faq-toggle:checked + .faq-question {
  background: var(--navy);
  color: var(--gold-light);
}

.faq-toggle:checked + .faq-question::after {
  transform: rotate(45deg);
  color: var(--gold-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
  background: #FDFAF3;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 600px;
  padding: 20px 22px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}

/* ---- SUMMARY ---- */
.summary-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 64px 0;
  border-top: 3px solid var(--gold);
}

.summary-section h2 {
  color: var(--white);
}

.summary-section p {
  color: #B8CCE8;
  margin-bottom: 18px;
  font-size: 16px;
}

.summary-cta {
  text-align: center;
  margin-top: 36px;
}

.disclaimer {
  margin-top: 12px !important;
  font-size: 12px !important;
  color: #6677AA !important;
  font-family: Arial, sans-serif;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy-dark);
  border-top: 2px solid rgba(201, 168, 76, 0.3);
  padding: 40px 20px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.footer-info p {
  font-size: 13px;
  color: #667799;
  line-height: 1.6;
  font-family: Arial, sans-serif;
  margin-bottom: 8px;
}

.age-warning {
  color: #8899BB !important;
  font-weight: bold !important;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links span {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #445577;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .header-nav {
    display: none;
  }

  .header-inner {
    justify-content: center;
  }

  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .banner-text strong {
    font-size: 18px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
  }

  .quick-facts {
    gap: 8px;
  }

  .fact {
    min-width: 80px;
    padding: 8px 10px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

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

  .bonus-table-wrap {
    border-radius: 6px;
  }

  .faq-question {
    font-size: 15px;
    padding: 15px 18px;
  }

  .hero-section {
    padding: 36px 0 32px;
  }

  .review-section {
    padding: 36px 0;
  }

  .cards-section {
    padding: 36px 0;
  }

  .faq-section {
    padding: 36px 0;
  }

  .summary-section {
    padding: 40px 0;
  }

  .mid-banner {
    margin: 32px 0;
  }
}

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

  .fact {
    min-width: unset;
  }

  .logo-text {
    font-size: 15px;
  }
}
