/**
 * Strong 8K IPTV APK – strong-8k-iptv-apk.php
 */

:root {
  --s8k-navy: #071a42;
  --s8k-blue: #0b2b6f;
  --s8k-blue-2: #2563eb;
  --s8k-gold: #ffb302;
  --s8k-text: #1a1a2e;
  --s8k-text-soft: #3d4556;
  --s8k-muted: #5c6370;
  --s8k-line: rgba(11, 43, 111, 0.08);
  --s8k-line-strong: rgba(11, 43, 111, 0.14);
  --s8k-bg: #ffffff;
  --s8k-bg-soft: #f4f6fb;
  --s8k-radius: 16px;
  --s8k-radius-sm: 12px;
  --s8k-section-y: clamp(48px, 5.5vw, 72px);
}

.page-strong-8k {
  background: var(--s8k-bg);
  color: var(--s8k-text);
}

.page-strong-8k main {
  overflow-x: hidden;
}

.page-strong-8k .s8k-section {
  padding-block: var(--s8k-section-y);
}

.page-strong-8k .s8k-section--alt {
  background: var(--s8k-bg-soft);
}

.page-strong-8k [id] {
  scroll-margin-top: 96px;
}

/* Hero */
.s8k-hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2456 0%, var(--s8k-blue) 45%, var(--s8k-navy) 100%);
}

.s8k-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.s8k-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(37, 99, 235, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 80%, rgba(255, 179, 2, 0.06) 0%, transparent 50%);
}

.s8k-hero .container {
  position: relative;
  z-index: 1;
}

.s8k-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13px;
}

.s8k-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.s8k-breadcrumb a:hover {
  color: #fff;
}

.s8k-breadcrumb li + li::before {
  content: "/";
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.35);
}

.s8k-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.s8k-hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--s8k-gold);
  box-shadow: 0 0 8px rgba(255, 179, 2, 0.6);
}

.s8k-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 24ch;
}

.s8k-hero__lead {
  margin: 0 0 20px;
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
}

.s8k-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.s8k-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.s8k-btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.s8k-btn--primary {
  background: linear-gradient(135deg, #ffd055, var(--s8k-gold));
  color: var(--s8k-navy);
  box-shadow: 0 6px 18px rgba(255, 179, 2, 0.28);
}

.s8k-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.s8k-btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
}

.s8k-btn--outline {
  background: transparent;
  color: var(--s8k-blue);
  border-color: var(--s8k-line-strong);
}

.s8k-hero__trust {
  list-style: none;
  padding: 12px 14px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  max-width: 560px;
  border-radius: var(--s8k-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.s8k-hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
}

.s8k-hero__trust svg {
  color: var(--s8k-gold);
  flex-shrink: 0;
}

.s8k-hero__panel {
  position: relative;
  padding: 20px;
  border-radius: var(--s8k-radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 16px 40px rgba(0, 0, 0, 0.22),
    0 0 48px rgba(37, 99, 235, 0.18);
}

.s8k-hero__panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.22), transparent 65%);
  opacity: 0.85;
}

.s8k-hero__panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.s8k-hero__panel-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(11, 43, 111, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #93c5fd;
}

.s8k-hero__panel-head h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.s8k-hero__panel-head p {
  margin: 2px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.s8k-meta-list {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s8k-meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.s8k-meta-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.s8k-meta-list span:first-child {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.s8k-meta-list span:last-child {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-align: right;
}

/* Section head */
.s8k-head {
  max-width: 720px;
  margin-bottom: clamp(24px, 3vw, 32px);
}

.s8k-head__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--s8k-blue);
}

.s8k-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--s8k-text);
}

.s8k-head p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--s8k-text-soft);
}

.s8k-head p a {
  color: var(--s8k-blue-2);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Info table */
.s8k-info-card {
  border-radius: calc(var(--s8k-radius) + 2px);
  border: 1px solid var(--s8k-line-strong);
  background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
  box-shadow:
    0 10px 32px rgba(11, 43, 111, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
}

.s8k-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.s8k-info-table th,
.s8k-info-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--s8k-line);
  vertical-align: middle;
}

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

