@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --navy: #0D1B2A;
  --navy-mid: #142030;
  --navy-light: #1C2E42;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dim: #8a7020;
  --cta: #E8501A;
  --cta-hover: #ff6630;
  --text: #F0EDE5;
  --text-muted: #9BAAB8;
  --border: rgba(212,175,55,0.2);
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: var(--navy);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; }
h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 500; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; color: var(--text); }

ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

strong { color: var(--gold-light); font-weight: 700; }

site-header {
  display: block;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

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

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.header-badge {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bonus-banner {
  background: linear-gradient(135deg, #0a1520 0%, #1a2e10 50%, #0a1520 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 18px 0;
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.08), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

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

.bonus-text {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 600;
  color: var(--text);
}

.bonus-text span {
  color: var(--gold);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.bonus-small {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.btn-cta {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--cta-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-cta--gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-cta--gold:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.hero {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.hero-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  border: 1px solid var(--border);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.hero h1 { margin-bottom: 14px; }
.hero h1 em { color: var(--gold); font-style: normal; }

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 24px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-content {
  padding: 48px 0;
}

.section {
  margin-bottom: 48px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 24px 0;
}

.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.info-table th {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  color: var(--gold);
  background: var(--navy-mid);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-table td { color: var(--text); background: rgba(255,255,255,0.02); }
.info-table tr:last-child td { border-bottom: none; }

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pro-con {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.pro-con-box {
  background: var(--navy-mid);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
}

.pro-con-box h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pro-con-box ul {
  padding-left: 0;
  list-style: none;
}

.pro-con-box li {
  padding: 5px 0;
  padding-left: 22px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pros li::before { content: '✓'; position: absolute; left: 0; color: #4caf50; font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: #f44336; font-weight: 700; }

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

.card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,175,55,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card-icon svg { width: 22px; height: 22px; fill: var(--gold); }

.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

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

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

.faq-list { margin-top: 24px; }

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

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

.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  user-select: none;
  gap: 12px;
}

.faq-label:hover { color: var(--gold); }

.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
  color: var(--gold);
  font-size: 0.9rem;
  line-height: 1;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-body-inner {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-item input[type="checkbox"]:checked ~ .faq-label .faq-arrow {
  transform: rotate(180deg);
}

.faq-item input[type="checkbox"]:checked ~ .faq-body {
  max-height: 400px;
}

.steps {
  counter-reset: steps;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.steps li {
  counter-increment: steps;
  padding: 14px 14px 14px 56px;
  position: relative;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.highlight-box {
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 20px 0;
  font-size: 0.95rem;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.rating-row:last-child { border-bottom: none; }

.rating-bar-wrap {
  flex: 1;
  max-width: 200px;
  height: 6px;
  background: var(--navy-light);
  border-radius: 3px;
  margin: 0 14px;
  overflow: hidden;
}

.rating-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}

.rating-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--gold);
  min-width: 32px;
  text-align: right;
}

site-footer {
  display: block;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 28px 0;
  margin-top: 60px;
}

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

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .bonus-banner-inner { flex-direction: column; align-items: flex-start; }
  .btn-cta { width: 100%; text-align: center; }
  .pro-con { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .rating-row { flex-wrap: wrap; gap: 6px; }
  .rating-bar-wrap { max-width: 140px; }
  .steps li { padding-left: 48px; }
}

@media (max-width: 400px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
}
