:root {
  --color-bg: #0a0e1a;
  --color-surface: #111827;
  --color-surface2: #1a2235;
  --color-accent: #e8a020;
  --color-accent2: #ff6a00;
  --color-text: #e8eaf0;
  --color-text-muted: #9aa0b0;
  --color-border: #2a3347;
  --color-success: #22c55e;
  --color-heading: #ffffff;
  --font-main: 'Segoe UI', Arial, sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --max-width: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent2); text-decoration: underline; }

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 18px;
}

/* ===== HEADER ===== */
.site-header {
  background: #0d1322;
  border-bottom: 2px solid var(--color-accent);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.6);
}

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

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

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e8a020, #ff6a00);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #0a0e1a;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(232,160,32,0.4);
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

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

/* ===== NAV ===== */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 1.3rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--color-accent);
  color: #0a0e1a;
  text-decoration: none;
}

/* ===== BONUS BANNER ===== */
.bonus-banner {
  background: linear-gradient(100deg, #1a0a00 0%, #2d1500 40%, #1a0a00 100%);
  border-top: 3px solid var(--color-accent);
  border-bottom: 3px solid var(--color-accent2);
  padding: 22px 18px;
  text-align: center;
}

.bonus-banner .bb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.bonus-banner .bb-label {
  display: inline-block;
  background: var(--color-accent);
  color: #0a0e1a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
}

.bonus-banner .bb-title {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 900;
  color: var(--color-heading);
  line-height: 1.2;
}

.bonus-banner .bb-title strong { color: var(--color-accent); }

.bonus-banner .bb-sub {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent2));
  color: #0a0e1a;
  font-size: 1rem;
  font-weight: 800;
  padding: 14px 38px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(232,160,32,0.4);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  letter-spacing: 0.03em;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 28px rgba(232,160,32,0.6);
  filter: brightness(1.08);
  color: #0a0e1a;
  text-decoration: none;
}

.btn-sm {
  padding: 9px 24px;
  font-size: 0.88rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--color-accent);
  color: #0a0e1a;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  padding: 36px 0 48px;
}

.content-body {
  max-width: 860px;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

/* ===== HEADINGS ===== */
h1, h2, h3 {
  font-family: var(--font-main);
  color: var(--color-heading);
  line-height: 1.25;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

h1 .accent { color: var(--color-accent); }

h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-border);
}

h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  margin: 22px 0 10px;
  color: var(--color-accent);
}

p { margin-bottom: 14px; }

ul, ol {
  margin: 12px 0 18px 22px;
}

ul li, ol li {
  margin-bottom: 7px;
}

/* ===== RATING BLOCK ===== */
.rating-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rating-score {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}

.rating-stars {
  font-size: 1.4rem;
  color: var(--color-accent);
  letter-spacing: 2px;
}

.rating-info {
  flex: 1;
  min-width: 180px;
}

.rating-info h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--color-heading);
}

.rating-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.rating-bar-label { width: 120px; flex-shrink: 0; }

.rating-bar {
  flex: 1;
  height: 7px;
  background: var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent2));
  border-radius: 10px;
}

.rating-val { width: 32px; text-align: right; font-weight: 700; color: var(--color-text); }

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

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

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== TABLE ===== */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0 24px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.9rem;
}

thead tr {
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent2));
}

thead th {
  padding: 12px 14px;
  text-align: left;
  font-weight: 800;
  color: #0a0e1a;
  white-space: nowrap;
}

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

tbody tr:last-child { border-bottom: none; }

tbody tr:hover { background: var(--color-surface2); }

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

tbody tr:nth-child(even) { background: rgba(26,34,53,0.5); }

/* ===== FAQ ACCORDION ===== */
.faq-section { margin: 36px 0; }

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

.faq-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--color-heading);
  transition: background 0.2s;
  gap: 12px;
}

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

.faq-icon {
  font-size: 1.3rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 20px;
}

.faq-body p { margin: 0; padding: 0 0 16px; font-size: 0.93rem; color: var(--color-text-muted); }

