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

body {
  font-family:
    "Segoe UI",
    Roboto,
    system-ui,
    -apple-system,
    sans-serif;
  background: #0a0c12;
  color: #e8edf5;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: #00ccaa;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #66ffe0;
}

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

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #00ccaa;
  padding-left: 1rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #00ccaa;
  color: #0a0c12;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 40px;
  transition: 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #66ffe0;
  transform: scale(1.02);
}

/* ===== HEADER ===== */
.site-header {
  background: #11161f;
  border-bottom: 1px solid #1f2a36;
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.6rem;
  font-weight: 800;
}
.logo-icon {
  font-size: 1.8rem;
}
.logo a {
  color: #e8edf5;
}
.logo span {
  color: #00ccaa;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger .bar {
  width: 28px;
  height: 3px;
  background: #e8edf5;
  border-radius: 4px;
  transition: 0.3s;
}
.burger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active .bar:nth-child(2) {
  opacity: 0;
}
.burger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-menu ul {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  color: #b0c4d9;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.nav-menu a.active,
.nav-menu a:hover {
  color: #00ccaa;
  border-bottom-color: #00ccaa;
}

/* ===== RESPONSIVE NAV ===== */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  .nav-menu {
    display: none;
    width: 100%;
    background: #11161f;
    padding: 1rem 0;
    border-top: 1px solid #1f2a36;
    margin-top: 0.8rem;
  }
  .nav-menu.open {
    display: block;
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
    padding: 0 1rem;
  }
  .nav-menu a {
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid #1f2a36;
  }
}

/* ===== HERO ===== */
.hero {
  padding: 3rem 0 2rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}
.hero-sub {
  font-size: 1.2rem;
  color: #b0c4d9;
  margin-bottom: 1.2rem;
}
.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #b0c4d9;
}
.hero-image .split-image-placeholder {
  display: flex;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #1f2a36;
  border: 1px solid #2a3a4a;
}
.split-left,
.split-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.5rem;
}
.split-left {
  background: rgba(0, 204, 170, 0.15);
  border-right: 2px solid #00ccaa;
}
.split-right {
  background: rgba(255, 255, 255, 0.05);
}
.split-label {
  font-size: 0.9rem;
  opacity: 0.7;
}
.split-score {
  font-size: 2.4rem;
  color: #00ccaa;
}
.split-stats-overlay {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 12, 18, 0.85);
  padding: 0.3rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  border: 1px solid #00ccaa;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
}

/* ===== COMPARISON TABLE ===== */
.comparison-table-wrap {
  margin-top: 2rem;
  background: #11161f;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid #1f2a36;
}
.table-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.table-scroll {
  overflow-x: auto;
}
.cmp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 600px;
}
.cmp-table th {
  background: #1f2a36;
  color: #b0c4d9;
  padding: 0.7rem 0.5rem;
  text-align: left;
  font-weight: 600;
}
.cmp-table td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid #1f2a36;
}
.cmp-table .highlight {
  color: #00ccaa;
  font-weight: 700;
}
.cmp-table tfoot th {
  background: #0a0c12;
  border-top: 2px solid #00ccaa;
  color: #e8edf5;
}

.analysis-text {
  margin-top: 1.5rem;
  background: #0f141c;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  border-left: 4px solid #00ccaa;
}
.analysis-text h3 {
  margin-bottom: 0.5rem;
  color: #00ccaa;
}
.analysis-text p {
  margin-bottom: 0.8rem;
}

