/* ============================================================
   CSS CUSTOM PROPERTIES — FOREST / BRASS PALETTE
   ============================================================ */
:root {
  --base:    #1B3A25;
  --deep:    #102417;
  --accent:  #D4A017;
  --accent2: #6FA96A;
  --surface: #F5F3EA;
  --ink:     #14231A;
  --muted:   #5A6B5E;

  --radius: 0px;
  --container: 1120px;
  --shadow-card: 0 2px 12px rgba(20, 35, 26, 0.13);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  background-color: var(--surface);
  color: var(--ink);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  line-height: 1.25;
  color: var(--base);
}

h1 { font-size: 2.0rem; margin-bottom: 0.5em; }
h2 { font-size: 1.55rem; margin-top: 1.8em; margin-bottom: 0.5em; }
h3 { font-size: 1.2rem; margin-top: 1.4em; margin-bottom: 0.4em; color: var(--deep); }

p { margin-bottom: 1em; }

a {
  color: var(--accent);
  text-decoration: underline;
}
a:hover { color: var(--deep); }
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius);
}

ul { list-style: none; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background-color: var(--base);
  padding: 0;
  border-bottom: 3px solid var(--accent);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.1rem;
  padding-bottom: 0;
  gap: 0;
}

/* LOGO WORDMARK */
.logo-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
  line-height: 1;
  padding: 0.15em 0.55em;
  background: var(--deep);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
}

.logo-qq {
  color: #ffffff;
}

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

/* MAIN NAV */
.main-nav {
  width: 100%;
  background-color: var(--deep);
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.main-nav ul li a {
  display: block;
  padding: 0.7rem 1rem;
  color: #e8f0e9;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 3px solid transparent;
  transition: color 0.18s, border-color 0.18s, background-color 0.18s;
}

.main-nav ul li a:hover {
  color: var(--accent);
  background-color: rgba(212, 160, 23, 0.08);
  border-bottom-color: var(--accent);
}

.main-nav ul li a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
  border-radius: var(--radius);
}

/* ============================================================
   BONUS BANNER
   ============================================================ */
.bonus-banner {
  background-color: var(--deep);
  border-bottom: 4px solid var(--accent);
  border-top: 4px solid var(--accent);
  padding: 1.2rem 0;
}

.bonus-banner--mid {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.bonus-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.bonus-banner__text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.bonus-banner__headline {
  font-family: 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-color: var(--accent2);
  text-underline-offset: 4px;
}

.bonus-banner__sub {
  font-size: 0.88rem;
  color: #c8d9ca;
}

/* ============================================================
   BUTTONS — gradient accent fill + inner highlight
   ============================================================ */
.btn-cta {
  display: inline-block;
  padding: 0.72em 1.7em;
  background: linear-gradient(
    180deg,
    #f0bc30 0%,
    var(--accent) 45%,
    #b88610 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 3px 8px rgba(0, 0, 0, 0.35);
  color: var(--deep);
  font-family: 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.16s, box-shadow 0.16s, transform 0.1s;
  flex-shrink: 0;
}

.btn-cta:hover {
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 5px 14px rgba(0, 0, 0, 0.38);
  transform: translateY(-1px);
}

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

.btn-cta:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

/* ============================================================
   MAIN CONTENT WRAPPER
   ============================================================ */
.main-content {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.lead-paragraph {
  font-size: 1.05rem;
  color: var(--muted);
  border-left: 4px solid var(--accent2);
  padding-left: 1rem;
  margin-bottom: 1.5em;
}

/* ============================================================
   TABLES — boxed, full border grid, tinted header
   ============================================================ */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  border: 2px solid var(--muted);
  border-radius: var(--radius);
}

.facts-table,
.payments-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.93rem;
  background: #ffffff;
}

.facts-table thead tr,
.payments-table thead tr {
  background-color: var(--base);
  color: #ffffff;
}

.facts-table th,
.payments-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-family: 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border-right: 1px solid var(--muted);
}

.facts-table th:last-child,
.payments-table th:last-child {
  border-right: none;
}

.facts-table td,
.payments-table td {
  padding: 0.65rem 1rem;
  border-top: 1px solid #dcdbd3;
  border-right: 1px solid #dcdbd3;
  color: var(--ink);
  vertical-align: top;
}

.facts-table td:last-child,
.payments-table td:last-child {
  border-right: none;
}

.facts-table tbody tr:nth-child(even),
.payments-table tbody tr:nth-child(even) {
  background-color: #f0ede0;
}

.facts-table tbody tr:hover,
.payments-table tbody tr:hover {
  background-color: #e8e5d3;
}

