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

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    sans-serif;
  background: #0a0c12;
  color: #e8edf5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #00ccaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-sub {
  font-size: 1.1rem;
  color: #8a94a6;
  margin-bottom: 2.5rem;
  border-left: 3px solid #00ccaa;
  padding-left: 16px;
}

.highlight {
  color: #00ccaa;
  font-weight: 700;
}

/* ============================
   HEADER / NAVIGATION
   ============================ */
.site-header {
  background: #0f131c;
  border-bottom: 1px solid #1e2633;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(6px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.logo span {
  color: #00ccaa;
  font-weight: 300;
}

.main-nav ul {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #b0baca;
  transition: color 0.2s ease;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: #00ccaa;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00ccaa;
  border-radius: 4px;
}

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
}

.burger span {
  display: block;
  width: 28px;
  height: 3px;
  background: #e8edf5;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  padding: 60px 0 70px;
  background: radial-gradient(ellipse at 30% 20%, #15202b 0%, #0a0c12 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-text .hero-badge {
  display: inline-block;
  background: rgba(0, 204, 170, 0.12);
  border: 1px solid rgba(0, 204, 170, 0.25);
  color: #00ccaa;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.hero-text h1 {
  font-size: 3.2rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 60%, #00ccaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.15rem;
  color: #c8d0de;
  margin-bottom: 24px;
}

.score-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid #1e2633;
  margin-bottom: 28px;
}

.score-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 0.95rem;
}

.score-item span {
  color: #8a94a6;
}

.score-item strong {
  font-size: 1.2rem;
  color: #00ccaa;
  font-weight: 700;
}

.hero-text-full {
  color: #b8c2d4;
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid #1e2633;
  background: #10161f;
  aspect-ratio: 6/5;
  object-fit: cover;
}

/* ============================
   COMPARISON TABLE
   ============================ */
.comparison {
  padding: 70px 0;
  border-top: 1px solid #1a212e;
}

.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #1e2633;
  background: #0f131c;
}

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

.compare-table th {
  background: #141b26;
  color: #c8d0de;
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid #00ccaa;
}

.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #1a212e;
  color: #b0baca;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table .highlight {
  color: #00ccaa;
  font-weight: 700;
}

.commentary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  background: #0f131c;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #1e2633;
}

.commentary-card {
  background: #141b26;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: #c0cada;
  border-left: 3px solid #00ccaa;
}

.comparison-image {
  margin-top: 10px;
}

.cmp-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #1e2633;
  background: #10161f;
  aspect-ratio: 9/4;
  object-fit: cover;
}

/* ============================
   USER REVIEWS
   ============================ */
.reviews {
  padding: 70px 0;
  background: #0d111a;
  border-top: 1px solid #1a212e;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: #0f131c;
  border: 1px solid #1e2633;
  border-radius: 16px;
  padding: 22px;
  transition: border-color 0.2s ease;
}

.review-card:hover {
  border-color: #00ccaa44;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #0a0c12;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  color: #e8edf5;
}

.review-stars {
  color: #f5c542;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.platform {
  margin-left: auto;
  background: #1a212e;
  padding: 2px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  color: #8a94a6;
}

.review-quote {
  font-size: 0.95rem;
  color: #c8d0de;
  line-height: 1.5;
  margin-bottom: 10px;
  font-style: italic;
}

.review-meta {
  font-size: 0.8rem;
  color: #6a7486;
  display: flex;
  gap: 16px;
}

/* ============================
   RANKINGS
   ============================ */
.rankings {
  padding: 70px 0;
  border-top: 1px solid #1a212e;
}

.rankings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.ranking-block {
  background: #0f131c;
  border: 1px solid #1e2633;
  border-radius: 16px;
  padding: 24px;
}

.ranking-block h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #00ccaa;
  border-bottom: 1px solid #1a212e;
  padding-bottom: 10px;
}

.ranking-block ol {
  list-style: none;
  counter-reset: rank;
  margin-bottom: 14px;
}

.ranking-block ol li {
  counter-increment: rank;
  font-size: 0.92rem;
  padding: 8px 0;
  border-bottom: 1px solid #141b26;
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.ranking-block ol li::before {
  content: counter(rank) ".";
  font-weight: 700;
  color: #00ccaa;
  margin-right: 6px;
}

.rank-pos {
  display: none; /* using ::before instead */
}

.rank-score {
  margin-left: auto;
  background: #1a212e;
  padding: 0 10px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: #00ccaa;
  font-weight: 700;
}

.rank-explain {
  font-size: 0.88rem;
  color: #9aa4b6;
  line-height: 1.5;
  background: #141b26;
  padding: 12px 16px;
  border-radius: 10px;
  border-left: 3px solid #00ccaa;
}

.rankings-image {
  margin-top: 10px;
}

.rank-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #1e2633;
  background: #10161f;
  aspect-ratio: 9/2;
  object-fit: cover;
}

