/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark: #0d0f1a;
  --bg-card: #161929;
  --bg-card-hover: #1c2038;
  --accent: #f5a623;
  --accent-hover: #ffc040;
  --text: #e0e0e0;
  --text-muted: #8a8fa8;
  --text-heading: #ffffff;
  --border: #2a2e45;
  --green: #2ecc71;
  --red: #e74c3c;
  --blue: #3498db;
  --purple: #9b59b6;
  --gradient-hero: linear-gradient(135deg, #1a1f3a 0%, #0d0f1a 50%, #1a0f2e 100%);
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --radius: 12px;
  --max-w: 1200px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

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

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

/* === HEADER === */
.site-header {
  background: rgba(13,15,26,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: 1px;
}
.logo span { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

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

.main-nav a {
  display: block;
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--text-heading);
  background: rgba(245,166,35,.1);
}
.main-nav a.active { color: var(--accent); }

/* === HERO === */
.hero {
  background: var(--gradient-hero);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(245,166,35,.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(155,89,182,.06) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-2%,2%); }
}

.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero h1 span { color: var(--accent); }

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  border: 1px solid var(--border);
  background: rgba(22,25,41,.8);
}
.badge--gold { border-color: var(--accent); color: var(--accent); }
.badge--green { border-color: var(--green); color: var(--green); }
.badge--blue { border-color: var(--blue); color: var(--blue); }
.badge--purple { border-color: var(--purple); color: var(--purple); }

/* === CONTENT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 20px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* === CARDS GRID === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245,166,35,.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.card h3 {
  color: var(--text-heading);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

.card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--accent);
}
.card-link:hover { color: var(--accent-hover); }

/* === INFO BOX === */
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 32px;
}
.info-box h3 {
  color: var(--text-heading);
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.info-box--accent { border-left: 4px solid var(--accent); }
.info-box--green { border-left: 4px solid var(--green); }
.info-box--red { border-left: 4px solid var(--red); }
.info-box--blue { border-left: 4px solid var(--blue); }
.info-box--purple { border-left: 4px solid var(--purple); }

/* === TABLE === */
.table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}
thead { background: rgba(245,166,35,.08); }
th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  color: var(--accent);
  font-size: .9rem;
  white-space: nowrap;
}
td {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  font-size: .9rem;
}
tr:hover { background: var(--bg-card-hover); }

/* === STAT ROW === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}
.stat-label {
  color: var(--text-muted);
  font-size: .85rem;
  margin-top: 6px;
}

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

.pros, .cons {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid var(--red); }

.pros h3, .cons h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text-heading);
}

.pros li, .cons li {
  list-style: none;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: .92rem;
}
.pros li::before { content: '+'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons li::before { content: '-'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* === FAQ === */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-heading);
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--bg-card-hover); }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--accent); transition: transform var(--transition); }
.faq-item.open .faq-q::after { content: '-'; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 18px;
}

/* === REVIEW CARD === */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.review-card.positive { border-left: 4px solid var(--green); }
.review-card.negative { border-left: 4px solid var(--red); }

.review-text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 10px;
}
.review-meta {
  font-size: .82rem;
  color: var(--text-muted);
}

/* === RATING BAR === */
.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.rating-bar-label {
  min-width: 120px;
  font-size: .9rem;
  color: var(--text-muted);
}
.rating-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--accent);
  transition: width .6s ease;
}
.rating-bar-value {
  min-width: 40px;
  text-align: right;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-heading);
}

/* === PROMO CODE BOX === */
.promo-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(245,166,35,.08);
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.promo-code {
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--bg-dark);
  padding: 6px 16px;
  border-radius: 6px;
  letter-spacing: 2px;
}
.promo-desc {
  flex: 1;
  min-width: 200px;
}
.promo-desc strong { color: var(--text-heading); }

/* === BREADCRUMB === */
.breadcrumb {
  padding: 16px 0;
  font-size: .85rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; }

/* === TAGS === */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  margin: 2px;
}
.tag--gold { background: rgba(245,166,35,.15); color: var(--accent); }
.tag--green { background: rgba(46,204,113,.15); color: var(--green); }
.tag--blue { background: rgba(52,152,219,.15); color: var(--blue); }
.tag--purple { background: rgba(155,89,182,.15); color: var(--purple); }
.tag--red { background: rgba(231,76,60,.15); color: var(--red); }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, rgba(245,166,35,.12) 0%, rgba(155,89,182,.08) 100%);
  border: 1px solid rgba(245,166,35,.25);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}
.cta-banner h3 {
  font-size: 1.5rem;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 20px;
}
.cta-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-links a {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}
.btn-primary:hover { background: var(--accent-hover); color: var(--bg-dark); }
.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: rgba(245,166,35,.1); }

/* === FOOTER === */
.site-footer {
  background: rgba(13,15,26,.95);
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .88rem;
  margin-top: 10px;
}

.footer-col h4 {
  color: var(--text-heading);
  font-size: .95rem;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-muted);
  font-size: .88rem;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: .82rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(13,15,26,.98);
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    padding: 10px 20px;
  }

  .hero h1 { font-size: 1.8rem; }

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

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

  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero { padding: 50px 16px 40px; }
  .cta-banner { padding: 24px 16px; }
}
