:root {
  --brand-dark: #0b3b33;
  --brand-dark-2: #0f2a25;
  --brand-green: #1a5248;
  --brand-green-light: #e8f0ec;
  --brand-accent: #c9f03e;
  --brand-accent-2: #a8d42a;
  --brand-purple: #9c3ed4;
  --brand-purple-dark: #7a2bac;
  --text-primary: #12201d;
  --text-secondary: #4a5a55;
  --text-inverse: #ffffff;
  --bg-page: #f4f7f5;
  --bg-card: #ffffff;
  --bg-card-dark: #0f2a25;
  --border: #dce5e0;
  --border-dark: #1f4a40;
  --shadow-sm: 0 2px 8px rgba(11,59,51,0.08);
  --shadow-md: 0 4px 16px rgba(11,59,51,0.12);
  --shadow-lg: 0 8px 32px rgba(11,59,51,0.16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brand-purple); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-purple-dark); text-decoration: underline; }

/* ---------------- HEADER ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-dark);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-logo {
  font-family: var(--font);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-inverse);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-logo em {
  color: var(--brand-accent);
  font-style: normal;
}
.nav-menu {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  color: var(--text-inverse);
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  position: relative;
}
.nav-menu a:hover {
  color: var(--brand-accent);
  text-decoration: none;
}
.nav-menu a.active { color: var(--brand-accent); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--brand-accent);
}
.nav-cta {
  background: var(--brand-purple);
  color: var(--text-inverse) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: background .2s, transform .1s;
}
.nav-cta:hover {
  background: var(--brand-purple-dark);
  text-decoration: none !important;
  color: var(--text-inverse) !important;
}
.hamburger {
  display: none;
  background: none;
  border: 0;
  color: var(--text-inverse);
  font-size: 28px;
  cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 860px) {
  .hamburger { display: block; }
  .nav-menu {
    position: fixed;
    top: 62px;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - 62px);
    background: var(--brand-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 18px;
    transition: right .3s;
    box-shadow: -4px 0 16px rgba(0,0,0,0.2);
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 16px; width: 100%; }
  .nav-cta { text-align: center; }
}

/* ---------------- LAYOUT ---------------- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

main { padding: 30px 0 60px; }

/* ---------------- BREADCRUMBS ---------------- */
.breadcrumbs {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs span { margin: 0 6px; }

/* ---------------- TYPOGRAPHY ---------------- */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  letter-spacing: -0.015em;
}
h1 { font-size: 38px; margin-bottom: 18px; }
h2 { font-size: 28px; margin: 42px 0 16px; }
h3 { font-size: 21px; margin: 28px 0 12px; }
h4 { font-size: 17px; margin: 20px 0 8px; }
p { margin-bottom: 16px; }
article p, article li { font-size: 16.5px; }
article ul, article ol { margin: 0 0 18px 22px; }
article li { margin-bottom: 8px; }

@media (max-width: 640px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
}

/* ---------------- HERO ---------------- */
.hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-green) 100%);
  color: var(--text-inverse);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,240,62,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--text-inverse); max-width: 760px; }
.hero-sub {
  font-size: 18px;
  opacity: .92;
  max-width: 680px;
  margin-bottom: 26px;
}
.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,240,62,0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ---------------- VERDICT BOX ---------------- */
.verdict-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 24px auto 40px;
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  position: relative;
  z-index: 2;
}
/* Overlap hero only when verdict-box is the first thing in main */
main > .container > .verdict-box:first-child,
.hero + main .verdict-box:first-of-type,
main .container > .verdict-box:first-child {
  margin-top: -30px;
}
.verdict-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.rating-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-accent-2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
}
.rating-circle strong { font-size: 24px; font-weight: 800; line-height: 1; }
.rating-circle span { font-size: 11px; font-weight: 600; opacity: .85; }
.verdict-headline h3 { margin: 0 0 4px; font-size: 20px; }
.verdict-headline p { margin: 0; color: var(--text-secondary); font-size: 14.5px; }
.verdict-cta-wrap { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.verdict-procons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.procons-col h4 { margin: 0 0 10px; font-size: 15px; }
.procons-col ul { list-style: none; margin: 0; padding: 0; }
.procons-col li { font-size: 14.5px; padding: 4px 0 4px 22px; position: relative; margin: 0; }
.procons-col.pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-accent-2);
  font-weight: 800;
}
.procons-col.cons li::before {
  content: '−';
  position: absolute;
  left: 0;
  color: var(--brand-purple);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 720px) {
  .verdict-top { grid-template-columns: 1fr; text-align: center; }
  .verdict-procons { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------------- PROMO CALLOUT ---------------- */
.promo-callout {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-green) 100%);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 32px 0;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.promo-callout h3 {
  color: var(--text-inverse);
  margin: 0 0 8px;
  font-size: 22px;
}
.promo-callout p {
  margin: 0 0 18px;
  opacity: .92;
  font-size: 15.5px;
}
.promo-code-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 2px dashed var(--brand-accent);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}
.promo-code-value {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 20px;
  color: var(--brand-accent);
  letter-spacing: 0.12em;
}
.copy-btn {
  background: var(--brand-accent);
  color: var(--brand-dark);
  border: 0;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font);
  transition: background .15s;
}
.copy-btn:hover { background: var(--brand-accent-2); }
.copy-btn.copied { background: #4ade80; color: #0f2a25; }

/* ---------------- BUTTONS / CTA ---------------- */
.btn-primary {
  display: inline-block;
  background: var(--brand-purple);
  color: var(--text-inverse);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  transition: background .2s, transform .1s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.btn-primary:hover {
  background: var(--brand-purple-dark);
  color: var(--text-inverse);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--brand-dark);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 16px;
  transition: background .2s, transform .1s;
}
.btn-accent:hover {
  background: var(--brand-accent-2);
  color: var(--brand-dark);
  text-decoration: none;
  transform: translateY(-1px);
}
.cta-block {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  margin: 36px 0;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--brand-accent);
}
.cta-block h3 { margin: 0 0 8px; font-size: 20px; }
.cta-block p { margin: 0 0 16px; color: var(--text-secondary); }

