:root {
  --green: #00a651;
  --green-dark: #007a3d;
  --green-light: #e6f7ee;
  --gold: #f5a623;
  --gold-dark: #c8851a;
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --mid: #2c2c2c;
  --text: #222222;
  --text-muted: #555555;
  --border: #d4d4d4;
  --bg: #f8f8f6;
  --white: #ffffff;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 18px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 36px rgba(0,0,0,0.16);
  --font-head: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img { display: none; }

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

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

/* ── SITE HEADER ── */
.site-header {
  background: var(--dark);
  border-bottom: 3px solid var(--green);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.logo-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: #aaa;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-badge {
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── BONUS BANNER (top) ── */
.bonus-banner {
  background: linear-gradient(135deg, #0d2b1a 0%, #145c30 50%, #0d2b1a 100%);
  padding: 28px 0;
  border-bottom: 2px solid var(--gold);
}

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

.bonus-banner-text {
  flex: 1 1 300px;
}

.bonus-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}

.bonus-headline {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}

.bonus-sub {
  color: #c5e8d3;
  font-size: 0.92rem;
  line-height: 1.5;
}

.bonus-sub strong {
  color: var(--gold);
}

.bonus-cta-wrap {
  flex-shrink: 0;
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 18px rgba(245,166,35,0.45);
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 28px rgba(245,166,35,0.55);
  color: var(--black);
}

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

.disclaimer-banner {
  background: rgba(255,255,255,0.07);
  text-align: center;
  padding: 6px 18px;
  font-size: 0.72rem;
  color: #a0c8b4;
  letter-spacing: 0.02em;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 10px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.breadcrumb a { color: var(--green-dark); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; color: #bbb; }

/* ── MAIN LAYOUT ── */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  padding: 36px 0 56px;
  align-items: start;
}

/* ── CONTENT AREA ── */
.content-area h1 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 700;
}

.content-area h2 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  color: var(--dark);
  margin: 36px 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--green-light);
  font-weight: 700;
}

.content-area h3 {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--dark);
  margin: 22px 0 8px;
  font-weight: 700;
}

.content-area p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.75;
}

.content-area ul, .content-area ol {
  margin: 10px 0 18px 22px;
}

.content-area li {
  margin-bottom: 7px;
  font-size: 0.97rem;
  line-height: 1.65;
}

.content-area strong { color: var(--dark); }

/* ── META ROW ── */
.meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.meta-tag {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.rating-inline {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

/* ── SCORE CARD (intro) ── */
.score-card {
  background: linear-gradient(135deg, #f0faf4 0%, #e6f7ee 100%);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}

.score-badge {
  width: 80px;
  height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.score-badge .score-num {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-head);
  line-height: 1;
}

.score-badge .score-max {
  font-size: 0.7rem;
  opacity: 0.8;
}

.score-details h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--dark);
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
}

.score-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.score-item span:last-child {
  color: var(--green-dark);
  font-weight: 700;
}

/* ── TABLE ── */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 460px;
  font-size: 0.92rem;
  background: #fff;
}

thead tr {
  background: var(--dark);
  color: #fff;
}

thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tbody tr:nth-child(even) { background: var(--green-light); }
tbody tr:hover { background: #ddf3e9; }

tbody td {
  padding: 11px 16px;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: top;
  line-height: 1.5;
}

tbody tr:last-child td { border-bottom: none; }

td strong { color: var(--green-dark); }

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 12px;
  background: var(--green-light);
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
}

.card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── PROS/CONS ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 22px 0 28px;
}

.pros, .cons {
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid;
}

.pros {
  background: #f0faf5;
  border-color: #a8dbbe;
}

.cons {
  background: #fff8f0;
  border-color: #f5c9a0;
}

.pros h3 { color: var(--green-dark); margin-bottom: 12px; font-size: 1rem; }
.cons h3 { color: #b85c00; margin-bottom: 12px; font-size: 1rem; }

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

.pros li, .cons li {
  font-size: 0.88rem;
  padding: 4px 0 4px 22px;
  position: relative;
  color: var(--text);
  line-height: 1.5;
}

.pros li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons li::before { content: "✗"; position: absolute; left: 0; color: #c8651a; font-weight: 700; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: linear-gradient(135deg, #fff9e6 0%, #fff4d0 100%);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 22px 0;
  font-size: 0.95rem;
}

.highlight-box strong {
  color: #8a5c00;
}

/* ── MID BANNER ── */
.mid-banner {
  background: linear-gradient(135deg, #145c30 0%, #0d2b1a 100%);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin: 36px 0;
  text-align: center;
  border: 2px solid var(--gold);
}

.mid-banner .bonus-label { font-size: 0.78rem; margin-bottom: 6px; }
.mid-banner .bonus-headline { font-size: clamp(1.2rem, 2.5vw, 1.75rem); margin-bottom: 8px; }
.mid-banner .bonus-sub { margin-bottom: 20px; }

/* ── FAQ ACCORDION (CSS only) ── */
.faq-section {
  margin: 36px 0;
}

.faq-section h2 { margin-top: 0; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
}

.faq-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  user-select: none;
  gap: 10px;
  transition: background 0.15s;
}

.faq-label:hover { background: var(--green-light); }

.faq-label::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}

.faq-item input:checked ~ .faq-label::after {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item input:checked ~ .faq-body {
  max-height: 600px;
}

.faq-body p {
  padding: 0 20px 18px;
  margin: 0;
}

/* ── SIDEBAR ── */
.sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.sidebar-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-light);
}

.quick-facts li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.85rem;
  gap: 8px;
}

.quick-facts li:last-child { border-bottom: none; }

.quick-facts li span:first-child {
  color: var(--text-muted);
  flex-shrink: 0;
}

.quick-facts li span:last-child {
  color: var(--dark);
  font-weight: 600;
  text-align: right;
}

.sidebar-rating {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
}

.rating-bar .bar-label {
  width: 90px;
  flex-shrink: 0;
  color: var(--text-muted);
}

.bar-track {
  flex: 1;
  height: 8px;
  background: #e8e8e8;
  border-radius: 50px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  border-radius: 50px;
}

.bar-val {
  width: 28px;
  text-align: right;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.82rem;
}

.sidebar-cta {
  text-align: center;
}

.sidebar-cta p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.btn-cta-sm {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(245,166,35,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-cta-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245,166,35,0.5);
}

.age-notice {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: #aaa;
  padding: 36px 0 24px;
  margin-top: 0;
  border-top: 3px solid var(--green);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-col h5 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #888;
}

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

.footer-col ul li {
  margin-bottom: 7px;
  font-size: 0.82rem;
}

.footer-col ul li a {
  color: #888;
  text-decoration: none;
}

.footer-col ul li a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.5;
  max-width: 680px;
}

.footer-logos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badge {
  background: #333;
  color: #aaa;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .main-layout {
    grid-template-columns: 1fr;
    padding: 24px 0 40px;
  }

  .sidebar {
    position: static;
    top: auto;
  }

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

@media (max-width: 600px) {
  .bonus-banner .container {
    flex-direction: column;
    text-align: center;
  }

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

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

  .score-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .score-badge {
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .meta-row { gap: 8px; }

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

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