* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7f2;
  color: #111;
  line-height: 1.6;
}

header {
  background: linear-gradient(90deg, #007a2f 0%, #00a83b 55%, #8bdc00 100%);
  padding: 16px 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  height: 58px;
}

.logo img {
  height: 58px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  border: 0;
  border-radius: 12px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: #b8ff00;
  color: #123600;
  box-shadow: 0 0 18px rgba(184, 255, 0, 0.55);
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 26px rgba(184, 255, 0, 0.8);
}

.button-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  box-shadow: none;
}

.section {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 20px;
}

.section h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.2;
  color: #0f2f08;
  letter-spacing: -0.02em;
}

.section h3 {
  margin: 28px 0 14px;
  font-size: 24px;
  line-height: 1.25;
  color: #145000;
}

.section p {
  margin: 0 0 18px;
  font-size: 17px;
  color: #202820;
}

.section:nth-child(3),
.section:nth-child(6),
.section:nth-child(8) {
  background: #ffffff;
  border-radius: 30px;
  margin-top: 28px;
  margin-bottom: 28px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

section:nth-child(1) {
  background:
    linear-gradient(
      90deg,
      rgba(0, 57, 20, 0.92) 0%,
      rgba(0, 96, 34, 0.82) 50%,
      rgba(0, 40, 16, 0.92) 100%
    ),
    radial-gradient(circle at 75% 35%, rgba(184, 255, 0, 0.35), transparent 32%);
  color: #fff;
  padding: 48px 0;
  overflow: hidden;
  max-width: 100%;
}

section:nth-child(1) td {
  color: #111;
}

.hero-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.hero-content {
  padding-top: 42px;
}

.hero-content h1 {
  margin: 0 0 20px;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-content p {
  margin: 0 0 26px;
  font-size: 18px;
  max-width: 720px;
  color: #e8f7df;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.section p.hero-card-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 800;
  color: #b8ff00;
}

.badge {
  display: inline-block;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(184, 255, 0, 0.16);
  color: #b8ff00;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(184, 255, 0, 0.35);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.cta-main {
  display: inline-block;
  text-decoration: none;
  border-radius: 14px;
  padding: 15px 28px;
  background: #b8ff00;
  color: #123600;
  font-weight: 800;
  box-shadow: 0 0 22px rgba(184, 255, 0, 0.6);
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.facts-table th,
.facts-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #e8eee5;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
}

.facts-table th {
  width: 32%;
  background: #f2f8ee;
  color: #164900;
  font-weight: 800;
}

.facts-table tr:last-child th,
.facts-table tr:last-child td {
  border-bottom: 0;
}

.hero .facts-table {
  background: rgba(255, 255, 255, 0.96);
  color: #111;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.pros-card,
.cons-card,
.bonus-card,
.promo-note {
  border-radius: 24px;
  padding: 26px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
  border: 1px solid #e3efdc;
}

.pros-card {
  border-left: 6px solid #8bdc00;
}

.cons-card {
  border-left: 6px solid #ff8a00;
}

.pros-card ul,
.cons-card ul,
.check-list,
.bonus-card ul,
.general-ol {
  margin: 14px 0 0;
  padding-left: 22px;
}

.pros-card li,
.cons-card li,
.check-list li,
.bonus-card li,
.general-ol li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #202820;
}

.general-ol {
  background: #eef8e9;
  border-radius: 22px;
  padding: 24px 24px 24px 46px;
  border: 1px solid #d7ebcd;
}

.general-ol li::marker {
  font-weight: 800;
  color: #4fa000;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0;
}

.bonus-card h3 {
  margin-top: 0;
}

.section:nth-child(5) {
  background: linear-gradient(135deg, #063d16 0%, #0b6a25 60%, #6fb900 100%);
  color: #fff;
  max-width: none;
  padding-left: calc((100% - 1180px) / 2 + 20px);
  padding-right: calc((100% - 1180px) / 2 + 20px);
}

.section:nth-child(5) h2,
.section:nth-child(5) h3,
.section:nth-child(5) p {
  color: #fff;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 28px 0;
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.vip-table,
.content-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  color: #151515;
  overflow: hidden;
}

.vip-table {
  min-width: 980px;
}

.content-table {
  min-width: 760px;
}

.vip-table th,
.vip-table td,
.content-table th,
.content-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #e9eee5;
  text-align: left;
  font-size: 15px;
  vertical-align: top;
}

.vip-table th,
.content-table th {
  background: #eff7eb;
  color: #124400;
  font-weight: 800;
}

.vip-table tbody tr:nth-child(even),
.content-table tbody tr:nth-child(even) {
  background: #f7faf5;
}

.promo-note {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
  margin-top: 24px;
}

.promo-note p {
  margin: 0;
  color: #fff;
}

.faq-container {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq-item {
  position: relative;
  background: #ffffff;
  border: 1px solid #dcebd3;
  border-radius: 18px;
  padding: 18px 58px 18px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.faq-item .toggle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.faq-question {
  margin: 0;
  font-size: 19px;
  color: #145000;
  padding-right: 10px;
}

.faq-answer {
  display: none;
  margin: 14px 0 0;
  color: #202820;
  font-size: 16px;
}

.faq-item .toggle:checked ~ .faq-answer {
  display: block;
}

.faq-item .icon {
  position: absolute;
  right: 20px;
  top: 22px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #b8ff00;
  pointer-events: none;
}

.faq-item .icon::before,
.faq-item .icon::after {
  content: "";
  position: absolute;
  background: #123600;
  left: 6px;
  right: 6px;
  top: 11px;
  height: 2px;
}

.faq-item .icon::after {
  transform: rotate(90deg);
}

.faq-item .toggle:checked ~ .icon::after {
  display: none;
}

@media (max-width: 860px) {
  header {
    position: static;
    padding: 12px 0;
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .button {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
  }

  .section {
    padding: 36px 18px;
  }

  .section h2 {
    font-size: 28px;
  }

  .section h3 {
    font-size: 22px;
  }

  .section:nth-child(3),
  .section:nth-child(6),
  .section:nth-child(8) {
    border-radius: 0;
  }

  .hero {
    padding: 32px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .badge {
    margin-bottom: 14px;
  }

  .cta-row {
    margin-top: 20px;
  }

  .cta-main {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
  }

  .hero-card {
    padding: 18px;
    border-radius: 20px;
    overflow-x: auto;
  }

  .hero-card-title {
    font-size: 22px;
  }

  .facts-table {
    min-width: 100%;
    border-radius: 16px;
  }

  .facts-table th,
  .facts-table td {
    display: block;
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
  }

  .facts-table th {
    background: #f2f8ee;
    border-bottom: 0;
    padding-bottom: 4px;
  }

  .facts-table td {
    padding-top: 4px;
  }

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

  .section:nth-child(5) {
    padding-left: 18px;
    padding-right: 18px;
  }

  .pros-card,
  .cons-card,
  .bonus-card,
  .promo-note {
    padding: 20px;
  }

  .content-table {
    min-width: 720px;
  }

  .faq-question {
    font-size: 17px;
  }

  .faq-item {
    padding: 16px 52px 16px 16px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-card {
    padding: 14px;
  }

  .header-actions {
    grid-template-columns: 1fr;
  }
}

footer {
  background: #063d16;
  color: #fff;
  padding: 34px 20px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto 18px;
}

.footer-inner:last-child {
  margin-bottom: 0;
}

.footer-inner p {
  margin: 0 0 10px;
  color: #fff;
  font-size: 15px;
}

.footer-brand {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 18px;
}