.s8k-info-table__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.s8k-info-table__icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--s8k-blue);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.s8k-info-table th {
  width: 38%;
  font-weight: 700;
  color: var(--s8k-text);
  background: rgba(11, 43, 111, 0.03);
}

.s8k-info-table td {
  color: var(--s8k-text);
  font-weight: 600;
}

.s8k-note {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: var(--s8k-radius-sm);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--s8k-text-soft);
  background: rgba(11, 43, 111, 0.04);
  border: 1px solid var(--s8k-line);
}

/* Prose */
.s8k-prose {
  max-width: 780px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--s8k-text-soft);
}

.s8k-prose p + p {
  margin-top: 14px;
}

.s8k-prose a {
  color: var(--s8k-blue-2);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.s8k-prose a:hover {
  color: var(--s8k-blue);
}

/* Feature grid */
.s8k-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.s8k-feature-card {
  padding: 18px 16px;
  border-radius: var(--s8k-radius-sm);
  background: #fff;
  border: 1px solid var(--s8k-line);
  box-shadow: 0 4px 16px rgba(11, 43, 111, 0.04);
}

.s8k-feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.16);
  color: var(--s8k-blue);
}

.s8k-feature-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--s8k-text);
}

.s8k-feature-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--s8k-muted);
}

/* Download CTA box */
.s8k-download-box {
  padding: clamp(22px, 3vw, 28px);
  border-radius: var(--s8k-radius);
  background: linear-gradient(135deg, rgba(11, 43, 111, 0.04), rgba(37, 99, 235, 0.06));
  border: 1px solid var(--s8k-line-strong);
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.s8k-download-box p {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--s8k-text-soft);
}

.s8k-download-box__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Steps */
.s8k-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.s8k-steps-block {
  padding: 20px;
  border-radius: var(--s8k-radius);
  background: #fff;
  border: 1px solid var(--s8k-line);
}

.s8k-steps-block h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 800;
}

.s8k-steps-block h3 svg {
  color: var(--s8k-blue);
  flex-shrink: 0;
}

.s8k-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s8k-steps-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--s8k-bg-soft);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--s8k-text-soft);
}

.s8k-steps-list__num {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--s8k-blue);
  background: rgba(37, 99, 235, 0.12);
}

.s8k-steps-list__icon {
  color: var(--s8k-blue-2);
  opacity: 0.85;
}

/* Compatibility */
.s8k-compat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.s8k-compat-col {
  padding: 18px;
  border-radius: var(--s8k-radius);
  border: 1px solid var(--s8k-line);
  background: #fff;
}

.s8k-compat-col h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 800;
}

.s8k-compat-col--supported {
  border-color: rgba(34, 197, 94, 0.22);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.06) 0%, #fff 100%);
}

.s8k-compat-col--supported h3 {
  color: #15803d;
}

.s8k-compat-col--supported h3 svg {
  color: #16a34a;
}

.s8k-compat-col--limited {
  border-color: rgba(37, 99, 235, 0.18);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, #fff 100%);
}

.s8k-compat-col--limited h3 {
  color: var(--s8k-blue);
}

.s8k-compat-col--limited h3 svg {
  color: var(--s8k-blue-2);
}

.s8k-chip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.s8k-chip-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--s8k-line);
  color: var(--s8k-text-soft);
}

.s8k-chip-list__device {
  display: inline-flex;
  color: var(--s8k-muted);
}

.s8k-chip-list__check {
  display: inline-flex;
  margin-left: 2px;
  color: #16a34a;
}

.s8k-chip-list--ok li {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.22);
  color: #166534;
}

.s8k-chip-list--ok .s8k-chip-list__device {
  color: #15803d;
}

.s8k-chip-list--limited li {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.16);
  color: var(--s8k-blue);
}

.s8k-chip-list--limited .s8k-chip-list__device {
  color: var(--s8k-blue-2);
}

