/* HitNSpin DE-EN v3 — "Iron & Ice" review theme
   Palette: iron black / ice cyan / ember amber. Mobile-first. */

:root {
  --hs3-bg: #0f1216;
  --hs3-bg-alt: #141a21;
  --hs3-panel: #1a212b;
  --hs3-panel-2: #202936;
  --hs3-line: rgba(255, 255, 255, 0.08);
  --hs3-text: #e9edf2;
  --hs3-muted: #9aa6b2;
  --hs3-ice: #7cd5e6;
  --hs3-ice-dim: rgba(124, 213, 230, 0.14);
  --hs3-ember: #ff6b2c;
  --hs3-ember-2: #ffa94d;
  --hs3-grad: linear-gradient(100deg, #ff6b2c 0%, #ffa94d 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--hs3-bg);
  color: var(--hs3-text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

h1, h2, h3, h4 {
  font-family: 'Chakra Petch', 'Inter', sans-serif;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

a { color: var(--hs3-ice); }

.hs3-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.hs3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 4px;
  padding: 12px 22px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}
.hs3-btn--primary {
  background: var(--hs3-grad);
  color: #16100b;
  box-shadow: 0 4px 18px rgba(255, 107, 44, 0.35);
}
.hs3-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255, 107, 44, 0.5); }
.hs3-btn--ghost {
  background: transparent;
  color: var(--hs3-ice);
  border: 1px solid rgba(124, 213, 230, 0.45);
}
.hs3-btn--ghost:hover { background: var(--hs3-ice-dim); }
.hs3-btn--lg { padding: 16px 34px; font-size: 16px; }
.hs3-btn--full { width: 100%; }

/* ---------- Header ---------- */
.hs3-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 18, 22, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hs3-line);
}
.hs3-header__bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hs3-head__left { display: flex; align-items: center; gap: 12px; }
.hs3-logo img { height: 34px; width: auto; }
.hs3-nav { display: none; }
.hs3-nav ul { display: flex; gap: 4px; list-style: none; }
.hs3-nav a {
  display: block;
  padding: 8px 14px;
  color: var(--hs3-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.hs3-nav a:hover { color: var(--hs3-text); background: rgba(255, 255, 255, 0.05); }
.hs3-nav a.active { color: var(--hs3-ice); background: var(--hs3-ice-dim); }
.hs3-head__actions { display: none; }
.hs3-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--hs3-line);
  border-radius: 4px;
  cursor: pointer;
}
.hs3-burger span { display: block; height: 2px; background: var(--hs3-ice); border-radius: 2px; }

@media (min-width: 768px) {
  .hs3-nav { display: block; }
  .hs3-head__actions { display: flex; gap: 10px; }
  .hs3-burger { display: none; }
}

/* ---------- Mobile panel ---------- */
.hs3-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 60;
}
.hs3-mobile-overlay.is-open { opacity: 1; pointer-events: auto; }
.hs3-mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--hs3-bg-alt);
  border-right: 1px solid var(--hs3-line);
  z-index: 70;
  transform: translateX(-105%);
  transition: transform 0.25s;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}
.hs3-mobile-panel.is-open { transform: translateX(0); }
.hs3-mobile-panel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.hs3-mobile-panel__head img { height: 30px; width: auto; }
.hs3-mobile-panel__close {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--hs3-line);
  border-radius: 4px;
  color: var(--hs3-text);
  font-size: 18px;
  cursor: pointer;
}
.hs3-mobile-panel__nav { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.hs3-mobile-panel__nav a {
  display: block;
  padding: 12px 14px;
  color: var(--hs3-text);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}
.hs3-mobile-panel__nav a.active { color: var(--hs3-ice); background: var(--hs3-ice-dim); }
.hs3-mobile-panel__actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

/* ---------- Top banner ---------- */
.hs3-banner { max-width: 1200px; margin: 16px auto 0; padding: 0 20px; }
.hs3-banner a { display: block; }
.hs3-banner picture { display: block; }
.hs3-banner img { width: 100%; height: auto; display: block; border-radius: 10px; }

/* ---------- Hero ---------- */
.hs3-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 85% 10%, rgba(124, 213, 230, 0.1), transparent),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(255, 107, 44, 0.09), transparent),
    var(--hs3-bg-alt);
  border-bottom: 1px solid var(--hs3-line);
}
.hs3-hero .hs3-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hs3-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--hs3-ice);
  background: var(--hs3-ice-dim);
  border: 1px solid rgba(124, 213, 230, 0.3);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.hs3-hero h1 { font-size: 30px; margin-bottom: 16px; }
