:root {
  --bg: #0f172a;
  --panel: #ffffff;
  --panel-soft: #f8fafc;
  --text: #111827;
  --muted: #667085;
  --dark: #101828;
  --accent: #f5c542;
  --accent-dark: #d99a00;
  --border: #e4e7ec;
  --green: #12b76a;
  --red: #f04438;
  --shadow: 0 10px 28px rgba(16, 24, 40, 0.12);
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #111827 0%, #1e293b 280px, #f4f6f8 280px);
  color: var(--text);
  line-height: 1.6;
}

header {
  background: #0b1220;
  color: #ffffff;
  padding: 18px 24px;
  border-bottom: 3px solid var(--accent);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 180px;
  height: 52px;
  position: relative;
}

.logo img {
  height: 100%;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.button {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #101828;
  border: none;
  border-radius: 10px;
  padding: 12px 20px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(245, 197, 66, 0.35);
}

.button:hover {
  transform: translateY(-1px);
}

.section {
  max-width: 1180px;
  margin: 24px auto;
  padding: 28px;
  background: var(--panel);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(228, 231, 236, 0.9);
}

.section:first-of-type {
  background: linear-gradient(135deg, #101828, #1f2937);
  color: #ffffff;
  border: 1px solid rgba(245, 197, 66, 0.35);
}

.section:first-of-type h1 {
  color: #ffffff;
}

.section:first-of-type p {
  color: #f8fafc;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--dark);
  line-height: 1.25;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 28px;
  border-left: 5px solid var(--accent);
  padding-left: 12px;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 14px;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
}

td {
  border-bottom: 1px solid var(--border);
  padding: 14px;
  vertical-align: top;
  background: #ffffff;
}

tr:first-child td {
  background: linear-gradient(135deg, #101828, #344054);
  color: #ffffff;
  font-weight: 800;
}

tr:nth-child(even) td {
  background: #f9fafb;
}

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

ul,
ol {
  margin: 12px 0 0;
  padding-left: 22px;
}

li {
  margin-bottom: 8px;
}

li::marker {
  color: var(--accent-dark);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

.pros-cons div {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  background: var(--panel-soft);
}

.pros-cons div:first-child {
  border-top: 4px solid var(--green);
}

.pros-cons div:last-child {
  border-top: 4px solid var(--red);
}

.pros-cons h3 {
  margin-bottom: 10px;
}

.expert-note {
  margin-top: 18px;
  padding: 18px;
  border-left: 5px solid var(--accent);
  background: #fffbeb;
  border-radius: 12px;
}

.expert-note p {
  margin: 0;
}

.faq-container {
  margin-top: 18px;
}

.faq-item {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 12px;
  background: #ffffff;
}

.faq-question {
  margin: 0;
  padding-right: 34px;
  font-size: 20px;
}

.faq-answer {
  margin: 12px 0 0;
}

.toggle {
  position: absolute;
  opacity: 0;
}

.icon {
  position: absolute;
  right: 18px;
  top: 22px;
  width: 16px;
  height: 16px;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: var(--accent-dark);
}

.icon::before {
  width: 16px;
  height: 2px;
  top: 7px;
  left: 0;
}

.icon::after {
  width: 2px;
  height: 16px;
  top: 0;
  left: 7px;
}

.toggle:checked ~ .icon::after {
  display: none;
}

footer {
  background: #0b1220;
  color: #ffffff;
  padding: 28px 24px;
  margin-top: 32px;
  border-top: 3px solid var(--accent);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-brand p {
  margin: 6px 0;
}

@media (max-width: 768px) {
  .header-inner,
  .pros-cons {
    display: block;
  }

  .header-actions {
    margin-top: 14px;
    flex-wrap: wrap;
  }

  .section {
    margin: 16px;
    padding: 20px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  table {
    display: block;
    overflow-x: auto;
  }
}

.rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.rating-score {
  font-weight: 800;
  color: #101828;
}

.stars {
  color: #f5c542;
  font-size: 18px;
  letter-spacing: 2px;
  text-shadow: 0 1px 4px rgba(245, 197, 66, 0.35);
}

.brand-name {
  font-weight: 800;
}

.brand-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #12b76a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #027a48;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  border: 1px solid #abefc6;
}

.trust-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #12b76a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
}
