:root {
  --bg: #120b08;
  --surface: #1b120e;
  --surface-2: #221712;
  --text: #f3eee9;
  --muted: #c7b8ad;
  --border: rgba(255,255,255,.08);

  --accent: #8c2b1f;
  --accent-2: #c89b3c;

  --radius: 16px;
  --shadow: 0 10px 26px rgba(0,0,0,.55);
  --max: 1100px;

  --font: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #2a1a13;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.site-logo img {
  width: 160px;
}

/* Header buttons */
.header-actions {
  display: flex;
  gap: 10px;
}

.header-btn {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all .15s ease;
  cursor: pointer;
}

.header-btn-primary {
  background: var(--accent);
  color: #fff;
}

.header-btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: #fff;
}

.header-btn:hover {
  opacity: .9;
}

/* ================= HERO ================= */
.hero {
  padding: 26px 0 14px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
}

.hero-banner,
.hero-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.hero-banner {
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-content p {
  margin: 0;
  color: var(--muted);
}

/* ================= BUTTON ================= */
.cta-button {
  margin-top: 16px;
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

/* ================= CONTENT ================= */
.site-content {
  padding: 10px 0 26px;
}

.content-section {
  margin-top: 18px;
}

.content-section .container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.content-section h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.content-section p {
  margin: 0;
  color: var(--muted);
}

.content-section p + p {
  margin-top: 8px;
}

/* ================= LISTS ================= */
.pros-list,
.cons-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.pros-list li::marker { color: #4ade80; }
.cons-list li::marker { color: #f87171; }

/* ================= BRAND TABLE ================= */
.brand-table {
  margin: 28px 0 40px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}

.brand-table h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.muted {
  margin-bottom: 14px;
  font-size: 14px;
  opacity: .75;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 12px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.info-table th {
  width: 34%;
  text-align: left;
  font-weight: 600;
  opacity: .85;
}

.table-cta {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}

/* ================= FAQ ================= */
.faq {
  display: grid;
  gap: 12px;
}

.faq__q {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: #241913;
  border: 1px solid rgba(255,255,255,.08);
  color: inherit;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
}

.faq__a {
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  color: var(--muted);
}

/* ================= FOOTER ================= */
.site-footer {
  margin-top: 20px;
  padding-bottom: 40px;
}

.footer-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 14px;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: underline;
}

.site-footer p {
  margin: 0 0 10px;
  color: var(--muted);
}

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

  .hero-content h1 {
    font-size: 30px;
  }
}

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

  .hero-content {
    padding: 18px;
  }

  .content-section .container {
    padding: 18px;
  }
}
