@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

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

:root {
  --gold: #F5A623;
  --gold-light: #FFD166;
  --gold-dark: #C8841A;
  --green: #1DB954;
  --green-dark: #17A348;
  --bg-dark: #0D1117;
  --bg-card: #161C26;
  --bg-card2: #1E2738;
  --text-main: #E8EAF0;
  --text-muted: #8A93A8;
  --text-white: #FFFFFF;
  --border: #2A3348;
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html { scroll-behavior: smooth; }

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

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

img { display: none; }

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

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
  text-decoration: none;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,166,35,0.5);
  color: #000;
}
.btn-cta-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(29,185,84,0.35);
}
.btn-cta-green:hover {
  box-shadow: 0 8px 30px rgba(29,185,84,0.5);
  color: #fff;
}

.top-bar {
  background: linear-gradient(90deg, #0a0e16 0%, #1a2235 50%, #0a0e16 100%);
  border-bottom: 2px solid var(--gold);
  padding: 12px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-white);
}
.top-bar-text span { color: var(--gold); }

header {
  background: linear-gradient(180deg, #080c14 0%, #0D1117 100%);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: var(--text-white);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.logo-text span { color: var(--gold); }
.logo-sub {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}

nav {
  background: #111827;
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow-x: auto;
}
nav::-webkit-scrollbar { height: 3px; }
nav::-webkit-scrollbar-track { background: #111; }
nav::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
}
.nav-inner a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-inner a:hover,
.nav-inner a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-icon {
  font-size: 16px;
}

.hero {
  background: linear-gradient(135deg, #0a0e16 0%, #0f1a2e 40%, #0a0e16 100%);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 5vw, 54px);
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-rating-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-rating-score {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--gold);
}
.hero-rating-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.bonus-banner-strip {
  background: linear-gradient(90deg, #1a2800 0%, #1e3d00 30%, #1a2800 100%);
  border-top: 1px solid rgba(29,185,84,0.3);
  border-bottom: 1px solid rgba(29,185,84,0.3);
  padding: 18px 0;
  text-align: center;
}
.bonus-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.bonus-strip-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-white);
}
.bonus-strip-text strong { color: var(--green); }

section { padding: 60px 0; }
section + section { padding-top: 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 34px);
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 12px;
}
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.3;
}
p { color: var(--text-main); margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

.score-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.score-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.score-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.score-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.score-bar {
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  margin-top: 12px;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  transition: width 0.5s;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.card-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}
.card h3 { font-size: 16px; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--text-muted); margin: 0; }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.pros-box, .cons-box {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
}
.pros-box { border: 1px solid rgba(29,185,84,0.3); }
.cons-box { border: 1px solid rgba(255,80,80,0.2); }
.pros-box h3 { color: var(--green); }
.cons-box h3 { color: #FF6B6B; }
.pros-cons-list { list-style: none; margin-top: 16px; }
.pros-cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.pros-cons-list li:last-child { border-bottom: none; }
.pros-cons-list .mark { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.bonus-card {
  background: linear-gradient(135deg, #1a1200 0%, #1e1a00 50%, #1a1200 100%);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '🎁';
  position: absolute;
  right: 24px; top: 20px;
  font-size: 60px;
  opacity: 0.12;
}
.bonus-card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 8px;
}
.bonus-card-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.bonus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.bonus-tag {
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
  background: var(--bg-card);
}
thead tr { background: var(--bg-card2); }
th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
td {
  padding: 13px 18px;
  font-size: 14px;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
}
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.badge-yes { color: var(--green); font-weight: 700; }
.badge-no { color: #FF6B6B; font-weight: 700; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
  counter-reset: steps;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  counter-increment: steps;
}
.step::before {
  content: counter(steps);
  position: absolute;
  top: -14px; left: 22px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 28px;
  text-align: center;
}
.step h3 { font-size: 15px; padding-top: 6px; }
.step p { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

.faq { margin-top: 32px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg-card);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-white);
  user-select: none;
  gap: 12px;
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-arrow {
  font-style: normal;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 22px 18px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open { border-color: rgba(245,166,35,0.35); }

.review-text { max-width: 820px; }
.review-text p { margin-bottom: 18px; font-size: 15px; line-height: 1.8; }
.review-text h3 { margin: 32px 0 12px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.info-list { list-style: none; margin-top: 16px; }
.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  gap: 12px;
  flex-wrap: wrap;
}
.info-list li:last-child { border-bottom: none; }
.info-key { color: var(--text-muted); flex-shrink: 0; }
.info-val { color: var(--text-white); font-weight: 600; text-align: right; }

.author-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.author-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: #000;
  flex-shrink: 0;
}
.author-info h3 { font-size: 16px; margin-bottom: 4px; }
.author-role { font-size: 12px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700; display: block; margin-bottom: 8px; }
.author-bio { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

footer {
  background: #070a10;
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.7;
}
.footer-nav h4, .footer-info h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-nav ul, .footer-info ul { list-style: none; }
.footer-nav li, .footer-info li {
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 11px;
  color: #555e6e;
  max-width: 780px;
  line-height: 1.6;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(245,166,35,0.08), rgba(245,166,35,0.03));
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 28px 0;
}
.highlight-box p { margin: 0; font-size: 15px; }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.payment-icon { font-size: 22px; }

.center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

.section-head { margin-bottom: 32px; }

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb span { color: var(--text-muted); margin: 0 6px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--text-main); }

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 40px 0 36px; }
  .hero-rating { gap: 16px; }
  .hero-rating-score { font-size: 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .author-box { flex-direction: column; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .score-board { grid-template-columns: 1fr 1fr; }
  section { padding: 40px 0; }
  .bonus-card { padding: 22px 18px; }
  .bonus-card-title { font-size: 20px; }
  .table-wrap { -webkit-overflow-scrolling: touch; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 400px) {
  .cards-grid { grid-template-columns: 1fr; }
  .score-board { grid-template-columns: 1fr; }
  .bonus-strip-inner { flex-direction: column; gap: 12px; }
}
