/* =========================================================================
   BitGuruz.com — Crypto Casino Comparison
   Vanilla CSS · BEM methodology · Dark theme + gold accent
   ========================================================================= */

/* ----- Design tokens ----- */
:root {
  --color-bg: #0b0d12;
  --color-bg-alt: #0e1118;
  --color-surface: #161a23;
  --color-surface-2: #1d2230;
  --color-surface-3: #252b3a;
  --color-border: #2b3242;
  --color-border-strong: #3a4356;

  --color-text: #eef1f7;
  --color-text-muted: #9aa4b8;
  --color-text-dim: #6b7488;

  --color-gold: #ffe04b;
  --color-gold-2: #ffd21a;
  --color-gold-soft: rgba(255, 224, 75, 0.12);
  --color-green: #35d07f;
  --color-red: #ff5d5d;
  --color-trustpilot: #00b67a;

  --gradient-gold: linear-gradient(135deg, #ffe98a 0%, #ffe04b 45%, #f5b722 100%);
  --gradient-hero: radial-gradient(1200px 600px at 75% -10%, rgba(255, 224, 75, 0.16), transparent 60%),
    radial-gradient(900px 500px at 0% 0%, rgba(53, 208, 127, 0.08), transparent 55%);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 30px rgba(255, 210, 26, 0.28);

  --container: 1160px;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Sora", var(--font-sans);

  --header-h: 68px;
}

/* ----- Reset ----- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 0.5em; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--color-gold); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

/* ----- Layout helpers ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding-block: clamp(48px, 7vw, 88px); }
.section--tight { padding-block: clamp(32px, 4vw, 52px); }
.section--alt { background: var(--color-bg-alt); }

.section__head { max-width: 720px; margin: 0 auto clamp(28px, 4vw, 48px); text-align: center; }
.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.section__title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.section__subtitle { color: var(--color-text-muted); font-size: 1.05rem; margin-bottom: 0; }

.text-gold { color: var(--color-gold); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--gradient-gold);
  color: #1a1400;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover { box-shadow: 0 12px 38px rgba(255, 210, 26, 0.42); }

.btn--ghost {
  background: transparent;
  border-color: var(--color-border-strong);
  color: var(--color-text);
}
.btn--ghost:hover { background: var(--color-surface-2); border-color: var(--color-gold); }

.btn--block { width: 100%; white-space: normal; }
.btn--sm { padding: 10px 18px; font-size: 0.86rem; }
.btn--lg { padding: 17px 34px; font-size: 1.06rem; }

/* ----- Badges & chips ----- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}
.badge--gold { background: var(--color-gold-soft); border-color: rgba(255,224,75,0.35); color: var(--color-gold); }
.badge--green { background: rgba(53,208,127,0.12); border-color: rgba(53,208,127,0.35); color: var(--color-green); }
.badge--rank {
  background: var(--gradient-gold); color: #1a1400; font-weight: 800;
  min-width: 30px; height: 30px; border-radius: 50%; justify-content: center; padding: 0;
}

.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 0.82rem; color: var(--color-text-muted);
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  padding: 6px 12px; border-radius: 999px;
}

/* ----- Rating stars ----- */
.rating { display: inline-flex; align-items: center; gap: 8px; }
.rating__stars { --pct: 100%; position: relative; display: inline-block; font-size: 1rem; line-height: 1; }
.rating__stars::before { content: "★★★★★"; color: var(--color-surface-3); letter-spacing: 2px; }
.rating__stars::after {
  content: "★★★★★"; letter-spacing: 2px; color: var(--color-gold);
  position: absolute; inset: 0; width: var(--pct); overflow: hidden; white-space: nowrap;
}
.rating__value { font-weight: 700; font-family: var(--font-display); }
.rating__count { color: var(--color-text-dim); font-size: 0.85rem; }

/* ----- Trustpilot widget ----- */
.trustpilot {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 10px 16px;
}
.trustpilot__logo { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: #fff; }
.trustpilot__star { color: var(--color-trustpilot); }
.trustpilot__boxes { display: inline-flex; gap: 3px; }
.trustpilot__box {
  width: 22px; height: 22px; background: var(--color-trustpilot);
  display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 14px;
}
.trustpilot__box--empty { background: #2b3242; }
.trustpilot__text { font-size: 0.85rem; color: var(--color-text-muted); }
.trustpilot__text strong { color: var(--color-text); }

/* =========================================================================
   Header
   ========================================================================= */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11, 13, 18, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.header__inner { display: flex; align-items: center; gap: 20px; height: var(--header-h); }
.header__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.header__logo img { height: 34px; width: auto; }

/* Brand lockup (the review site's own logo — CoinRank) */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand:hover { text-decoration: none; }
.brand__coin { width: 34px; height: 34px; flex-shrink: 0; }
.brand__name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.32rem;
  letter-spacing: -0.02em; color: #fff; line-height: 1;
}
.brand__name span {
  background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.footer__brandwrap { margin-bottom: 16px; }
.footer__brand .brand__coin { width: 32px; height: 32px; }
.footer__brand .brand__name { font-size: 1.22rem; }
.header__nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 6px; }
.nav__link {
  color: var(--color-text-muted); font-weight: 500; font-size: 0.95rem;
  padding: 9px 14px; border-radius: 10px; transition: color 0.15s, background 0.15s;
}
.nav__link:hover, .nav__link--active { color: var(--color-text); background: var(--color-surface-2); text-decoration: none; }
.nav__link--active { color: var(--color-gold); }

.header__actions { display: flex; align-items: center; gap: 12px; }

/* Language switcher */
.lang { position: relative; }
.lang__toggle {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  background: var(--color-surface-2); border: 1px solid var(--color-border);
  color: var(--color-text); border-radius: 10px; padding: 8px 12px; font-size: 0.9rem; font-weight: 600;
}
.lang__toggle:hover { border-color: var(--color-border-strong); }
.lang__flag { font-size: 1.05rem; }
.lang__menu {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 180px;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all 0.16s ease; z-index: 70;
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__item {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 9px;
  color: var(--color-text-muted); font-size: 0.92rem;
}
.lang__item:hover { background: var(--color-surface-2); color: var(--color-text); text-decoration: none; }
.lang__item--active { color: var(--color-gold); }

/* Burger */
.burger {
  display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px;
  align-items: center; justify-content: center; background: var(--color-surface-2);
  border: 1px solid var(--color-border); border-radius: 10px; cursor: pointer;
}
.burger span { width: 20px; height: 2px; background: var(--color-text); border-radius: 2px; transition: 0.2s; }
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   Top banner (18+ / responsible)
   ========================================================================= */
.topbar {
  background: var(--color-surface); border-bottom: 1px solid var(--color-border);
  font-size: 0.8rem; color: var(--color-text-dim);
}
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 7px 20px; flex-wrap: wrap; text-align: center; }
.topbar__badge {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--color-text);
  border: 1px solid var(--color-border-strong); border-radius: 999px; padding: 2px 9px;
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; background: var(--gradient-hero); padding-block: clamp(44px, 6vw, 80px); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600;
  color: var(--color-gold); background: var(--color-gold-soft); border: 1px solid rgba(255,224,75,0.28);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
  max-width: 100%; white-space: normal; text-align: left;
}
.hero__title { font-size: clamp(2.1rem, 5vw, 3.5rem); letter-spacing: -0.02em; margin-bottom: 18px; }
.hero__title span { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__lead { font-size: 1.12rem; color: var(--color-text-muted); max-width: 540px; margin-bottom: 28px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__cta .btn { white-space: normal; min-width: 0; }
.hero__stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero__stat-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--color-gold); }
.hero__stat-label { font-size: 0.85rem; color: var(--color-text-dim); }

/* =========================================================================
   Top pick card (hero side)
   ========================================================================= */
.toppick {
  position: relative; background: var(--color-surface); border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow); overflow: hidden;
}
.toppick::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(255,224,75,0.6), transparent 40%, transparent 60%, rgba(255,224,75,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.toppick__ribbon {
  position: absolute; top: 16px; right: -34px; transform: rotate(45deg);
  background: var(--gradient-gold); color: #1a1400; font-weight: 800; font-size: 0.72rem;
  padding: 5px 40px; letter-spacing: 0.05em;
}
.toppick__head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.toppick__logo {
  width: 84px; height: 56px; border-radius: 12px; background: #0c0f16; border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center; padding: 8px; flex-shrink: 0;
}
.toppick__logo img { max-height: 100%; width: auto; }
.toppick__name { font-size: 1.25rem; margin-bottom: 4px; }
.toppick__offer {
  text-align: center; background: var(--color-gold-soft); border: 1px dashed rgba(255,224,75,0.4);
  border-radius: var(--radius); padding: 16px; margin-bottom: 18px;
}
.toppick__offer-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-dim); margin-bottom: 4px; }
.toppick__offer-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--color-gold); line-height: 1.2; }
.toppick__features { display: grid; gap: 8px; margin-bottom: 20px; }
.toppick__feature { display: flex; align-items: center; gap: 9px; font-size: 0.92rem; color: var(--color-text-muted); }
.toppick__feature svg { color: var(--color-green); flex-shrink: 0; }