/* ============================================================
   FAQ — CSS-ONLY ACCORDION (hidden checkbox technique)
   ============================================================ */
.faq-section {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.faq-section h2 {
  margin-bottom: 1rem;
}

.faq-list {
  border: 2px solid var(--muted);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--muted);
}

.faq-item:last-child {
  border-bottom: none;
}

/* Hide checkbox */
.faq-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Question label */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background-color: var(--surface);
  color: var(--base);
  font-family: 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.16s;
}

.faq-question:hover {
  background-color: #eae8db;
}

.faq-toggle:focus-visible + .faq-question {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

/* Plus / minus icon — drawn entirely in CSS */
.faq-icon {
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: transparent;
}

/* Horizontal bar (always visible) */
.faq-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 2px;
  background-color: var(--accent);
}

/* Vertical bar (visible when closed = plus; hidden when open = minus) */
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 10px;
  background-color: var(--accent);
  transition: transform 0.2s, opacity 0.2s;
}

/* When checked: vertical bar collapses → shows minus */
.faq-toggle:checked + .faq-question .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.faq-toggle:checked + .faq-question {
  background-color: var(--base);
  color: #ffffff;
}

.faq-toggle:checked + .faq-question .faq-icon {
  border-color: var(--accent);
}

.faq-toggle:checked + .faq-question .faq-icon::before {
  background-color: var(--accent);
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #ffffff;
}

.faq-answer p {
  padding: 1rem 1.1rem;
  margin: 0;
  color: var(--ink);
  font-size: 0.97rem;
  border-top: 1px solid #e0ddd0;
}

/* Open state */
.faq-toggle:checked ~ .faq-answer {
  max-height: 600px;
}

/* ============================================================
   CARDS — soft shadow, circled numeral
   ============================================================ */
.cards-section {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.cards-section h2 {
  margin-bottom: 1.2rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.card {
  position: relative;
  background-color: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.6rem 1.4rem 1.4rem 1.4rem;
  border: 1px solid #dcdbd3;
  border-top: 3px solid var(--accent2);
  overflow: visible;
}

.card h3 {
  margin-top: 0.2rem;
  margin-bottom: 0.5em;
  color: var(--base);
}

.card p {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0;
}

/* Circled numeral in top-right corner */
.card-numeral {
  position: absolute;
  top: -0.7rem;
  right: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  background: linear-gradient(135deg, var(--base) 0%, var(--deep) 100%);
  color: var(--accent);
  font-family: 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: var(--deep);
  color: #c0cfc3;
  padding: 2.2rem 0 1.4rem;
  border-top: 4px solid var(--accent);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.footer-logo {
  display: inline-flex;
  align-items: baseline;
  font-family: 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  padding: 0.1em 0.4em;
  background: var(--base);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
}

.footer-logo .logo-qq { color: #ffffff; }
.footer-logo .logo-88 { color: var(--accent); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
}

.footer-links a {
  color: #c0cfc3;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.footer-disclaimer p {
  font-size: 0.82rem;
  color: #8a9e8e;
  line-height: 1.55;
  margin-bottom: 0.5em;
}

.footer-copyright {
  color: var(--muted) !important;
  font-size: 0.8rem !important;
  font-weight: 600;
}

/* ============================================================
   REVIEW ARTICLE — spacing
   ============================================================ */
.review-article section {
  margin-bottom: 2rem;
}

/* ============================================================
   BREAKPOINT — 640px
   ============================================================ */
@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .header-inner {
    padding-top: 1.4rem;
  }

  .bonus-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .bonus-banner__headline {
    font-size: 1.2rem;
  }

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

  .main-nav ul li a {
    padding: 0.75rem 1.2rem;
    font-size: 0.9rem;
  }

  .footer-inner {
    align-items: flex-start;
  }
}

/* ============================================================
   BREAKPOINT — 1024px
   ============================================================ */
@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .header-inner {
    padding-top: 1.5rem;
  }

  .logo-wordmark {
    font-size: 2.6rem;
    margin-bottom: 0.75rem;
  }

  .main-nav ul li a {
    padding: 0.8rem 1.5rem;
    font-size: 0.92rem;
  }

  .main-content {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  .lead-paragraph {
    font-size: 1.1rem;
  }

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

  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .footer-disclaimer {
    flex: 1 1 400px;
  }

  .bonus-banner__headline {
    font-size: 1.3rem;
  }

  .bonus-banner__sub {
    font-size: 0.93rem;
  }

  .faq-question {
    font-size: 1.05rem;
    padding: 1.1rem 1.4rem;
  }

  .faq-answer p {
    padding: 1.1rem 1.4rem;
  }
}