.hs3-hero__lead { color: var(--hs3-muted); margin-bottom: 14px; max-width: 640px; }
.hs3-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hs3-hero__panel {
  background: var(--hs3-panel);
  border: 1px solid var(--hs3-line);
  border-top: 3px solid var(--hs3-ice);
  border-radius: 8px;
  padding: 22px;
  align-self: stretch;
}
.hs3-hero__panel h2 { font-size: 16px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--hs3-ice); margin-bottom: 14px; }
.hs3-verdict-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--hs3-line);
  font-size: 14px;
}
.hs3-verdict-row:last-child { border-bottom: none; }
.hs3-verdict-row dt { color: var(--hs3-muted); }
.hs3-verdict-row dd { font-weight: 600; text-align: right; }

@media (min-width: 768px) {
  .hs3-hero .hs3-wrap { flex-direction: row; align-items: center; padding-top: 72px; padding-bottom: 72px; }
  .hs3-hero__content { flex: 1 1 60%; }
  .hs3-hero__panel { flex: 1 1 40%; max-width: 400px; }
  .hs3-hero h1 { font-size: 42px; }
}

/* ---------- Sections ---------- */
.hs3-section { padding: 48px 0; }
.hs3-section--alt { background: var(--hs3-bg-alt); border-top: 1px solid var(--hs3-line); border-bottom: 1px solid var(--hs3-line); }
.hs3-h2 { font-size: 24px; margin-bottom: 10px; }
.hs3-h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 10px;
  background: var(--hs3-grad);
  border-radius: 2px;
}
.hs3-h3 { font-size: 18px; margin: 22px 0 8px; color: var(--hs3-ice); }
.hs3-section p { color: var(--hs3-muted); margin-bottom: 14px; }
.hs3-section p strong, .hs3-section li strong { color: var(--hs3-text); }
.hs3-lead { font-size: 17px; }
.hs3-list { list-style: none; margin: 0 0 16px; }
.hs3-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  color: var(--hs3-muted);
}
.hs3-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--hs3-ice);
  transform: rotate(45deg);
}
.hs3-list-num { list-style: none; counter-reset: hs3step; margin: 0 0 16px; }
.hs3-list-num li {
  counter-increment: hs3step;
  position: relative;
  padding: 8px 0 8px 42px;
  color: var(--hs3-muted);
}
.hs3-list-num li::before {
  content: counter(hs3step);
  position: absolute;
  left: 0;
  top: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #16100b;
  background: var(--hs3-grad);
  border-radius: 4px;
}
.hs3-note {
  background: var(--hs3-ice-dim);
  border-left: 3px solid var(--hs3-ice);
  border-radius: 0 6px 6px 0;
  padding: 14px 18px;
  margin: 18px 0;
}
.hs3-note p { margin: 0; }
.hs3-cta-row { margin-top: 20px; }

@media (min-width: 768px) {
  .hs3-section { padding: 68px 0; }
  .hs3-h2 { font-size: 30px; }
}