/* ============================
   VERDICT
   ============================ */
.verdict {
  padding: 70px 0;
  background: #0d111a;
  border-top: 1px solid #1a212e;
  border-bottom: 1px solid #1a212e;
}

.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.verdict-pros h3,
.verdict-cons h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #e8edf5;
}

.verdict-pros h3::before {
  content: "✅ ";
}

.verdict-cons h3::before {
  content: "❌ ";
}

.verdict-pros ul,
.verdict-cons ul {
  list-style: none;
}

.verdict-pros ul li,
.verdict-cons ul li {
  padding: 8px 0;
  border-bottom: 1px solid #141b26;
  font-size: 0.95rem;
  color: #c8d0de;
}

.verdict-pros ul li::before {
  content: "+ ";
  color: #00ccaa;
  font-weight: 700;
}

.verdict-cons ul li::before {
  content: "− ";
  color: #ff6b6b;
  font-weight: 700;
}

.verdict-summary {
  background: #0f131c;
  border: 1px solid #1e2633;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.verdict-summary p {
  font-size: 1.05rem;
  color: #c8d0de;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 24px;
}

.verdict-score {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: #141b26;
  padding: 12px 28px;
  border-radius: 100px;
  border: 1px solid #00ccaa44;
}

.verdict-score span {
  color: #8a94a6;
  font-weight: 500;
}

.verdict-score strong {
  font-size: 2rem;
  color: #00ccaa;
  font-weight: 800;
}

.verdict-label {
  background: #00ccaa;
  color: #0a0c12;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* ============================
   LEGAL PAGES (terms & privacy)
   ============================ */
.legal-page {
  padding: 60px 0 80px;
  min-height: 70vh;
}

.legal-container {
  max-width: 820px;
}

.legal-container h1 {
  font-size: 2.8rem;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #fff 60%, #00ccaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-sub {
  color: #6a7486;
  font-size: 0.9rem;
  margin-bottom: 40px;
  border-bottom: 1px solid #1a212e;
  padding-bottom: 20px;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-size: 1.4rem;
  color: #00ccaa;
  margin-bottom: 12px;
}

.legal-section p {
  color: #b8c2d4;
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #1a212e;
  color: #6a7486;
  font-style: italic;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: #070a0f;
  border-top: 1px solid #1a212e;
  padding: 40px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col .logo {
  display: inline-block;
  margin-bottom: 8px;
}

.footer-col p {
  color: #6a7486;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1rem;
  color: #e8edf5;
  margin-bottom: 12px;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul a {
  color: #8a94a6;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: #00ccaa;
}

.footer-bottom {
  border-top: 1px solid #141b26;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #4a5466;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 2.6rem;
  }

  .comparison-image .cmp-img {
    aspect-ratio: 16/9;
  }

  .rankings-image .rank-img {
    aspect-ratio: 16/5;
  }
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    background: #0f131c;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px 24px;
    border-bottom: 1px solid #1e2633;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 14px;
  }

  .header-container {
    flex-wrap: wrap;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .score-breakdown {
    gap: 10px 20px;
    padding: 16px;
  }

  .score-item {
    font-size: 0.85rem;
  }

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

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

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

  .verdict-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .verdict-score {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    padding: 12px 18px;
  }

  .verdict-score strong {
    font-size: 1.6rem;
  }

  .legal-container h1 {
    font-size: 2.2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .compare-table {
    font-size: 0.78rem;
    min-width: 560px;
  }

  .compare-table th,
  .compare-table td {
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 40px 0 50px;
  }

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

  .hero-lead {
    font-size: 1rem;
  }

  .score-breakdown {
    flex-direction: column;
    gap: 6px;
    padding: 14px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .compare-table {
    font-size: 0.7rem;
    min-width: 440px;
  }

  .compare-table th,
  .compare-table td {
    padding: 6px 8px;
  }

  .review-card {
    padding: 16px;
  }

  .verdict-summary {
    padding: 20px;
  }

  .verdict-summary p {
    font-size: 0.95rem;
  }

  .legal-container h1 {
    font-size: 1.8rem;
  }
}
