/* assets/css/style.css */
/* -------------------------------------------------
   Baloo-style dark UI (approx. to provided reference)
   ------------------------------------------------- */

/* ============== CSS RESET (lightweight) ============== */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: #e7eefc;
  background:
  radial-gradient(1200px 700px at 20% 10%, rgba(72, 115, 255, 0.15), transparent 60%),
  linear-gradient(180deg, #071226 0%, #050c1a 55%, #040914 100%);

}

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

a { color: inherit; text-decoration: none; }
a:focus { outline: 2px solid rgba(120, 170, 255, 0.6); outline-offset: 2px; }

p { margin: 0 0 14px; line-height: 1.6; color: rgba(231, 238, 252, 0.88); }

h1, h2, h3 {
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #f1f6ff;
}

h1 { font-size: clamp(28px, 3vw, 40px); }
h2 { font-size: clamp(18px, 2vw, 24px); }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #e7eefc;

  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(72,115,255,0.18), transparent 55%),
    radial-gradient(900px 600px at 90% 25%, rgba(93,228,255,0.12), transparent 60%),
    radial-gradient(800px 500px at 35% 85%, rgba(255,198,84,0.10), transparent 55%),
    linear-gradient(180deg, #071226 0%, #050c1a 55%, #040914 100%);

  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* ============== TOKENS ============== */
:root{
  --bg-0: #071226;
  --bg-1: #091a34;
  --panel: rgba(13, 25, 49, 0.75);
  --panel-2: rgba(10, 18, 38, 0.72);
  --stroke: rgba(120, 160, 255, 0.16);
  --stroke-2: rgba(255, 255, 255, 0.06);
  --text: #e7eefc;
  --muted: rgba(231, 238, 252, 0.68);

  --blue-1: #2a67ff;
  --blue-2: #6aa6ff;
  --cyan-1: #3ee3ff;
  --amber-1: #ffc54a;

  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-1: 0 10px 30px rgba(0,0,0,0.35);
  --shadow-2: 0 18px 55px rgba(0,0,0,0.45);
  --blur: blur(10px);
}

/* ============== LAYOUT HELPERS ============== */
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-content { padding: 10px 0 50px; }

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

.content-section .container {
  background: rgba(10, 18, 38, 0.92);
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  backdrop-filter: none;
  padding: 20px 22px;
}

.content-section .container p:last-child { margin-bottom: 0; }

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(7, 18, 38, 0.88) 0%, rgba(6, 14, 30, 0.70) 100%);
  border-bottom: 1px solid rgba(120, 160, 255, 0.10);
  backdrop-filter: none;
}

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

.site-logo img {
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.45));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(18, 34, 66, 0.65);
  color: rgba(241, 246, 255, 0.92);
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.header-btn:hover { transform: translateY(-1px); border-color: rgba(120, 170, 255, 0.28); }

.header-btn-secondary {
  background: rgba(18, 34, 66, 0.55);
}

.header-btn-primary {
  border-color: rgba(106, 166, 255, 0.25);
  background: linear-gradient(180deg, rgba(106, 166, 255, 0.95) 0%, rgba(42, 103, 255, 0.95) 100%);
  color: #061129;
}

/* ============== HERO ============== */
.hero { padding: 22px 0 8px; }

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.hero-banner,
.hero-content {
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(12, 23, 46, 0.78) 0%, rgba(8, 15, 34, 0.58) 100%);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  backdrop-filter: none;
}

.hero-banner {
  min-height: 360px;
  position: relative;
}

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

.hero-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4, 9, 20, 0.75) 0%, rgba(4, 9, 20, 0.25) 55%, rgba(4, 9, 20, 0.10) 100%),
    radial-gradient(600px 300px at 20% 30%, rgba(106, 166, 255, 0.20), transparent 65%);
  pointer-events:none;
}

.hero-content {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.hero-content p {
  color: rgba(231, 238, 252, 0.82);
  max-width: 55ch;
}

.cta-button{
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 197, 74, 0.98) 0%, rgba(255, 160, 60, 0.98) 100%);
  color: #1a1206;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 30px rgba(0,0,0,0.35);
  width: fit-content;
  transition: transform .15s ease, filter .15s ease;
}
.cta-button:hover { transform: translateY(-1px); filter: brightness(1.03); }

/* ============== PROS / CONS ============== */
.pros-list,
.cons-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.pros-list li,
.cons-list li{
  padding: 12px 12px 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(6, 12, 26, 0.30);
  color: rgba(231, 238, 252, 0.88);
}

.pros-list li{
  border-color: rgba(62, 227, 255, 0.14);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.cons-list li{
  border-color: rgba(255, 197, 74, 0.12);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

/* ============== BRAND TABLE CARD ============== */
.brand-table { padding: 18px 0; }

.brand-table .card {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(12, 23, 46, 0.82) 0%, rgba(8, 15, 34, 0.62) 100%);
  box-shadow: var(--shadow-2);
  backdrop-filter: none;
  padding: 20px 22px;
}

.muted { color: var(--muted); }

.table-wrap { overflow-x: auto; margin-top: 12px; }

.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(6, 12, 26, 0.35);
}

