:root {
  --brand-primary: #1a1a2e;
  --brand-secondary: #16213e;
  --brand-accent: #e94560;
  --brand-accent2: #f5a623;
  --brand-light: #f0f4ff;
  --brand-white: #ffffff;
  --brand-text: #1a1a2e;
  --brand-muted: #6b7280;
  --brand-card: #ffffff;
  --brand-border: #e2e8f0;
  --font-main: 'Segoe UI', Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26,26,46,0.10);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

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

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

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

/* ── HEADER ── */
.site-header {
  background: var(--brand-primary);
  color: var(--brand-white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-white);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.logo-text span { color: var(--brand-accent2); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--brand-accent);
  color: var(--brand-white);
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 1.1rem;
}

.main-nav { width: 100%; }

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 2px;
  padding: 0 0 8px 0;
}

.main-nav ul li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  display: block;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: var(--brand-accent);
  color: var(--brand-white);
}

/* ── BONUS BANNER ── */
.bonus-banner {
  background: linear-gradient(135deg, var(--brand-accent) 0%, #c0392b 50%, var(--brand-accent2) 100%);
  color: var(--brand-white);
  text-align: center;
  padding: 28px 16px;
  position: relative;
  overflow: hidden;
}

.bonus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bonus-banner .bonus-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: relative;
}

.bonus-banner .bonus-sub {
  font-size: 1rem;
  margin-bottom: 18px;
  opacity: 0.95;
  position: relative;
}

.bonus-banner .badge {
  display: inline-block;
  background: var(--brand-white);
  color: var(--brand-accent);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  position: relative;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
  position: relative;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--brand-white);
  color: var(--brand-accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  background: var(--brand-accent2);
  color: var(--brand-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,69,96,0.3);
}

.btn-accent {
  background: var(--brand-accent);
  color: var(--brand-white);
  box-shadow: 0 4px 20px rgba(233,69,96,0.3);
}

.btn-accent:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,69,96,0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--brand-accent2), #e08c00);
  color: var(--brand-white);
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.5);
}

/* ── MAIN CONTENT ── */
.main-content { padding: 40px 0 60px; }

.section { margin-bottom: 48px; }

.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--brand-accent);
}

.section-title-sm {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin: 24px 0 12px;
}

p { margin-bottom: 14px; }

ul, ol { padding-left: 22px; margin-bottom: 14px; }
li { margin-bottom: 6px; }

/* ── CARDS ── */
.cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

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

.card {
  background: var(--brand-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
  border: 1px solid var(--brand-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,26,46,0.14);
}

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

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 10px;
}

.card-text { font-size: 0.95rem; color: var(--brand-muted); }

/* ── RATING BLOCK ── */
.rating-block {
  background: var(--brand-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 32px;
  border: 1px solid var(--brand-border);
}

.rating-stars { color: var(--brand-accent2); font-size: 1.6rem; margin-bottom: 8px; }
.rating-score { font-size: 2.4rem; font-weight: 900; color: var(--brand-accent); }
.rating-label { font-size: 0.9rem; color: var(--brand-muted); }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 20px 0;
}

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

.pros, .cons {
  background: var(--brand-white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--brand-border);
}