/* ---------------- TABLES ---------------- */
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
}
.bonus-table thead {
  background: var(--brand-dark);
  color: var(--text-inverse);
}
.bonus-table th, .bonus-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.bonus-table th { font-weight: 700; font-size: 14px; }
.bonus-table tbody tr:nth-child(even) { background: #fafcfb; }
.bonus-table tbody tr:hover { background: var(--brand-green-light); }
.bonus-table tbody tr:last-child td { border-bottom: 0; }
@media (max-width: 640px) {
  .bonus-table { font-size: 13.5px; }
  .bonus-table th, .bonus-table td { padding: 9px 8px; }
}

/* ---------------- IMAGES ---------------- */
figure {
  margin: 26px auto;
  text-align: center;
}
figure img {
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}
.img-desktop {
  width: 90%;
  max-width: 900px;
  height: auto;
}
.img-mobile {
  width: 50%;
  max-width: 300px;
  height: auto;
}
figcaption {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 10px;
  font-style: italic;
}
@media (max-width: 640px) {
  .img-desktop, .img-mobile { width: 100%; max-width: 100%; }
}

/* ---------------- INFO BOXES ---------------- */
.info-box {
  background: var(--brand-green-light);
  border-left: 4px solid var(--brand-green);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin: 20px 0;
  font-size: 15px;
}
.info-box strong { color: var(--brand-dark); }
.warn-box {
  background: #fef3e8;
  border-left: 4px solid #f59e0b;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin: 20px 0;
  font-size: 15px;
}
.disclaimer {
  background: #f7fafc;
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
  font-size: 13.5px;
  color: var(--text-secondary);
}

/* ---------------- FEATURE GRID ---------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 26px 0;
}
.feature-card {
  background: var(--bg-card);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--brand-accent);
}
.feature-card h4 { margin: 0 0 8px; font-size: 17px; }
.feature-card p { margin: 0; font-size: 14.5px; color: var(--text-secondary); }

/* ---------------- STEPS ---------------- */
.steps-list {
  counter-reset: step;
  list-style: none;
  margin: 22px 0 !important;
  padding: 0 !important;
}
.steps-list li {
  counter-increment: step;
  position: relative;
  padding: 16px 18px 16px 64px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  margin-bottom: 12px !important;
  box-shadow: var(--shadow-sm);
  font-size: 15.5px;
}
.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--brand-dark);
  color: var(--brand-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

/* ---------------- FAQ ---------------- */
.faq-section { margin-top: 40px; }
.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--brand-purple);
  font-weight: 300;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--brand-green-light); }
.faq-item .faq-answer {
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------------- FOOTER ---------------- */
.site-footer {
  background: var(--brand-dark-2);
  color: #b8c5c0;
  padding: 40px 0 20px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 28px;
}
.footer-col h5 {
  color: var(--text-inverse);
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; font-size: 14px; }
.footer-col a { color: #b8c5c0; }
.footer-col a:hover { color: var(--brand-accent); text-decoration: none; }
.footer-col p { font-size: 14px; margin-bottom: 10px; }
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--brand-accent);
  color: var(--brand-accent);
  border-radius: 50%;
  font-weight: 800;
  font-size: 14px;
  margin: 10px 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  font-size: 13px;
  text-align: center;
  color: #7a8a85;
}
.footer-bottom p { margin: 4px 0; }
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------------- 404 ---------------- */
.err-wrap {
  text-align: center;
  padding: 80px 20px;
}
.err-wrap h1 { font-size: 88px; color: var(--brand-dark); margin-bottom: 10px; }
.err-wrap p { font-size: 17px; color: var(--text-secondary); margin-bottom: 24px; }
.err-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