/* ---------- Aff bonus cards ---------- */
.hs3-aff-grid { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.aff-bonus {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  background: var(--hs3-panel);
  border: 1px solid var(--hs3-line);
  border-radius: 8px;
  padding: 16px;
  text-decoration: none;
  transition: transform 0.15s, border-color 0.15s;
}
.aff-bonus:hover { transform: translateY(-3px); border-color: rgba(255, 107, 44, 0.5); }
.aff-bonus__img { width: 84px; height: 84px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.aff-bonus__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.aff-bonus__offer { font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 19px; color: var(--hs3-ember-2); }
.aff-bonus__game { color: var(--hs3-muted); font-size: 14px; }
.aff-bonus__cta {
  margin-top: 8px;
  align-self: flex-start;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #16100b;
  background: var(--hs3-grad);
  border-radius: 4px;
  padding: 7px 16px;
}
@media (min-width: 768px) { .hs3-aff-grid { flex-direction: row; } }

/* ---------- Package cards (welcome packs) ---------- */
.hs3-packages { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.hs3-package {
  background: var(--hs3-panel);
  border: 1px solid var(--hs3-line);
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 calc(50% - 10px);
  display: flex;
  flex-direction: column;
}
.hs3-package__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.hns-package__video { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.hs3-package__name { font-size: 21px; }
.hs3-package__total { color: var(--hs3-ember-2); font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 14px; }
.hs3-package__body p { font-size: 15px; }
.hs3-package .hs3-btn { margin-top: auto; align-self: flex-start; }
@media (min-width: 768px) { .hs3-packages { flex-direction: row; flex-wrap: wrap; } }

/* ---------- HitNSpin bonus stages ---------- */
.hns-stages { display: flex; flex-direction: column; gap: 14px; margin: 18px 0 8px; }
.hns-stage {
  display: flex;
  gap: 14px;
  background: var(--hs3-panel-2);
  border: 1px solid var(--hs3-line);
  border-radius: 8px;
  padding: 14px;
}
.hns-stage__img { width: 72px; height: 72px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.hns-stage__body { min-width: 0; }
.hns-stage__label {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hs3-ice);
  margin-bottom: 2px;
}
.hns-stage__offer { font-weight: 700; color: var(--hs3-text); margin-bottom: 2px; }
.hns-stage__game { font-size: 13px; color: var(--hs3-muted); margin-bottom: 8px; }
.hns-stage__terms { display: flex; flex-wrap: wrap; gap: 6px; }
.hns-stage__term {
  font-size: 12px;
  color: var(--hs3-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hs3-line);
  border-radius: 999px;
  padding: 3px 10px;
}
.hns-stage__speed {
  margin-top: 10px;
  font-size: 13px;
  color: var(--hs3-ember-2);
  background: rgba(255, 107, 44, 0.09);
  border: 1px dashed rgba(255, 107, 44, 0.4);
  border-radius: 6px;
  padding: 8px 12px;
}
.hs3-pack-total {
  margin-top: 16px;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  color: var(--hs3-text);
  background: var(--hs3-ice-dim);
  border: 1px solid rgba(124, 213, 230, 0.3);
  border-radius: 6px;
  padding: 12px 16px;
}

/* ---------- Tables ---------- */
.hs3-table-scroll { overflow-x: auto; margin: 22px 0; }
.hs3-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.hs3-table th {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hs3-ice);
  text-align: left;
  padding: 12px 14px;
  background: var(--hs3-panel-2);
  border-bottom: 2px solid rgba(124, 213, 230, 0.3);
}
.hs3-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--hs3-line);
  color: var(--hs3-muted);
  font-size: 15px;
}
.hs3-table td:first-child { color: var(--hs3-text); font-weight: 600; }

/* ---------- Facts (slot review) ---------- */
.hs3-facts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--hs3-panel);
  border: 1px solid var(--hs3-line);
  border-radius: 10px;
  padding: 24px;
  margin-top: 26px;
}
.hs3-facts__img { display: flex; align-items: flex-start; justify-content: center; }
.hs3-facts__img img { width: 200px; height: 200px; object-fit: cover; border-radius: 12px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45); }
.hs3-facts__rows { flex: 1; }
.hs3-fact-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--hs3-line);
  font-size: 15px;
}
.hs3-fact-row:last-child { border-bottom: none; }
.hs3-fact-row span:first-child { color: var(--hs3-muted); }
.hs3-fact-row span:last-child { font-weight: 600; text-align: right; }
@media (min-width: 768px) { .hs3-facts { flex-direction: row; align-items: flex-start; } }

/* ---------- Games grid ---------- */
.games-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.game-card {
  flex: 0 0 calc(50% - 6px);
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hs3-line);
  transition: transform 0.2s, border-color 0.2s;
}
.game-card:hover { transform: translateY(-4px); border-color: rgba(124, 213, 230, 0.4); }
.game-card__img { width: 100%; object-fit: cover; display: block; }
.game-card__name {
  display: block;
  font-size: 12px;
  padding: 6px 8px;
  color: var(--hs3-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) { .game-card { flex: 0 0 calc(20% - 10px); } }

/* ---------- Providers grid ---------- */
.providers-grid { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 24px; }
.provider-card {
  flex: 0 0 calc(33.333% - 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hs3-line);
  border-radius: 8px;
  padding: 12px;
}
.provider-card__logo { width: 100%; max-width: 80px; height: 40px; object-fit: contain; filter: grayscale(30%); transition: filter 0.2s; }
.provider-card:hover .provider-card__logo { filter: grayscale(0%); }
@media (min-width: 768px) { .provider-card { flex: 0 0 calc(16.666% - 10px); } }

/* ---------- Payments grid ---------- */
.payment-grid { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 22px; }
.payment-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 6px 10px;
}
.payment-card img { height: 32px; width: auto; display: block; }
@media (min-width: 768px) { .payment-grid { gap: 10px; } .payment-card { padding: 8px 12px; } }