.s8k-compat-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--s8k-muted);
  font-style: italic;
}

.s8k-callout {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--s8k-radius-sm);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--s8k-text-soft);
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.14);
}

.s8k-callout a {
  color: var(--s8k-blue-2);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Warning card */
.s8k-warning {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(22px, 3vw, 28px);
  border-radius: var(--s8k-radius);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(251, 146, 60, 0.06) 100%);
  border: 1px solid rgba(239, 68, 68, 0.28);
  box-shadow: 0 8px 28px rgba(239, 68, 68, 0.1);
  max-width: 820px;
}

.s8k-warning__badge {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #ea580c);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
}

.s8k-warning__content {
  flex: 1;
  min-width: 0;
}

.s8k-warning h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #991b1b;
}

.s8k-warning p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--s8k-text);
}

.s8k-warning__cta {
  min-height: 48px;
  padding-inline: 22px;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

/* Community card */
.s8k-community-card {
  max-width: 820px;
  padding: clamp(22px, 3vw, 28px);
  border-radius: calc(var(--s8k-radius) + 2px);
  border: 1px solid var(--s8k-line-strong);
  background: linear-gradient(180deg, #fff 0%, var(--s8k-bg-soft) 100%);
  box-shadow: 0 10px 32px rgba(11, 43, 111, 0.07);
}

.s8k-community-card__warn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #9a3412;
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.28);
}

.s8k-community-card__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.s8k-community-card__icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--s8k-line);
  background: #fff;
}

.s8k-community-card__icon--telegram {
  color: #0284c7;
  border-color: rgba(2, 132, 199, 0.2);
  background: rgba(2, 132, 199, 0.06);
}

.s8k-community-card__icon--reddit {
  color: #ea580c;
  border-color: rgba(234, 88, 12, 0.2);
  background: rgba(234, 88, 12, 0.06);
}

.s8k-community-card__body {
  margin: 0;
}

/* Compare table */
.s8k-compare-wrap {
  overflow-x: auto;
  border-radius: var(--s8k-radius);
  border: 1px solid var(--s8k-line);
  -webkit-overflow-scrolling: touch;
}

.s8k-compare {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 13px;
}

.s8k-compare th,
.s8k-compare td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid var(--s8k-line);
}

.s8k-compare thead th {
  background: var(--s8k-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.s8k-compare tbody th {
  text-align: left;
  font-weight: 700;
  color: var(--s8k-text);
  background: var(--s8k-bg-soft);
}

.s8k-compare tbody td {
  color: var(--s8k-text-soft);
}

.s8k-compare-hint {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--s8k-muted);
  display: none;
}

/* Accordion (details) */
.s8k-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
}

.s8k-accordion__item {
  border-radius: var(--s8k-radius-sm);
  border: 1px solid var(--s8k-line);
  background: #fff;
  overflow: hidden;
}

.s8k-accordion__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--s8k-text);
  cursor: pointer;
  list-style: none;
}

.s8k-accordion__item summary::-webkit-details-marker {
  display: none;
}

.s8k-accordion__item summary::after {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  color: var(--s8k-blue);
  flex-shrink: 0;
}

.s8k-accordion__item[open] summary::after {
  content: "−";
}

.s8k-accordion__body {
  padding: 0 16px 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--s8k-text-soft);
}

.s8k-accordion__body p {
  margin: 0;
}

/* Final CTA */
.s8k-final-cta {
  padding: clamp(32px, 4.5vw, 48px);
  border-radius: calc(var(--s8k-radius) + 2px);
  background: linear-gradient(135deg, var(--s8k-blue) 0%, var(--s8k-navy) 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 40px rgba(7, 26, 66, 0.28);
}

.s8k-final-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
}