.pros { border-top: 4px solid #22c55e; }
.cons { border-top: 4px solid var(--brand-accent); }

.pros h3, .cons h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pros h3 { color: #16a34a; }
.cons h3 { color: var(--brand-accent); }

.pros ul li::before { content: '✓ '; color: #16a34a; font-weight: 700; }
.cons ul li::before { content: '✗ '; color: var(--brand-accent); font-weight: 700; }
.pros ul, .cons ul { padding-left: 0; list-style: none; }
.pros ul li, .cons ul li { margin-bottom: 7px; font-size: 0.95rem; }

/* ── TABLES ── */
.table-scroll {
  overflow-x: auto;
  margin-bottom: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--brand-white);
  font-size: 0.93rem;
}

thead {
  background: var(--brand-primary);
  color: var(--brand-white);
}

thead th {
  padding: 13px 16px;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}

tbody tr { border-bottom: 1px solid var(--brand-border); }
tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(even) { background: #f8faff; }

tbody td {
  padding: 12px 16px;
  vertical-align: top;
}

/* ── CHECKLIST ── */
.checklist {
  background: var(--brand-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  border-left: 4px solid var(--brand-accent);
  margin-bottom: 24px;
}

.checklist-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--brand-primary);
}

.checklist ul { padding-left: 0; list-style: none; }
.checklist ul li {
  padding: 6px 0;
  border-bottom: 1px solid var(--brand-border);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checklist ul li:last-child { border-bottom: none; }
.checklist ul li::before {
  content: '☑';
  color: var(--brand-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FAQ ACCORDION (CSS only) ── */
.faq-section { margin-bottom: 48px; }

.faq-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--brand-accent);
}

.faq-item { margin-bottom: 8px; }

.faq-item input[type="checkbox"] { display: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--brand-primary);
  transition: background 0.2s;
  user-select: none;
  gap: 12px;
}

.faq-question:hover { background: #f8faff; }

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

.faq-item input:checked ~ .faq-question::after { transform: rotate(45deg); }
.faq-item input:checked ~ .faq-question { background: #fff5f7; border-color: var(--brand-accent); border-radius: var(--radius) var(--radius) 0 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.faq-item input:checked ~ .faq-answer { max-height: 400px; }

.faq-answer-inner { padding: 16px 20px; font-size: 0.95rem; color: var(--brand-muted); line-height: 1.7; }

/* ── INLINE BANNER ── */
.inline-banner {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-primary) 100%);
  border-radius: var(--radius);
  color: var(--brand-white);
  padding: 32px 24px;
  text-align: center;
  margin: 40px 0;
  box-shadow: var(--shadow);
}

.inline-banner .banner-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.inline-banner .banner-sub { font-size: 0.97rem; margin-bottom: 20px; opacity: 0.9; }

/* ── INFO BOXES ── */
.info-box {
  background: var(--brand-white);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
  border-left: 4px solid var(--brand-accent2);
  box-shadow: var(--shadow);
}

.info-box-title { font-weight: 700; margin-bottom: 8px; color: var(--brand-primary); }

/* ── REVIEW BLOCK ── */
.review-block {
  background: var(--brand-white);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--brand-border);
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.review-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-avatar {
  width: 40px; height: 40px;
  background: var(--brand-accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.95rem; }
.review-stars { color: var(--brand-accent2); font-size: 0.85rem; }
.review-text { font-size: 0.93rem; color: var(--brand-muted); }

/* ── FOOTER ── */
.site-footer {
  background: var(--brand-primary);
  color: rgba(255,255,255,0.75);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand .logo-text { color: var(--brand-white); }
.footer-brand p { margin-top: 12px; font-size: 0.88rem; line-height: 1.7; }

.footer-nav h4 {
  color: var(--brand-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-nav ul { list-style: none; padding: 0; }
.footer-nav ul li { margin-bottom: 8px; }
.footer-nav ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color 0.2s; }
.footer-nav ul li a:hover { color: var(--brand-accent2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.age-badge {
  display: inline-block;
  background: var(--brand-accent);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 6px;
  margin-right: 8px;
}

/* ── HERO INTRO ── */
.hero-intro {
  background: var(--brand-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--brand-border);
}

.hero-intro h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-intro .lead {
  font-size: 1.05rem;
  color: var(--brand-muted);
  line-height: 1.8;
}

.page-h1 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 767px) {
  .hero-intro h1, .page-h1 { font-size: 1.5rem; }
  .section-title { font-size: 1.25rem; }
  .bonus-banner .bonus-title { font-size: 1.15rem; }
  .btn { padding: 12px 24px; font-size: 0.95rem; }
  .rating-score { font-size: 1.8rem; }
}

@media (min-width: 768px) {
  .header-inner { flex-wrap: nowrap; }
  .main-nav { width: auto; }
  .main-nav ul { padding-bottom: 0; }
}

/* ── PAGE SPECIFIC ── */
.steps-list { list-style: none; padding: 0; counter-reset: steps; }
.steps-list li {
  counter-increment: steps;
  padding: 14px 16px 14px 60px;
  position: relative;
  background: var(--brand-white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  border: 1px solid var(--brand-border);
  font-size: 0.95rem;
}
.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  background: var(--brand-accent);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.highlight-box {
  background: linear-gradient(135deg, #fff5f7 0%, #fff9f0 100%);
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  background: var(--brand-accent);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-right: 6px;
  margin-bottom: 6px;
}

.tag-green { background: #22c55e; }
.tag-blue { background: #3b82f6; }
.tag-gold { background: var(--brand-accent2); }