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

:root {
  --honey: #F5A623;
  --honey-dark: #D4891A;
  --honey-light: #FFF3D6;
  --gold: #FFD700;
  --brown-dark: #2C1A00;
  --brown-mid: #5C3A00;
  --brown-light: #8B5E1A;
  --cream: #FFFBF0;
  --white: #FFFFFF;
  --text-dark: #1A0D00;
  --text-mid: #4A3000;
  --text-light: #7A5C2A;
  --bg-dark: #1C1000;
  --bg-section: #FFF8E8;
  --border: #E8C87A;
  --shadow: rgba(90, 50, 0, 0.15);
  --radius: 10px;
  --radius-lg: 18px;
  --font-main: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--honey-dark);
  text-decoration: none;
  transition: color 0.2s;
}

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

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

.site-header {
  background: var(--brown-dark);
  border-bottom: 3px solid var(--honey);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px var(--shadow);
}

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

.logo-link {
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

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

.burger {
  display: none;
  background: none;
  border: 2px solid var(--honey);
  color: var(--honey);
  font-size: 1.4rem;
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
}

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

.main-nav ul li a {
  color: var(--honey-light);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: var(--honey);
  color: var(--brown-dark);
  text-decoration: none;
}

.bonus-banner {
  background: linear-gradient(135deg, var(--honey-dark) 0%, var(--honey) 60%, var(--gold) 100%);
  padding: 18px 0;
  box-shadow: 0 4px 16px rgba(200, 120, 0, 0.25);
}

.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;
  color: var(--brown-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.banner-text strong {
  font-size: 1.08rem;
  color: var(--brown-dark);
  font-weight: 800;
}

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

.btn-cta {
  background: var(--brown-dark);
  color: var(--gold);
  border: 2px solid var(--gold);
  font-size: 1rem;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta:hover {
  background: var(--gold);
  color: var(--brown-dark);
  transform: translateY(-1px);
}

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

.main-content {
  flex: 1;
  padding: 36px 16px 48px;
}

.review-article h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brown-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.lead {
  font-size: 1.08rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.8;
  border-left: 4px solid var(--honey);
  padding-left: 16px;
  background: var(--honey-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px 14px 18px;
}

.review-article h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brown-mid);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--border);
}

.review-article h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--brown-light);
  margin-top: 22px;
  margin-bottom: 10px;
}

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

.review-article ul,
.review-article ol {
  margin: 0 0 20px 20px;
  padding: 0;
}

.review-article ul li,
.review-article ol li {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.review-article ul li strong {
  color: var(--brown-mid);
}

.checklist {
  list-style: none;
  margin-left: 0 !important;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.checklist li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
  color: var(--text-dark);
}

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

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

table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.94rem;
}

thead tr {
  background: var(--brown-dark);
  color: var(--gold);
}

thead th {
  padding: 13px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

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

tbody tr:nth-child(even) {
  background: var(--honey-light);
}

tbody tr:hover {
  background: #FFE8A0;
}

tbody td {
  padding: 11px 16px;
  color: var(--text-dark);
  vertical-align: top;
}

.cards-section {
  margin-top: 40px;
}

.cards-section h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brown-mid);
  margin-bottom: 22px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--border);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 3px 14px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(150, 90, 0, 0.18);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brown-mid);
  margin-bottom: 10px;
}

.card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.faq-section {
  margin-top: 48px;
}

.faq-section h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brown-mid);
  margin-bottom: 22px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--border);
}

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

.faq-toggle {
  display: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--brown-dark);
  background: var(--bg-section);
  transition: background 0.2s;
  user-select: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--honey);
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.25s;
}

.faq-toggle:checked + .faq-question {
  background: var(--honey-light);
  color: var(--brown-mid);
}

.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.25s ease;
  padding: 0 20px;
  background: var(--white);
}

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

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.site-footer {
  background: var(--brown-dark);
  border-top: 3px solid var(--honey);
  padding: 36px 0 24px;
  margin-top: auto;
}

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

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

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

.footer-nav ul li a {
  color: var(--honey-light);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.footer-nav ul li a:hover {
  background: var(--honey);
  color: var(--brown-dark);
  text-decoration: none;
}

.footer-disclaimer {
  max-width: 700px;
}

.footer-disclaimer p {
  color: #B8904A;
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-disclaimer p:last-child {
  color: var(--honey-light);
  font-weight: 600;
}

@media (min-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-article h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 900px) {
  .main-content {
    padding: 48px 16px 64px;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }

  .footer-nav ul {
    justify-content: flex-start;
  }

  .footer-disclaimer {
    text-align: right;
  }
}

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

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brown-dark);
    border-top: 2px solid var(--honey);
    z-index: 200;
    padding: 12px 0;
  }

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

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

  .main-nav ul li a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

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

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

  .review-article h1 {
    font-size: 1.7rem;
  }

  .review-article h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 400px) {
  .logo-text {
    font-size: 1.3rem;
  }

  .review-article h1 {
    font-size: 1.4rem;
  }
}