: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;
  }
}
/* ================= CONTENT BASE ================= */

.site-content {
  padding: 40px 0 60px;
}

.content-section {
  padding: 40px 0;
}

.content-section h1,
.content-section h2,
.content-section h3 {
  margin-bottom: 18px;
}

.content-section p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.content-section ul {
  margin: 16px 0 20px 20px;
}

.content-section li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* ================= TABLE WRAP ================= */

.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

/* ================= INFO TABLE ================= */

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  overflow: hidden;
}

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

.info-table th {
  width: 35%;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255,255,255,0.05);
}

.info-table td {
  color: rgba(255,255,255,0.85);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

/* ================= TOC ================= */

.toc {
  padding-top: 20px;
}

.toc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px 20px;
}

.toc__toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toc__icon {
  transition: transform 0.2s ease;
}

.toc__toggle[aria-expanded="true"] .toc__icon {
  transform: rotate(90deg);
}

.toc__list {
  margin-top: 15px;
}

.toc__list ul {
  list-style: none;
  padding-left: 0;
}

.toc__list li {
  margin-bottom: 8px;
}

.toc__list a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  transition: color 0.2s ease;
}

.toc__list a:hover {
  color: #ffffff;
}

/* ================= REVIEWS ================= */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}

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

.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.06);
}

.review-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.review-meta {
  font-size: 13px;
  opacity: 0.7;
}

.review-stars {
  margin-bottom: 10px;
  color: #f5c518;
  font-size: 14px;
}

/* ================= FOOTER EXTRA ================= */

.footer-disclaimer {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.6;
  max-width: 700px;
}
/* ================= SLOT GRID ================= */

/* ================= SLOT GRID ================= */

.slot-grid {
  padding: 40px 0;
}

.grid-4-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

/* ================= CARD ================= */

.slot-card {
  display: flex;
  flex-direction: column;   /* ВАЖНО */
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.25s ease;
}

.slot-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

/* ================= IMAGE ================= */

.slot-thumb {
  width: 100%;
  aspect-ratio: 4 / 5;   /* идеальная пропорция для слотов */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

.slot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* НЕ обрезает */
  padding: 12px;
}

/* ================= TITLE ================= */

.slot-title {
  padding: 14px 10px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background: rgba(0,0,0,0.6);
}