/* ===== REVIEW SECTION ===== */
.review-section {
  padding: 3rem 0;
}
.review-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
.review-main {
  background: #11161f;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #1f2a36;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.review-badge {
  background: #00ccaa;
  color: #0a0c12;
  font-weight: 700;
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  font-size: 1.1rem;
}
.review-tag {
  color: #b0c4d9;
  font-size: 0.9rem;
  background: #1f2a36;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
}
.review-body p {
  margin-bottom: 1rem;
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.pros,
.cons {
  background: #0f141c;
  padding: 1rem 1.2rem;
  border-radius: 16px;
}
.pros h4,
.cons h4 {
  margin-bottom: 0.5rem;
  color: #00ccaa;
}
.pros ul,
.cons ul {
  list-style: none;
  padding-left: 0;
}
.pros li::before {
  content: "✅ ";
}
.cons li::before {
  content: "❌ ";
}
.final-verdict {
  background: #0f141c;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  border-left: 4px solid #00ccaa;
  margin-top: 1rem;
}
.final-verdict h4 {
  color: #00ccaa;
  margin-bottom: 0.3rem;
}

/* Review side cards */
.review-cards-placeholder {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.review-card-mini {
  background: #11161f;
  border: 1px solid #1f2a36;
  border-radius: 16px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.mini-icon {
  font-size: 1.8rem;
}
.mini-name {
  font-weight: 600;
  flex: 1;
}
.mini-rating {
  background: #0a0c12;
  padding: 0.2rem 0.8rem;
  border-radius: 30px;
  font-size: 0.9rem;
  color: #00ccaa;
}
.review-card-mini.note {
  background: #0f141c;
  border-color: #00ccaa;
  color: #b0c4d9;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

/* ===== 3-WAY COMPARISON ===== */
.three-way {
  padding: 3rem 0;
  background: #0f141c;
}
.three-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
}
.three-table-wrap {
  background: #11161f;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid #1f2a36;
}
.three-table th {
  background: #1f2a36;
}
.three-commentary {
  background: #11161f;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid #1f2a36;
}
.three-commentary h3 {
  color: #00ccaa;
  margin-bottom: 0.8rem;
}
.three-commentary p {
  margin-bottom: 0.8rem;
}
.three-cta {
  margin-top: 1rem;
  background: #0a0c12;
  padding: 0.6rem 1rem;
  border-radius: 40px;
  text-align: center;
  border: 1px solid #00ccaa;
}
.three-cta strong {
  color: #00ccaa;
}

@media (max-width: 768px) {
  .three-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== USER REVIEWS ===== */
.user-reviews {
  padding: 3rem 0;
}
.user-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.user-card {
  background: #11161f;
  border-radius: 16px;
  padding: 1.2rem;
  border: 1px solid #1f2a36;
}
.user-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.user-name {
  font-weight: 700;
  color: #e8edf5;
}
.user-rating {
  color: #f5b342;
}
.user-time {
  font-size: 0.8rem;
  color: #b0c4d9;
  margin-left: auto;
}
.user-card p {
  font-size: 0.95rem;
  color: #c8d6e5;
}

@media (max-width: 1024px) {
  .user-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .user-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== VERDICT ===== */
.verdict {
  padding: 3rem 0;
  background: #0f141c;
}
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
}
.verdict-stats {
  background: #11161f;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #1f2a36;
}
.stat-big {
  text-align: center;
  margin-bottom: 1.5rem;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #00ccaa;
  display: block;
  line-height: 1;
}
.stat-label {
  color: #b0c4d9;
  font-size: 0.95rem;
}
.poll-results h4 {
  margin-bottom: 1rem;
}
.poll-bar {
  margin-bottom: 0.8rem;
}
.poll-label {
  display: inline-block;
  width: 100px;
  font-weight: 600;
}
.poll-track {
  display: inline-block;
  width: calc(100% - 110px);
  height: 22px;
  background: #1f2a36;
  border-radius: 30px;
  overflow: hidden;
  vertical-align: middle;
}
.poll-fill {
  height: 100%;
  background: #00ccaa;
  color: #0a0c12;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 22px;
  text-align: right;
  padding-right: 8px;
  border-radius: 30px;
  transition: width 0.6s ease;
}
.verdict-text {
  background: #11161f;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #1f2a36;
}
.verdict-text h3 {
  color: #00ccaa;
  margin-bottom: 1rem;
}
.verdict-text p {
  margin-bottom: 1rem;
}
.verdict-badge {
  background: #00ccaa;
  color: #0a0c12;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  display: inline-block;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .verdict-grid {
    grid-template-columns: 1fr;
  }
  .poll-label {
    width: 70px;
  }
  .poll-track {
    width: calc(100% - 80px);
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: #11161f;
  border-top: 1px solid #1f2a36;
  padding: 2rem 0;
  margin-top: 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
.footer-brand {
  font-size: 1.2rem;
  font-weight: 700;
}
.footer-brand p {
  font-weight: 400;
  font-size: 0.9rem;
  color: #b0c4d9;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: #b0c4d9;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: #00ccaa;
}
.footer-copy {
  font-size: 0.85rem;
  color: #6a7f94;
}

/* ===== TERMS & PRIVACY PAGES (shared) ===== */
.legal-page {
  padding: 3rem 0;
}
.legal-page h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: #00ccaa;
}
.legal-page .last-updated {
  color: #6a7f94;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}
.legal-section {
  background: #11161f;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #00ccaa;
}
.legal-section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #e8edf5;
}
.legal-section p,
.legal-section li {
  color: #c8d6e5;
  margin-bottom: 0.5rem;
}
.legal-section ul {
  padding-left: 1.5rem;
}