.s8k-final-cta__lead {
  margin: 0 auto 24px;
  max-width: 580px;
  font-size: clamp(1rem, 1.5vw, 1.05rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.s8k-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.s8k-final-cta__btn-primary {
  min-height: 50px;
  padding-inline: 24px;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.s8k-final-cta__btn-secondary {
  min-height: 50px;
  padding-inline: 22px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.s8k-final-cta__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* Disclaimer */
.s8k-disclaimer {
  padding-block: 16px 20px;
  background: var(--s8k-bg-soft);
}

.s8k-disclaimer__card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 880px;
  margin-inline: auto;
  padding: 14px 16px;
  border-radius: var(--s8k-radius-sm);
  border: 1px solid var(--s8k-line);
  background: #fff;
}

.s8k-disclaimer__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--s8k-gold);
  background: rgba(255, 179, 2, 0.12);
  border: 1px solid rgba(255, 179, 2, 0.22);
}

.s8k-disclaimer__text {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--s8k-text-soft);
}

.s8k-disclaimer__label {
  color: var(--s8k-gold);
  font-weight: 800;
}

/* Responsive */
@media (min-width: 992px) {
  .s8k-hero__trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: none;
  }
}

@media (max-width: 991.98px) {
  .s8k-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s8k-steps-grid,
  .s8k-compat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .s8k-hero {
    padding: clamp(40px, 8vw, 56px) 0 clamp(36px, 6vw, 48px);
  }

  .s8k-hero h1 {
    max-width: none;
  }

  .s8k-hero__trust {
    grid-template-columns: 1fr 1fr;
    padding: 10px 12px;
  }

  .s8k-hero__panel {
    margin-top: 4px;
  }

  .s8k-hero__actions .s8k-btn {
    flex: 1 1 calc(50% - 7px);
    min-width: 140px;
  }

  .s8k-feature-grid {
    grid-template-columns: 1fr;
  }

  .s8k-info-table th,
  .s8k-info-table td {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }

  .s8k-info-table th {
    padding-bottom: 6px;
    border-bottom: 0;
    background: rgba(11, 43, 111, 0.04);
  }

  .s8k-info-table td {
    padding-top: 0;
    padding-bottom: 14px;
  }

  .s8k-info-table tr {
    display: block;
    border-bottom: 1px solid var(--s8k-line);
  }

  .s8k-info-table tr:last-child {
    border-bottom: 0;
  }

  .s8k-compare-hint {
    display: block;
  }

  .s8k-steps-list li {
    grid-template-columns: auto 1fr;
  }

  .s8k-steps-list__icon {
    display: none;
  }

  .s8k-warning {
    flex-direction: column;
  }

  .s8k-final-cta__actions .s8k-btn {
    width: 100%;
    max-width: 320px;
  }

  .s8k-disclaimer__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (prefers-color-scheme: dark) {
  .page-strong-8k {
    --s8k-text: #eef2f8;
    --s8k-text-soft: #b8c0d4;
    --s8k-muted: #8b95a8;
    --s8k-line: rgba(255, 255, 255, 0.08);
    --s8k-line-strong: rgba(255, 255, 255, 0.14);
    --s8k-bg: #070f22;
    --s8k-bg-soft: #0d172d;
  }

  .s8k-info-card,
  .s8k-feature-card,
  .s8k-steps-block,
  .s8k-accordion__item,
  .s8k-disclaimer__card,
  .s8k-compat-col,
  .s8k-community-card {
    background: #111c38;
  }

  .s8k-info-card {
    background: linear-gradient(180deg, #111c38 0%, #0d172d 100%);
  }

  .s8k-info-table th {
    background: rgba(255, 255, 255, 0.04);
  }

  .s8k-compat-col--supported {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.08) 0%, #111c38 100%);
  }

  .s8k-compat-col--limited {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.08) 0%, #111c38 100%);
  }

  .s8k-chip-list li {
    background: #111c38;
  }

  .s8k-chip-list--ok li {
    background: rgba(34, 197, 94, 0.1);
  }

  .s8k-chip-list--limited li {
    background: rgba(37, 99, 235, 0.1);
  }

  .s8k-btn--outline {
    color: #93c5fd;
    border-color: rgba(255, 255, 255, 0.14);
  }
}
