/* 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: #66f0d6;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ===== NAVBAR / BURGER ===== */
.navbar {
  background: #0a0c12;
  border-bottom: 1px solid #1f2a3a;
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
  background: rgba(10, 12, 18, 0.92);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e8edf5;
  letter-spacing: -0.5px;
}
.logo span {
  color: #00ccaa;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0a0c12;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-top: 1px solid #1f2a3a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.1rem;
    border-bottom: none;
    padding: 0.4rem 0;
  }
}

/* ===== SECTIONS ===== */
section {
  padding: 3.5rem 0;
  border-bottom: 1px solid #1a1f2b;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 {
  font-size: 2.2rem;
  color: #f0f5ff;
}
h2 {
  font-size: 2rem;
  color: #f0f5ff;
  border-left: 4px solid #00ccaa;
  padding-left: 1rem;
}
h3 {
  font-size: 1.4rem;
  color: #d0d9e6;
  margin-top: 1.2rem;
}
h4 {
  font-size: 1.1rem;
  color: #b0c0d0;
}

.section-sub {
  color: #8899b0;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ===== HERO ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: #b0c0d0;
  margin-bottom: 1.8rem;
}

.hero-image img {
  border-radius: 16px;
  border: 1px solid #1f2a3a;
  width: 100%;
}
.img-caption {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: #6a7a8a;
  margin-top: 0.4rem;
}

/* ===== TABLES ===== */
.compare-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #10141c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.compare-table th,
.compare-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid #1f2a3a;
}
.compare-table th {
  background: #181e2a;
  color: #00ccaa;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
}
.compare-table td:first-child {
  font-weight: 500;
  color: #c8d0dc;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table tbody tr:hover {
  background: #1a212e;
}

.hero-analysis {
  background: #10141c;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #00ccaa;
  margin-top: 1.5rem;
}
.hero-analysis h3 {
  margin-top: 0;
  color: #00ccaa;
}

/* ===== REVIEW SECTION ===== */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.review-main p {
  margin-bottom: 1rem;
  color: #d0d9e6;
}
.score-box {
  display: inline-flex;
  align-items: baseline;
  background: #00ccaa20;
  border: 1px solid #00ccaa;
  border-radius: 40px;
  padding: 0.5rem 1.8rem;
  margin: 1.2rem 0 1.8rem;
}
.score-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: #00ccaa;
  margin-right: 0.5rem;
}
.score-label {
  font-size: 1.1rem;
  color: #b0c0d0;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.pros,
.cons {
  background: #10141c;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
}
.pros h4 {
  color: #66f0d6;
}
.cons h4 {
  color: #f07a7a;
}
.pros ul,
.cons ul {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}
.pros li::before {
  content: "✔️ ";
  color: #66f0d6;
}
.cons li::before {
  content: "✖️ ";
  color: #f07a7a;
}
.pros li,
.cons li {
  padding: 0.3rem 0;
  border-bottom: 1px solid #1a1f2b;
}
.pros li:last-child,
.cons li:last-child {
  border-bottom: none;
}

.review-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.review-side img {
  border-radius: 12px;
  border: 1px solid #1f2a3a;
}

/* ===== COMPARISON ===== */
.comparison-commentary {
  background: #10141c;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  border-left: 4px solid #00ccaa;
  margin: 2rem 0 1.8rem;
}
.comparison-commentary h3 {
  margin-top: 0;
  color: #00ccaa;
}
.review-cards-image {
  margin-top: 1.5rem;
}
.review-cards-image img {
  border-radius: 16px;
  width: 100%;
  border: 1px solid #1f2a3a;
}

/* ===== USER REVIEWS ===== */
.user-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 1.5rem;
}
.user-card {
  background: #10141c;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #1f2a3a;
  transition: 0.2s;
}
.user-card:hover {
  border-color: #00ccaa;
  transform: translateY(-3px);
}
.user-rating {
  font-weight: 700;
  color: #f5b342;
  margin-bottom: 0.6rem;
}
.user-card blockquote {
  font-style: italic;
  color: #c8d0dc;
  margin: 0.5rem 0 0.8rem;
  padding-left: 0.8rem;
  border-left: 3px solid #00ccaa;
}
.user-card cite {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  color: #8899b0;
}

/* ===== VERDICT ===== */
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.agg-rating {
  background: #10141c;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #1f2a3a;
  margin-bottom: 1.8rem;
}
.agg-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00ccaa;
  display: inline-block;
  margin-right: 0.5rem;
}
.agg-label {
  font-size: 1.1rem;
  color: #b0c0d0;
}
.agg-bar {
  background: #1f2a3a;
  height: 8px;
  border-radius: 8px;
  margin: 0.8rem 0 0.4rem;
}
.agg-bar span {
  display: block;
  height: 100%;
  background: #00ccaa;
  border-radius: 8px;
  width: 0%;
}
.agg-count {
  font-size: 0.9rem;
  color: #6a7a8a;
}

.poll {
  background: #10141c;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid #1f2a3a;
}
.poll h4 {
  margin-top: 0;
  color: #d0d9e6;
}
.poll-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.8rem 0;
  font-size: 0.95rem;
}
.poll-item span:first-child {
  flex: 0 0 150px;
  color: #b0c0d0;
}
.poll-item span:last-child {
  font-weight: 600;
  color: #e8edf5;
  min-width: 40px;
}
.poll-bar {
  flex: 1;
  background: #1f2a3a;
  height: 6px;
  border-radius: 6px;
  overflow: hidden;
}
.poll-bar span {
  display: block;
  height: 100%;
  background: #00ccaa;
  border-radius: 6px;
  width: 0%;
}

.verdict-text {
  background: #10141c;
  padding: 1.8rem;
  border-radius: 16px;
  border: 1px solid #1f2a3a;
}
.verdict-text h3 {
  margin-top: 0;
  color: #00ccaa;
}
.verdict-text p {
  margin-bottom: 1rem;
  color: #d0d9e6;
}
.verdict-tagline {
  font-size: 1.2rem;
  text-align: center;
  border-top: 1px solid #1f2a3a;
  padding-top: 1.2rem;
  margin-top: 1.2rem;
}

/* ===== FOOTER ===== */
footer {
  background: #05070a;
  padding: 2.5rem 0;
  border-top: 1px solid #1a1f2b;
  margin-top: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand .logo {
  font-size: 1.3rem;
}
.footer-brand p {
  color: #6a7a8a;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}
.footer-links h4,
.footer-legal h4 {
  color: #b0c0d0;
  margin-bottom: 0.8rem;
  font-weight: 500;
  font-size: 1rem;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #8899b0;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: #00ccaa;
}
.footer-legal p {
  color: #6a7a8a;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .verdict-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .compare-table th,
  .compare-table td {
    padding: 0.5rem 0.6rem;
    font-size: 0.8rem;
  }
  .poll-item {
    flex-wrap: wrap;
  }
  .poll-item span:first-child {
    flex: 0 0 100%;
  }
}