/* =========================================================================
   Comparison table (as responsive cards on mobile)
   ========================================================================= */
.compare { display: grid; gap: 16px; }
.crow {
  display: grid;
  grid-template-columns: 44px 220px 1fr 150px 190px;
  gap: 18px; align-items: center;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 18px 22px; transition: border-color 0.2s, transform 0.2s;
}
.crow:hover { border-color: var(--color-border-strong); transform: translateY(-2px); }
.crow--top { border-color: rgba(255,224,75,0.5); background: linear-gradient(180deg, rgba(255,224,75,0.06), var(--color-surface)); box-shadow: var(--shadow-sm); }
.crow__rank { display: flex; justify-content: center; }
.crow__brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.crow__logo {
  width: 72px; height: 48px; border-radius: 10px; background: #0c0f16; border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center; padding: 7px; flex-shrink: 0;
}
.crow__logo img { max-height: 100%; width: auto; }
.crow__name { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.crow__meta { font-size: 0.8rem; color: var(--color-text-dim); }
.crow__offer-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-dim); }
.crow__offer-value { font-family: var(--font-display); font-weight: 700; color: var(--color-gold); font-size: 1.02rem; }
.crow__rating { display: flex; flex-direction: column; gap: 4px; }
.crow__actions { display: grid; gap: 8px; }
.crow__review-link { font-size: 0.82rem; color: var(--color-text-muted); text-align: center; }