.faq-item input[type="checkbox"]:checked ~ .faq-label { background: var(--color-surface2); }
.faq-item input[type="checkbox"]:checked ~ .faq-label .faq-icon { transform: rotate(45deg); }
.faq-item input[type="checkbox"]:checked ~ .faq-body { max-height: 400px; padding-top: 12px; }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.sidebar-card .sc-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-accent);
}

.sidebar-list { list-style: none; margin: 0; padding: 0; }

.sidebar-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.87rem;
}

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

.sidebar-list .sl-label { color: var(--color-text-muted); }
.sidebar-list .sl-val { color: var(--color-text); font-weight: 700; }

.badge {
  display: inline-block;
  background: var(--color-accent);
  color: #0a0e1a;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 20px;
}

.badge-green { background: var(--color-success); }

/* ===== CHECKLIST ===== */
.checklist {
  list-style: none;
  margin: 14px 0 20px;
  padding: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.92rem;
  margin: 0;
}

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

.checklist li::before {
  content: "✓";
  color: var(--color-success);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== STEPS ===== */
.steps-list {
  list-style: none;
  counter-reset: step-counter;
  margin: 14px 0 20px;
  padding: 0;
}

.steps-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
  counter-increment: step-counter;
}

.steps-list li::before {
  content: counter(step-counter);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent2));
  color: #0a0e1a;
  font-weight: 900;
  font-size: 0.88rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(100deg, #1a2235 0%, #0d1a2e 100%);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 18px 0 22px;
}

.highlight-box p { margin: 0; font-size: 0.95rem; color: var(--color-text); }

/* ===== SECOND BANNER ===== */
.mid-banner {
  background: linear-gradient(110deg, #12060a 0%, #2a1000 50%, #12060a 100%);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  margin: 36px 0;
}

.mid-banner .mb-tag {
  display: inline-block;
  background: var(--color-accent2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.mid-banner h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  color: var(--color-heading);
  border: none;
  margin: 0 0 8px;
  padding: 0;
}

.mid-banner p {
  color: var(--color-text-muted);
  margin: 0 0 18px;
  font-size: 0.92rem;
}

/* ===== PROVIDER GRID ===== */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.provider-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 10px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  transition: border-color 0.2s;
}

.provider-item:hover { border-color: var(--color-accent); }

/* ===== FOOTER ===== */
.site-footer {
  background: #080c16;
  border-top: 2px solid var(--color-border);
  padding: 44px 0 24px;
  margin-top: 48px;
}

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

.footer-brand .logo-text { font-size: 1rem; margin-bottom: 10px; }

.footer-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.footer-nav { list-style: none; padding: 0; margin: 0; }

.footer-nav li { margin-bottom: 8px; }

.footer-nav a {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--color-accent); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: #5a6070;
  line-height: 1.5;
  margin-top: 14px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--color-text-muted);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--color-text-muted);
}

/* ===== PROS/CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 18px 0 24px;
}

.pros-box, .cons-box {
  border-radius: var(--radius);
  padding: 18px;
}

.pros-box {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
}

.cons-box {
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.2);
}

.pros-box h3, .cons-box h3 {
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.pros-box h3 { color: var(--color-success); }
.cons-box h3 { color: #ef4444; }

.pros-box ul, .cons-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-box li, .cons-box li {
  font-size: 0.88rem;
  padding: 5px 0;
  display: flex;
  gap: 8px;
  margin: 0;
}

.pros-box li::before { content: "✓"; color: var(--color-success); font-weight: 900; }
.cons-box li::before { content: "✗"; color: #ef4444; font-weight: 900; }

/* ===== INFO GRID ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin: 18px 0 24px;
}

.info-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px;
}

.info-item .ii-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.info-item .ii-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-heading);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .header-inner { flex-wrap: wrap; }

  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0d1322;
    border-top: 1px solid var(--color-border);
    padding: 8px 0;
  }

  .site-nav.open { display: flex; }

  .site-nav a {
    padding: 10px 18px;
    border-radius: 0;
    font-size: 0.95rem;
  }

  .cards-grid { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
}

@media (max-width: 420px) {
  .btn { padding: 12px 24px; font-size: 0.93rem; }
  .rating-block { flex-direction: column; align-items: flex-start; }
}