/* ---------- Feature cards / steps ---------- */
.hs3-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.hs3-card {
  flex: 1;
  background: var(--hs3-panel);
  border: 1px solid var(--hs3-line);
  border-radius: 8px;
  padding: 22px;
  transition: border-color 0.2s;
}
.hs3-card:hover { border-color: rgba(124, 213, 230, 0.35); }
.hs3-card__icon { margin-bottom: 14px; }
.hs3-card h3 { font-size: 17px; margin-bottom: 8px; }
.hs3-card p { font-size: 14px; margin-bottom: 0; }
@media (min-width: 768px) { .hs3-cards { flex-direction: row; flex-wrap: wrap; } .hs3-cards .hs3-card { flex: 1 1 calc(25% - 12px); min-width: 210px; } .hs3-cards--2col .hs3-card { flex: 1 1 calc(50% - 8px); } }

/* ---------- Review-link cards ---------- */
.hs3-review-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.hs3-review-card {
  display: flex;
  gap: 16px;
  align-items: center;
  flex: 1;
  background: var(--hs3-panel);
  border: 1px solid var(--hs3-line);
  border-radius: 10px;
  padding: 18px;
  text-decoration: none;
  transition: transform 0.15s, border-color 0.15s;
}
.hs3-review-card:hover { transform: translateY(-3px); border-color: rgba(124, 213, 230, 0.45); }
.hs3-review-card img { width: 96px; height: 96px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.hs3-review-card__title { font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 18px; color: var(--hs3-text); margin-bottom: 4px; }
.hs3-review-card__meta { font-size: 13px; color: var(--hs3-muted); margin-bottom: 8px; }
.hs3-review-card__link { font-size: 14px; font-weight: 600; color: var(--hs3-ice); }
@media (min-width: 768px) { .hs3-review-cards { flex-direction: row; } }

/* ---------- FAQ ---------- */
.hs3-faq { margin-top: 26px; }
.hs3-faq__item { border: 1px solid var(--hs3-line); border-radius: 8px; margin-bottom: 10px; background: var(--hs3-panel); overflow: hidden; }
.hs3-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: none;
  color: var(--hs3-text);
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-align: left;
  padding: 16px 18px;
  cursor: pointer;
}
.hs3-faq__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hs3-ice);
  border: 1px solid rgba(124, 213, 230, 0.4);
  border-radius: 4px;
  font-size: 16px;
  transition: transform 0.2s;
}
.hs3-faq__item.is-open .hs3-faq__icon { transform: rotate(45deg); }
.hs3-faq__answer { display: none; padding: 0 18px 16px; }
.hs3-faq__item.is-open .hs3-faq__answer { display: block; }
.hs3-faq__answer p { margin: 0; font-size: 15px; }

/* ---------- CTA band ---------- */
.hs3-band {
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(255, 107, 44, 0.14), transparent),
    var(--hs3-panel);
  border: 1px solid var(--hs3-line);
  border-radius: 12px;
  padding: 34px 24px;
  text-align: center;
}
.hs3-band h2 { font-size: 24px; margin-bottom: 10px; }
.hs3-band p { max-width: 620px; margin: 0 auto 20px; }

/* ---------- Footer ---------- */
.hs3-footer { border-top: 1px solid var(--hs3-line); background: var(--hs3-bg-alt); padding: 44px 0 28px; }
.hs3-footer__top { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; margin-bottom: 26px; }
.hs3-footer__top img { height: 32px; width: auto; }
.hs3-footer__links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.hs3-footer__links a { color: var(--hs3-muted); text-decoration: none; font-size: 14px; }
.hs3-footer__links a:hover { color: var(--hs3-ice); }
.hs3-footer__reviews { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; padding: 20px 0; border-top: 1px solid var(--hs3-line); border-bottom: 1px solid var(--hs3-line); margin-bottom: 20px; }
.hs3-footer__reviews a { display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.05); border-radius: 6px; padding: 8px 12px; }
.hs3-footer__reviews img { height: 26px; width: auto; max-width: 110px; object-fit: contain; }
.hs3-footer__payments { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.hs3-footer__payments img { height: 26px; width: auto; opacity: 0.8; }
.hs3-footer__copy { color: var(--hs3-muted); font-size: 13px; margin-bottom: 6px; }
.hs3-footer__disclaimer { color: var(--hs3-muted); font-size: 12px; display: flex; align-items: center; gap: 8px; }
.hs3-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 2px solid var(--hs3-ember);
  border-radius: 50%;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--hs3-ember);
}
@media (min-width: 768px) {
  .hs3-footer__top { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ---------- Utility ---------- */
.hs3-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