.compare__head {
  display: grid; grid-template-columns: 44px 220px 1fr 150px 190px; gap: 18px;
  padding: 0 22px 4px; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-dim);
}

/* =========================================================================
   Casino card grid (alt layout)
   ========================================================================= */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.ccard {
  position: relative; background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
.ccard:hover { transform: translateY(-4px); border-color: var(--color-border-strong); }
.ccard--top { border-color: rgba(255,224,75,0.5); }
.ccard__badge { position: absolute; top: 16px; right: 16px; }
.ccard__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.ccard__logo {
  width: 76px; height: 52px; border-radius: 10px; background: #0c0f16; border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center; padding: 8px; flex-shrink: 0;
}
.ccard__logo img { max-height: 100%; width: auto; }
.ccard__name { font-size: 1.15rem; margin-bottom: 4px; }
.ccard__offer { background: var(--color-gold-soft); border: 1px dashed rgba(255,224,75,0.4); border-radius: var(--radius); padding: 14px; text-align: center; margin-bottom: 16px; }
.ccard__offer-value { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--color-gold); line-height: 1.2; }
.ccard__features { display: grid; gap: 8px; margin-bottom: 18px; }
.ccard__feature { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--color-text-muted); }
.ccard__feature svg { color: var(--color-green); flex-shrink: 0; }
.ccard__foot { margin-top: auto; display: grid; gap: 10px; }

/* =========================================================================
   Animated review cards (Trustpilot-style stack)
   ========================================================================= */
