* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    sans-serif;
}
body {
  background: #f5f7fa;
  color: #1a1f2e;
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: #0b1424;
  color: white;
  padding: 16px 0;
  border-bottom: 2px solid #3b4a6b;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.logo {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span {
  background: #f5b042;
  color: #0b1424;
  padding: 0 10px;
  border-radius: 40px;
  font-size: 18px;
}
nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 500;
}
nav a {
  color: #d6dbe8;
  transition: 0.2s;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}
nav a:hover {
  color: white;
  border-color: #f5b042;
}

.breadcrumb {
  padding: 18px 0 0;
  font-size: 0.88rem;
  color: #5d6f8c;
}
.breadcrumb a {
  color: #0b1424;
  font-weight: 500;
}
.breadcrumb a:hover {
  color: #f5b042;
}

.review-hero {
  background: linear-gradient(155deg, #070e1a 0%, #12203a 50%, #0b1424 100%);
  padding: 40px 0 48px;
  margin-top: 8px;
}
.review-hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px 40px;
}
.review-hero-logo {
  background: white;
  border-radius: 20px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  min-height: 72px;
}
      .review-hero-logo img {
        height: 48px;
        width: auto;
        max-width: 180px;
        object-fit: contain;
      }
      .review-hero-logo-text {
        font-size: 1.75rem;
        font-weight: 800;
        color: #0b1424;
        letter-spacing: 0.02em;
      }
.review-hero-meta {
  flex: 1 1 280px;
}
.review-hero-meta h1 {
  color: #ffffff;
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
.review-hero-meta .rating {
  color: #f5b042;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.review-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: #f5b042;
  background: rgba(245, 176, 66, 0.12);
  border: 1px solid rgba(245, 176, 66, 0.35);
  padding: 5px 14px;
  border-radius: 30px;
}
.review-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.btn-primary {
  background: #f5b042;
  color: #0b1424;
  border: none;
  padding: 13px 32px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}
.btn-primary:hover {
  background: #ffc85c;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #d6dbe8;
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
}
.btn-outline:hover {
  border-color: #f5b042;
  color: #fff;
}

.disclaimer {
  background: #f0f3f9;
  padding: 16px 20px;
  border-radius: 40px;
  margin: 24px 0;
  font-size: 0.9rem;
  color: #1f2a3e;
  border-left: 4px solid #f5b042;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 28px 0 36px;
}
.score-card {
  background: white;
  border-radius: 20px;
  padding: 18px 16px;
  text-align: center;
  border: 1px solid #eef2f8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.score-card strong {
  display: block;
  font-size: 1.6rem;
  color: #0b1424;
  line-height: 1.2;
}
.score-card span {
  font-size: 0.8rem;
  color: #5d6f8c;
}

.review-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  margin-bottom: 48px;
  align-items: start;
}
.review-main section {
  background: white;
  border-radius: 28px;
  padding: 28px 26px;
  margin-bottom: 20px;
  border: 1px solid #eef2f8;
}
.review-main h2 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 5px solid #f5b042;
}
.review-main p {
  color: #29344b;
  line-height: 1.65;
  margin-bottom: 12px;
}
.review-main p:last-child {
  margin-bottom: 0;
}
.review-main ul {
  margin: 8px 0 0 20px;
  color: #29344b;
  line-height: 1.65;
}
.review-main li {
  margin-bottom: 8px;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.pros-box,
.cons-box {
  border-radius: 20px;
  padding: 18px 20px;
}
.pros-box {
  background: #f0faf4;
  border: 1px solid #b8e6c8;
}
.cons-box {
  background: #fef6f0;
  border: 1px solid #f5d4b8;
}
.pros-box h3,
.cons-box h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.pros-box ul,
.cons-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pros-box li,
.cons-box li {
  padding: 4px 0 4px 22px;
  position: relative;
  font-size: 0.92rem;
}
.pros-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2a8f4a;
  font-weight: 700;
}
.cons-box li::before {
  content: "−";
  position: absolute;
  left: 0;
  color: #c45c2a;
  font-weight: 700;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin-top: 8px;
}
.info-table th {
  text-align: left;
  padding: 10px 12px;
  background: #f0f4fc;
  width: 38%;
}
.info-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e4eaf2;
}

.review-sidebar {
  position: sticky;
  top: 20px;
}
.sidebar-card {
  background: white;
  border-radius: 24px;
  padding: 22px 20px;
  border: 1px solid #eef2f8;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.sidebar-card .info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eef2f8;
  font-size: 0.9rem;
}
.sidebar-card .info-row:last-of-type {
  border-bottom: none;
}
.sidebar-card .info-row span:last-child {
  font-weight: 600;
  text-align: right;
  color: #0b1424;
}
.sidebar-card .btn-primary {
  width: 100%;
  margin-top: 16px;
  text-align: center;
  display: block;
}

.faq-item {
  background: white;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid #eef2f8;
  overflow: hidden;
}
.faq-question {
  padding: 16px 20px;
  font-weight: 600;
  cursor: pointer;
  background: #fafcff;
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}
.faq-question:hover {
  background: #f0f4fc;
}
.faq-answer {
  padding: 0 20px 16px;
  display: none;
  font-size: 0.92rem;
  color: #29344b;
  line-height: 1.6;
}
.faq-answer.open {
  display: block;
}

.verdict-box {
  background: #0b1424;
  color: white;
  border-radius: 28px;
  padding: 28px 26px;
  margin-bottom: 20px;
}
.verdict-box h2 {
  color: #f5b042;
  font-size: 1.45rem;
  margin-bottom: 12px;
  border: none;
  padding: 0;
}
.verdict-box p {
  color: #c8d2e6;
  line-height: 1.65;
}

footer {
  background: #0b1424;
  color: #bcc4db;
  padding: 40px 0 20px;
  margin-top: 30px;
  border-top: 2px solid #253554;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.footer-left {
  max-width: 600px;
}
.footer-left p {
  margin: 12px 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 16px 0;
}
.footer-links a {
  color: #d6dbe8;
  border-bottom: 1px dotted transparent;
}
.footer-links a:hover {
  border-color: #f5b042;
}

@media (max-width: 900px) {
  .review-layout {
    grid-template-columns: 1fr;
  }
  .review-sidebar {
    position: static;
  }
  .review-hero-meta h1 {
    font-size: 1.75rem;
  }
}