.info-table th,
.info-table td {
  padding: 12px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.info-table th {
  width: 38%;
  color: rgba(241, 246, 255, 0.85);
  font-weight: 700;
  background: rgba(255,255,255,0.02);
}

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

.table-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(106, 166, 255, 0.24);
  background: linear-gradient(180deg, rgba(106, 166, 255, 0.92) 0%, rgba(42, 103, 255, 0.92) 100%);
  color: #061129;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}

/* ============== FAQ ============== */
.faq { margin-top: 10px; display: grid; gap: 10px; }

.faq__item {
  display: grid;
  gap: 8px;
}

.faq__q{
  display: block;
  width: 100%;
  text-align: left;
  border-radius: 16px;
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(6, 12, 26, 0.35);
  color: rgba(241, 246, 255, 0.90);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0,0,0,0.22);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }

.faq__q:hover{
  transform: translateY(-1px);
  border-color: rgba(120, 170, 255, 0.22);
  background: rgba(6, 12, 26, 0.42);
}

.faq__a{
  border-radius: 16px;
  padding: 12px 14px 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(10, 18, 38, 0.40);
  color: rgba(231, 238, 252, 0.82);
}

/* ============== FOOTER ============== */
.site-footer{
  margin-top: 26px;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(120, 160, 255, 0.10);
  background: linear-gradient(180deg, rgba(6, 14, 30, 0.55) 0%, rgba(4, 9, 20, 0.75) 100%);
}

.footer-inner { display: grid; gap: 12px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a{
  color: rgba(231, 238, 252, 0.76);
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(6, 12, 26, 0.25);
}
.footer-links a:hover{
  border-color: rgba(120, 170, 255, 0.22);
  color: rgba(241, 246, 255, 0.92);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 980px){
  .hero-inner { grid-template-columns: 1fr; }
  .hero-banner { min-height: 280px; }
  .header-inner { padding: 12px 0; }
}

@media (max-width: 560px){
  .header-actions { gap: 8px; }
  .header-btn { height: 40px; padding: 0 12px; border-radius: 12px; }
  .hero-content { padding: 20px 16px; }
  .content-section .container { padding: 18px 16px; }
  .brand-table .card { padding: 18px 16px; }
  .info-table th { width: 44%; }
}
/* =========================================
   TOC (Inhoudsopgave)
========================================= */

#toc .container {
  background: linear-gradient(180deg, rgba(18, 34, 66, 0.65) 0%, rgba(10, 18, 38, 0.55) 100%);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}

.toc-list li a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(6, 12, 26, 0.30);
  color: rgba(231, 238, 252, 0.85);
  font-weight: 600;
  transition: all .15s ease;
}

.toc-list li a:hover {
  border-color: rgba(120, 170, 255, 0.28);
  background: rgba(6, 12, 26, 0.45);
  transform: translateX(3px);
}


/* =========================================
   TEXT LINK (bonus link)
========================================= */

.text-link {
  font-weight: 700;
  color: var(--blue-2);
  border-bottom: 1px solid rgba(106, 166, 255, 0.4);
  transition: all .15s ease;
}

.text-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}


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

.reviews-section .container {
  background: linear-gradient(180deg, rgba(14, 28, 56, 0.75) 0%, rgba(8, 15, 34, 0.65) 100%);
}

.section-header {
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 14px;
}

/* ===== Overall Rating ===== */

.overall-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 10px 0 18px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(6, 12, 26, 0.35);
}

.overall-rating__score {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}

.overall-rating__stars {
  display: flex;
  gap: 4px;
}

.overall-rating__meta {
  font-size: 13px;
  color: var(--muted);
}

/* ===== Stars ===== */

.star {
  font-size: 18px;
  color: rgba(255,255,255,0.25);
}

.star--filled {
  color: var(--amber-1);
}

.star--half {
  color: var(--amber-1);
  opacity: 0.6;
}

/* ===== Review Cards ===== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.review-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(6, 12, 26, 0.40);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .15s ease, border-color .15s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(120, 170, 255, 0.28);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-card__author {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.review-card__rating {
  display: flex;
  gap: 3px;
}

.review-card__text {
  font-size: 14px;
  color: rgba(231, 238, 252, 0.85);
  line-height: 1.5;
}

.review-card__footer {
  margin-top: auto;
}

.review-card__date {
  font-size: 12px;
  color: var(--muted);
}

/* ===== Disclaimer ===== */

.reviews-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.85;
}


/* =========================================
   SMALL POLISH
========================================= */

html {
  scroll-behavior: smooth;
}
/* =========================================
   Collapsible TOC
========================================= */

.toc-section .container {
  background: linear-gradient(180deg, rgba(18, 34, 66, 0.75) 0%, rgba(10, 18, 38, 0.60) 100%);
}

.toc-details {
  display: block;
}

.toc-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(6, 12, 26, 0.35);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s ease;
  list-style: none;
}

.toc-toggle::-webkit-details-marker { display: none; }
.toc-toggle::marker { content: ""; }

.toc-toggle:hover {
  border-color: rgba(120, 170, 255, 0.28);
  transform: translateY(-1px);
}

.toc-arrow {
  transition: transform .2s ease;
}

.toc-details[open] .toc-arrow {
  transform: rotate(180deg);
}

.toc-content {
  margin-top: 12px;
}
.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--blue-2);
}
/* ================= FOOTER LAYOUT FIX ================= */

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 15px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #fff;
}

/* делаем ссылки колонкой */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* основные страницы немного выделяем */
.footer-links--main a {
  font-weight: 700;
  color: var(--blue-2);
}

/* делаем кнопки одинаковой ширины */
.footer-links a {
  width: fit-content;
  min-width: 180px;
}
@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links a {
    min-width: auto;
  }
}