.reviews-stack { position: relative; height: 340px; display: flex; align-items: center; justify-content: center; }
@media (min-width: 768px) { .reviews-stack { height: 300px; } }
.rcard {
  position: absolute; width: min(90vw, 360px); height: 260px; overflow: hidden;
  border-radius: var(--radius-lg); background: var(--color-surface); border: 1px solid var(--color-border-strong);
  padding: 26px; cursor: pointer; box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
  will-change: transform, opacity;
}
@media (min-width: 768px) { .rcard { width: 520px; height: 240px; } }
.rcard__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.rcard__avatar {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-gold);
  background: var(--color-surface-3); flex-shrink: 0;
}
.rcard__name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.rcard__source { font-size: 0.78rem; color: var(--color-trustpilot); font-weight: 600; }
.rcard__text { font-size: 0.95rem; color: var(--color-text-muted); }
.rcard__stars { position: absolute; bottom: 24px; left: 26px; color: var(--color-gold); font-size: 1.05rem; letter-spacing: 2px; }
.reviews-hint { text-align: center; color: var(--color-text-dim); font-size: 0.85rem; margin-top: 14px; }

/* =========================================================================
   Feature / trust cards
   ========================================================================= */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.fcard { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 26px; }
.fcard__icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--color-gold-soft);
  display: flex; align-items: center; justify-content: center; color: var(--color-gold); margin-bottom: 16px;
}
.fcard__title { font-size: 1.1rem; margin-bottom: 8px; }
.fcard__text { color: var(--color-text-muted); font-size: 0.94rem; margin: 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-gold); color: #1a1400;
  font-family: var(--font-display); font-weight: 800; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; font-size: 1.1rem;
}
.step__title { font-size: 1.08rem; margin-bottom: 6px; }
.step__text { color: var(--color-text-muted); font-size: 0.92rem; margin: 0; }

/* =========================================================================
   FAQ accordion
   ========================================================================= */
.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; color: var(--color-text);
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; padding: 18px 22px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__icon { flex-shrink: 0; transition: transform 0.25s; color: var(--color-gold); }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq__a-inner { padding: 0 22px 20px; color: var(--color-text-muted); }

/* =========================================================================
   Article / review body
   ========================================================================= */
.pagehead { background: var(--gradient-hero); padding-block: clamp(30px, 4vw, 48px); border-bottom: 1px solid var(--color-border); }
.pagehead__title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.pagehead__lead { color: var(--color-text-muted); max-width: 680px; font-size: 1.05rem; margin: 0; }

.breadcrumbs { font-size: 0.84rem; color: var(--color-text-dim); margin-bottom: 16px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs span { color: var(--color-text-dim); }

.article { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.prose { max-width: 100%; }
.prose h2 { font-size: 1.6rem; margin-top: 1.6em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.4em; }
.prose p, .prose li { color: var(--color-text-muted); }
.prose ul { display: grid; gap: 8px; margin: 0 0 1.2em; }
.prose ul li { position: relative; padding-left: 26px; }
.prose ul li::before { content: "✦"; position: absolute; left: 0; color: var(--color-gold); }
.prose a { text-decoration: underline; }

.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }
.pc { border: 1px solid var(--color-border); border-radius: var(--radius); padding: 22px; background: var(--color-surface); }
.pc__title { display: flex; align-items: center; gap: 8px; font-size: 1.05rem; margin-bottom: 14px; }
.pc--pros .pc__title { color: var(--color-green); }
.pc--cons .pc__title { color: var(--color-red); }
.pc__list { display: grid; gap: 10px; }
.pc__list li { display: flex; gap: 10px; font-size: 0.92rem; color: var(--color-text-muted); }
.pc__list li::before { content: ""; }
.pc--pros li b { color: var(--color-green); }
.pc--cons li b { color: var(--color-red); }

.factbox { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; margin: 22px 0; }
.factbox__row { display: grid; grid-template-columns: 40% 60%; border-top: 1px solid var(--color-border); }
.factbox__row:first-child { border-top: none; }
.factbox__key { padding: 12px 18px; font-size: 0.88rem; color: var(--color-text-dim); background: var(--color-bg-alt); }
.factbox__val { padding: 12px 18px; font-size: 0.92rem; color: var(--color-text); }

/* Sidebar */
.sidebar { position: sticky; top: calc(var(--header-h) + 20px); display: grid; gap: 20px; }
.sidebar__card { background: var(--color-surface); border: 1px solid var(--color-border-strong); border-radius: var(--radius-lg); padding: 22px; }
.sidebar__title { font-size: 1.05rem; margin-bottom: 14px; }
.sidebar__offer { text-align: center; background: var(--color-gold-soft); border: 1px dashed rgba(255,224,75,0.4); border-radius: var(--radius); padding: 16px; margin-bottom: 16px; }
.sidebar__offer-value { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--color-gold); line-height: 1.2; }

