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

:root {
  --brand-primary: #c9a227;
  --brand-secondary: #1a1a2e;
  --brand-accent: #e8c84a;
  --brand-dark: #0d0d1a;
  --brand-mid: #16213e;
  --brand-surface: #1e2a45;
  --brand-border: #2a3a5c;
  --text-main: #e8eaf0;
  --text-muted: #8a9bb5;
  --text-light: #ffffff;
  --banner-bg: linear-gradient(135deg, #1a1a2e 0%, #c9a227 100%);
  --btn-bg: #c9a227;
  --btn-hover: #e8c84a;
  --btn-text: #0d0d1a;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --font-main: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background-color: var(--brand-dark);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--brand-primary); }

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

.site-header {
  background: var(--brand-secondary);
  border-bottom: 2px solid var(--brand-primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

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

.logo-link { text-decoration: none; }

.logo-text {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--text-light);
  text-transform: uppercase;
  line-height: 1;
}
.logo-text span {
  color: var(--brand-accent);
}

.burger {
  display: none;
  background: none;
  border: 2px solid var(--brand-primary);
  color: var(--brand-accent);
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 6px;
  padding: 4px 10px;
  line-height: 1;
}

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

.main-nav a {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--brand-primary);
  color: var(--btn-text);
}

.bonus-banner {
  background: var(--banner-bg);
  padding: 18px 0;
  border-bottom: 2px solid var(--brand-accent);
}

.top-banner {
  border-bottom: 2px solid var(--brand-accent);
}

.mid-banner {
  border-radius: var(--radius-lg);
  margin: 36px 0;
  border: 2px solid var(--brand-accent);
  padding: 22px 24px;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.banner-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-accent);
  opacity: 0.9;
}

.banner-text strong {
  font-size: 1.12rem;
  color: var(--text-light);
  font-weight: 800;
}

.btn-cta {
  background: var(--btn-bg);
  color: var(--btn-text);
  border: none;
  border-radius: 8px;
  padding: 13px 28px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(201,162,39,0.35);
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(232,200,74,0.5);
}
.btn-cta:active { transform: translateY(0); }

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.cta-center {
  text-align: center;
  margin: 36px 0 16px;
}

.main-content {
  padding-top: 36px;
  padding-bottom: 48px;
}

.review-article h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--brand-accent);
  margin-bottom: 18px;
  line-height: 1.2;
}

.review-article .lead {
  font-size: 1.08rem;
  color: var(--text-main);
  margin-bottom: 32px;
  border-left: 4px solid var(--brand-primary);
  padding-left: 16px;
  background: rgba(201,162,39,0.07);
  border-radius: 0 8px 8px 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.review-article h2 {
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 800;
  color: var(--brand-accent);
  margin-top: 40px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--brand-border);
  padding-bottom: 8px;
}

.review-article h3 {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  color: var(--brand-primary);
  margin-top: 24px;
  margin-bottom: 10px;
}

.review-article p {
  margin-bottom: 16px;
  color: var(--text-main);
}

.review-article ul,
.review-article ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
.review-article li {
  margin-bottom: 6px;
  color: var(--text-main);
}

.review-article strong { color: var(--brand-accent); }

.cards-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.card {
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
  background: var(--brand-surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--brand-border);
  box-shadow: var(--shadow);
}

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

.card-pros { border-top: 4px solid #4caf50; }
.card-pros h3 { color: #81c784; }

.card-cons { border-top: 4px solid #ef5350; }
.card-cons h3 { color: #ef9a9a; }

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

.card-pros ul li::before {
  content: '✓ ';
  color: #81c784;
  font-weight: 700;
}

.card-cons ul li::before {
  content: '✕ ';
  color: #ef9a9a;
  font-weight: 700;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: var(--radius);
  border: 1px solid var(--brand-border);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: var(--brand-surface);
}

table thead {
  background: var(--brand-secondary);
}

table th {
  padding: 13px 16px;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  border-bottom: 2px solid var(--brand-primary);
}

table td {
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--brand-border);
  vertical-align: top;
}

table tbody tr:last-child td { border-bottom: none; }
table tbody tr:hover { background: rgba(201,162,39,0.06); }

.rating-table td:nth-child(2) {
  font-weight: 700;
  color: var(--brand-accent);
}

.checklist-block {
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 28px 0;
  border-left: 5px solid var(--brand-primary);
}

.checklist-block h3 {
  margin-top: 0;
  color: var(--brand-accent);
  margin-bottom: 14px;
}

.checklist {
  list-style: none;
  padding-left: 0;
}
.checklist li {
  padding: 7px 0 7px 28px;
  position: relative;
  border-bottom: 1px solid var(--brand-border);
  color: var(--text-main);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '☑';
  position: absolute;
  left: 0;
  color: var(--brand-accent);
  font-size: 1.1rem;
}

.faq {
  margin: 28px 0;
}

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

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  gap: 12px;
  user-select: none;
  transition: background 0.2s;
  position: relative;
}

.faq-question::after {
  content: '+';
  margin-left: auto;
  font-size: 1.4rem;
  color: var(--brand-accent);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-toggle:checked + .faq-question {
  background: rgba(201,162,39,0.1);
  color: var(--brand-accent);
  border-bottom: 1px solid var(--brand-border);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 20px;
}

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

.faq-answer p { margin-bottom: 0; }

.site-footer {
  background: var(--brand-secondary);
  border-top: 2px solid var(--brand-primary);
  padding: 36px 0 20px;
  margin-top: 48px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo .logo-text {
  font-size: 1.4rem;
}

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

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.footer-nav a:hover {
  color: var(--brand-accent);
  background: rgba(201,162,39,0.08);
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 680px;
}

@media (max-width: 768px) {
  .burger { display: block; }

  .main-nav {
    display: none;
    width: 100%;
    order: 3;
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
  }

  .main-nav a {
    padding: 12px 16px;
    font-size: 1rem;
  }

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

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

  .btn-cta { width: 100%; text-align: center; }

  .cards-row {
    flex-direction: column;
  }

  .card {
    flex: 1 1 100%;
    min-width: 0;
  }

  .logo-text { font-size: 1.3rem; }

  .review-article h1 { font-size: 1.5rem; }
  .review-article h2 { font-size: 1.15rem; }
  .review-article h3 { font-size: 1rem; }
}

@media (max-width: 480px) {
  .main-content { padding-top: 24px; padding-bottom: 32px; }
  .mid-banner { padding: 16px; }
  .checklist-block { padding: 16px; }
  table th, table td { padding: 10px 12px; font-size: 0.85rem; }
}