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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --gold-dark: #a07830;
  --navy: #0d1b2a;
  --navy-mid: #162840;
  --navy-light: #1e3450;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --text: #1a1a2e;
  --text-light: #4a4a6a;
  --success: #2ecc71;
  --danger: #e74c3c;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
}

html {
  scroll-behavior: smooth;
}

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

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

ul, ol {
  padding-left: 1.5em;
}

strong {
  font-weight: 700;
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-crown {
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
}

.logo-text {
  color: var(--white);
  font-family: 'Georgia', serif;
}

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

.main-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--off-white);
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.main-nav a:hover {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
}

.bonus-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 22px 0;
}

.bonus-banner--mid {
  margin: 48px 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.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-banner__label {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.bonus-banner__offer {
  font-family: 'Georgia', serif;
  font-size: 1.35rem;
  color: var(--white);
}

.bonus-banner__offer strong {
  color: var(--gold);
  font-size: 1.55rem;
}

.btn {
  display: inline-block;
  font-family: 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(201,168,76,0.45);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.55);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy);
  text-decoration: none;
}

.btn--secondary {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn--secondary:hover {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn--centre {
  display: block;
  width: fit-content;
  margin: 32px auto 0;
}

.main-content {
  padding: 48px 0 64px;
}

h1 {
  font-family: 'Georgia', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}

h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gold);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

h2 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  color: var(--navy);
  font-weight: 700;
  margin: 48px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

h3 {
  font-family: 'Georgia', serif;
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--navy-mid);
  font-weight: 700;
  margin: 28px 0 12px;
}

p {
  margin-bottom: 16px;
  color: var(--text);
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-light);
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0 32px;
  font-style: italic;
}

section {
  margin-bottom: 16px;
}

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

table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
}

thead {
  background: var(--navy);
  color: var(--gold);
}

thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

tbody tr {
  background: var(--white);
  border-bottom: 1px solid #e0d8c8;
  transition: background 0.15s;
}

tbody tr:nth-child(even) {
  background: #faf6ee;
}

tbody tr:hover {
  background: #f0eadc;
}

tbody td {
  padding: 12px 16px;
  color: var(--text);
  vertical-align: middle;
}

.rg-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 16px 0;
}

.rg-list li {
  padding: 10px 16px 10px 42px;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  position: relative;
  font-family: 'Arial', sans-serif;
  font-size: 0.92rem;
}

.rg-list li::before {
  content: '✓';
  position: absolute;
  left: 14px;
  color: var(--gold);
  font-weight: 700;
}

.steps-list {
  counter-reset: steps;
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.steps-list li {
  counter-increment: steps;
  padding: 14px 16px 14px 58px;
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid #e0d8c8;
  position: relative;
  font-family: 'Arial', sans-serif;
  font-size: 0.93rem;
}

.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--navy);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.card--con {
  border-top-color: var(--gold-dark);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

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

.card ul li {
  padding: 7px 0 7px 28px;
  position: relative;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0eadc;
}

.card ul li:last-child {
  border-bottom: none;
}

.card--pro ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.card--con ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: 700;
}

.rating-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 20px 0;
}

.rating-item {
  display: grid;
  grid-template-columns: 1fr 3fr auto;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.rating-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.rating-bar {
  display: block;
  background: #e0d8c8;
  border-radius: 100px;
  height: 10px;
  overflow: hidden;
}

.rating-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 100px;
}

.rating-score {
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
}

.overall-score {
  text-align: center;
  font-size: 1.25rem;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  margin-top: 20px;
}

.overall-score strong {
  color: var(--gold);
  font-size: 1.5rem;
}

.faq-list {
  margin: 20px 0;
}

.faq-item {
  margin-bottom: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-toggle {
  display: none;
}

.faq-question {
  display: block;
  background: var(--white);
  padding: 18px 52px 18px 20px;
  font-family: 'Arial', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  border-left: 4px solid var(--gold);
  transition: background 0.15s;
  user-select: none;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform 0.2s;
}

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

.faq-toggle:checked + .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  background: var(--off-white);
}

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

.faq-answer p {
  padding: 16px 20px;
  font-family: 'Arial', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  margin: 0;
  line-height: 1.7;
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201,168,76,0.25);
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
}

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

.footer-links a {
  color: var(--off-white);
  font-family: 'Arial', sans-serif;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
  text-decoration: none;
}

.footer-disclaimer {
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.6;
}

.footer-disclaimer p {
  margin-bottom: 10px;
  color: rgba(245,240,232,0.65);
}

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

.footer-copy {
  margin-top: 20px;
  color: rgba(245,240,232,0.45);
  font-size: 0.78rem;
}

@media (min-width: 640px) {
  .cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .bonus-banner__offer {
    font-size: 1.1rem;
  }

  .bonus-banner__offer strong {
    font-size: 1.25rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .main-nav ul {
    gap: 4px;
  }

  .main-nav a {
    font-size: 0.78rem;
    padding: 5px 8px;
  }

  .rating-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  h1::after {
    width: 50px;
  }

  .steps-list li::before {
    top: 18px;
    transform: none;
  }
}

@media (max-width: 400px) {
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}