.rank-mini { display: grid; gap: 10px; }
.rank-mini__item { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 10px; border: 1px solid var(--color-border); }
.rank-mini__item:hover { border-color: var(--color-border-strong); text-decoration: none; }
.rank-mini__logo { width: 48px; height: 32px; background: #0c0f16; border-radius: 7px; display: flex; align-items: center; justify-content: center; padding: 5px; flex-shrink: 0; }
.rank-mini__logo img { max-height: 100%; }
.rank-mini__name { font-size: 0.9rem; color: var(--color-text); font-weight: 600; }
.rank-mini__offer { font-size: 0.76rem; color: var(--color-text-dim); }

/* =========================================================================
   CTA band
   ========================================================================= */
.ctaband { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px); text-align: center;
  background: linear-gradient(135deg, rgba(255,224,75,0.14), rgba(255,210,26,0.04)); border: 1px solid rgba(255,224,75,0.3); }
.ctaband__title { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
.ctaband__text { color: var(--color-text-muted); max-width: 560px; margin: 0 auto 24px; }

/* =========================================================================
   Footer
   ========================================================================= */
.footer { background: var(--color-bg-alt); border-top: 1px solid var(--color-border); padding-top: 56px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer__logo { height: 32px; margin-bottom: 16px; }
.footer__about { color: var(--color-text-dim); font-size: 0.9rem; max-width: 300px; }
.footer__col-title { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text); margin-bottom: 16px; }
.footer__links { display: grid; gap: 10px; }
.footer__links a { color: var(--color-text-muted); font-size: 0.92rem; }
.footer__links a:hover { color: var(--color-gold); text-decoration: none; }
.footer__bottom { border-top: 1px solid var(--color-border); padding: 22px 0 30px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer__copy { color: var(--color-text-dim); font-size: 0.85rem; }
.footer__badges { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer__badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--color-text-muted); border: 1px solid var(--color-border); border-radius: 8px; padding: 6px 10px; }
.footer__disclaimer { color: var(--color-text-dim); font-size: 0.78rem; line-height: 1.6; padding-bottom: 30px; max-width: 900px; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .article { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .compare__head { display: none; }
  .crow { grid-template-columns: 40px 1fr; grid-template-areas: "rank brand" "offer offer" "rating rating" "actions actions"; gap: 14px; }
  .crow__rank { grid-area: rank; }
  .crow__brand { grid-area: brand; }
  .crow__offer { grid-area: offer; padding-top: 12px; border-top: 1px solid var(--color-border); }
  .crow__rating { grid-area: rating; flex-direction: row; align-items: center; justify-content: space-between; }
  .crow__actions { grid-area: actions; }
}

@media (max-width: 760px) {
  .header__nav, .header__actions .lang { display: none; }
  .burger { display: flex; }
  .header__nav.is-open {
    display: block; position: fixed; inset: var(--header-h) 0 auto 0; background: var(--color-bg);
    border-bottom: 1px solid var(--color-border); padding: 16px 20px; box-shadow: var(--shadow); z-index: 55;
  }
  .header__nav.is-open .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .header__nav.is-open .nav__link { padding: 12px 14px; }
  .proscons { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: 22px; }
  .factbox__row { grid-template-columns: 1fr; }
  .factbox__key { border-bottom: 1px solid var(--color-border); }
}

@media (max-width: 420px) {
  .hero__cta .btn { width: 100%; }
  .toppick__head { flex-wrap: wrap; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
