/* HitNSpin Casino — original stylesheet. Palette derived from the brand logo (violet + orange/yellow + magenta). */

@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700;800;900&display=swap');

:root {
  --hns-bg: #170b2e;
  --hns-bg-soft: #1c0f38;
  --hns-surface: #241750;
  --hns-surface-2: #2d1c62;
  --hns-border: rgba(255, 255, 255, 0.09);
  --hns-border-strong: #3f2778;
  --hns-text: #f6f2ff;
  --hns-text-muted: #b3a3d9;
  --hns-text-dim: #8877b8;
  --hns-primary: #ff8a1e;
  --hns-primary-2: #ffcf3f;
  --hns-accent: #ff3d81;
  --hns-accent-2: #35e0c8;
  --hns-ink: #1c0f38;
  --hns-shadow-hard: #12071f;
  --hns-radius-lg: 20px;
  --hns-radius: 14px;
  --hns-radius-sm: 9px;
  --hns-maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Mulish', sans-serif;
  background: var(--hns-bg);
  color: var(--hns-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3, h4 { margin: 0 0 14px; font-weight: 800; line-height: 1.22; letter-spacing: -0.01em; }
p { margin: 0 0 14px; color: var(--hns-text-muted); }
ul, ol { margin: 0 0 14px; padding-left: 22px; color: var(--hns-text-muted); }
li { margin-bottom: 6px; }

.hns-wrap { max-width: var(--hns-maxw); margin: 0 auto; padding: 0 20px; }

.hns-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hns-primary-2);
  background: rgba(255, 138, 30, 0.12);
  border: 1px solid rgba(255, 138, 30, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hns-section { padding: 48px 0; }
.hns-section--tight { padding: 34px 0; }
.hns-section--alt { background: var(--hns-bg-soft); }

.hns-h2 { font-size: 26px; }
.hns-intro { font-size: 16px; }
.hns-lede { font-size: 18px; color: var(--hns-text); }

.hns-section p { margin-bottom: 14px; }
.hns-section p:last-child { margin-bottom: 0; }

.hns-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
  padding-left: 20px;
  list-style: disc;
}
.hns-list li { padding-left: 4px; }

.hns-callout {
  background: rgba(255, 138, 30, 0.1);
  border: 1px solid rgba(255, 138, 30, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 16px;
}
.hns-callout p { margin-bottom: 0; }

.hns-legal { max-width: 820px; }
.hns-legal .hns-h2 { margin-top: 36px; margin-bottom: 12px; }
.hns-legal .hns-h2:first-child { margin-top: 0; }

/* ---------- Top banner (above hero) ---------- */
.hns-top-banner { max-width: var(--hns-maxw); margin: 0 auto; padding: 16px 20px 0; }
.hns-top-banner__link { display: block; border-radius: var(--hns-radius-lg); overflow: hidden; }
.hns-top-banner picture, .hns-top-banner img { display: block; width: 100%; height: auto; }

/* ---------- Section-level centered CTA ---------- */
.hns-section-cta { margin-top: 28px; text-align: center; }

@media (min-width: 768px) {
  .hns-h2 { font-size: 34px; }
  .hns-section { padding: 76px 0; }
  .hns-section--tight { padding: 52px 0; }
}

/* ---------- Buttons (comic-pop style, echoes the logo's hard outline) ---------- */

.hns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  border: 2px solid var(--hns-shadow-hard);
  box-shadow: 4px 4px 0 var(--hns-shadow-hard);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.hns-btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--hns-shadow-hard); }
.hns-btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--hns-shadow-hard); }

.hns-btn--primary { background: linear-gradient(135deg, var(--hns-primary), var(--hns-primary-2)); color: var(--hns-ink); }
.hns-btn--accent { background: linear-gradient(135deg, var(--hns-accent), #ff6fa8); color: #fff; }
.hns-btn--ghost { background: transparent; color: var(--hns-text); border-color: var(--hns-border-strong); box-shadow: none; }
.hns-btn--ghost:hover { background: var(--hns-surface-2); transform: none; }
.hns-btn--sm { padding: 9px 18px; font-size: 13px; box-shadow: 3px 3px 0 var(--hns-shadow-hard); border-radius: 9px; }
.hns-btn--lg { padding: 17px 34px; font-size: 17px; }
.hns-btn--block { width: 100%; }

/* ---------- Header ---------- */

.hns-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(20, 10, 40, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hns-border);
}

.hns-header__bar {
  max-width: var(--hns-maxw);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hns-head__left { display: flex; align-items: center; gap: 16px; }

.hns-logo { display: flex; align-items: center; }
.hns-logo img { height: 32px; }

.hns-burger {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--hns-border-strong);
  background: var(--hns-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.hns-burger span { width: 18px; height: 2px; background: var(--hns-text); border-radius: 2px; }

.hns-nav { display: none; }
.hns-nav ul { display: flex; list-style: none; gap: 26px; margin: 0; padding: 0; }
.hns-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: var(--hns-text-muted);
  position: relative;
  padding-bottom: 4px;
}
.hns-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--hns-primary);
  transition: width 0.2s ease;
}
.hns-nav a:hover, .hns-nav a.is-active { color: var(--hns-text); }
.hns-nav a:hover::after, .hns-nav a.is-active::after { width: 100%; }

.hns-head__actions { display: none; align-items: center; gap: 10px; }

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

/* Mobile panel */
.hns-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 20, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 70;
}
body.hns-menu-open .hns-mobile-overlay { opacity: 1; pointer-events: auto; }

.hns-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 88vw);
  background: var(--hns-bg-soft);
  border-left: 1px solid var(--hns-border-strong);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 80;
  display: flex;
  flex-direction: column;
  padding: 18px;
  overflow-y: auto;
}
body.hns-menu-open .hns-mobile-panel { transform: translateX(0); }

.hns-mobile-panel__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.hns-mobile-panel__logo img { height: 28px; }
.hns-mobile-panel__close {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--hns-border-strong);
  background: var(--hns-surface); color: var(--hns-text); font-size: 18px; cursor: pointer;
}
.hns-mobile-panel__nav { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.hns-mobile-panel__nav a {
  display: block; padding: 12px 10px; border-radius: 8px; text-decoration: none;
  font-weight: 700; color: var(--hns-text); font-size: 15px;
}
.hns-mobile-panel__nav a.is-active, .hns-mobile-panel__nav a:hover { background: var(--hns-surface-2); }
.hns-mobile-panel__actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }

@media (min-width: 768px) {
  .hns-mobile-overlay, .hns-mobile-panel { display: none; }
}

/* ---------- Hero (original — gradient + hand-built decorative SVG, no stock banners) ---------- */

.hns-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 40px;
  background:
    radial-gradient(560px 340px at 82% 15%, rgba(255, 138, 30, 0.28), transparent 65%),
    radial-gradient(480px 320px at 8% 90%, rgba(255, 61, 129, 0.22), transparent 60%),
    linear-gradient(160deg, #1c0f3a 0%, #170b2e 60%, #140925 100%);
  border-bottom: 1px solid var(--hns-border);
}

.hns-hero__decor { position: absolute; inset: 0; pointer-events: none; opacity: 0.9; }

.hns-hero__content { position: relative; z-index: 2;}

.hns-hero__title { font-size: 30px; margin-bottom: 14px; }
.hns-hero__subtitle { font-size: 16px; color: var(--hns-text-muted); margin-bottom: 24px; }

.hns-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

.hns-hero__facts { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.hns-hero__facts li {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--hns-text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hns-border-strong);
  padding: 8px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (min-width: 768px) {
  .hns-hero { padding: 76px 0 66px; }
  .hns-hero__title { font-size: 46px; }
  .hns-hero__subtitle { font-size: 18px; }
}

/* ---------- Cards & surfaces ---------- */

.hns-card {
  background: var(--hns-surface);
  border: 1px solid var(--hns-border-strong);
  border-radius: var(--hns-radius);
  padding: 24px;
}

.hns-grid-2 { display: flex; flex-wrap: wrap; gap: 20px; }
.hns-grid-2 > * { flex: 1 1 100%; }
@media (min-width: 768px) {
  .hns-grid-2 > * { flex: 1 1 calc(50% - 10px); }
}

.hns-grid-3 { display: flex; flex-wrap: wrap; gap: 18px; }
.hns-grid-3 > * { flex: 1 1 100%; }
@media (min-width: 768px) {
  .hns-grid-3 > * { flex: 1 1 calc(33.333% - 12px); }
}

/* ---------- Welcome packages ---------- */

.hns-packages { display: flex; flex-direction: column; gap: 22px; }

.hns-package {
  background: var(--hns-surface);
  border: 1px solid var(--hns-border-strong);
  border-radius: var(--hns-radius-lg);
  overflow: hidden;
}

.hns-package__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--hns-surface-2);
  border-bottom: 1px solid var(--hns-border-strong);
  flex-wrap: wrap;
}

.hns-package__video {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.hns-package__heading { flex: 1 1 200px; }
.hns-package__name { margin: 0 0 4px; font-size: 20px; }
.hns-package__tag { margin: 0; font-size: 13px; color: var(--hns-text-dim); }

.hns-package__total {
  font-weight: 800;
  font-size: 14px;
  color: var(--hns-primary-2);
  background: rgba(255, 138, 30, 0.12);
  border: 1px solid rgba(255, 138, 30, 0.3);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.hns-package__body { padding: 22px; display: flex; flex-direction: column; gap: 16px; }

.hns-stage { display: flex; gap: 14px; align-items: flex-start; }

.hns-stage__img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
}

.hns-stage__body { flex: 1; min-width: 0; }
.hns-stage__label { margin: 0 0 3px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--hns-accent-2); }
.hns-stage__offer { margin: 0 0 3px; font-weight: 800; font-size: 16px; color: var(--hns-text); }
.hns-stage__game { margin: 0 0 8px; font-size: 13px; color: var(--hns-text-dim); }

.hns-stage__terms { display: flex; flex-wrap: wrap; gap: 6px; }
.hns-stage__term {
  font-size: 11px;
  font-weight: 700;
  color: var(--hns-text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hns-border);
  padding: 4px 9px;
  border-radius: 999px;
}

.hns-stage__speed {
  margin-top: 10px;
  font-size: 13px;
  background: rgba(255, 61, 129, 0.1);
  border: 1px solid rgba(255, 61, 129, 0.35);
  color: var(--hns-text);
  padding: 10px 14px;
  border-radius: 10px;
}
.hns-stage__speed strong { color: var(--hns-accent); }

/* ---------- Affiliate bonus cards ---------- */

.hns-aff-grid { display: flex; flex-wrap: wrap; gap: 18px; }

.hns-aff-bonus {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--hns-surface);
  border: 1px solid var(--hns-border-strong);
  border-radius: var(--hns-radius);
  padding: 16px;
  text-decoration: none;
  color: var(--hns-text);
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.hns-aff-bonus:hover { border-color: var(--hns-primary); transform: translateY(-2px); }

.hns-aff-bonus__img { width: 74px; height: 74px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.hns-aff-bonus__body { flex: 1; min-width: 0; }
.hns-aff-bonus__offer { display: block; font-weight: 800; font-size: 16px; color: var(--hns-primary-2); }
.hns-aff-bonus__game { display: block; font-size: 13px; color: var(--hns-text-dim); margin-bottom: 8px; }
.hns-aff-bonus__cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hns-ink);
  background: linear-gradient(135deg, var(--hns-primary), var(--hns-primary-2));
  padding: 7px 14px;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .hns-aff-bonus { flex: 1 1 calc(50% - 9px); }
}

/* ---------- Comparison table ---------- */

.hns-table-wrap { overflow-x: auto; border-radius: var(--hns-radius); border: 1px solid var(--hns-border-strong); }
.hns-table { width: 100%; border-collapse: collapse; min-width: 480px; background: var(--hns-surface); }
.hns-table th, .hns-table td { text-align: left; padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--hns-border); }
.hns-table th { background: var(--hns-surface-2); font-weight: 800; color: var(--hns-primary-2); text-transform: uppercase; font-size: 12px; letter-spacing: 0.04em; }
.hns-table td { color: var(--hns-text-muted); }
.hns-table tr:last-child td { border-bottom: none; }

/* ---------- Games grid ---------- */

.hns-games-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.hns-game-card {
  flex: 0 0 calc(50% - 6px);
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hns-border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.hns-game-card:hover { transform: translateY(-4px); border-color: var(--hns-primary); }
.hns-game-card__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.hns-game-card__name {
  display: block; font-size: 12px; font-weight: 700; padding: 8px 10px;
  color: var(--hns-text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .hns-game-card { flex: 0 0 calc(20% - 9.6px); }
}

.hns-game-category { margin-bottom: 34px; }
.hns-game-category__head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.hns-game-category__icon { width: 22px; height: 22px; flex-shrink: 0; }
.hns-game-category__title { margin: 0; font-size: 18px; }

/* ---------- Providers grid ---------- */

.hns-providers-grid { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hns-provider-card {
  flex: 0 0 calc(33.333% - 8px);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hns-border);
  border-radius: 10px;
  padding: 16px 12px;
}
.hns-provider-card img { width: 100%; max-width: 100px; height: 36px; object-fit: contain; filter: grayscale(35%); opacity: 0.85; transition: filter 0.2s ease, opacity 0.2s ease; }
.hns-provider-card:hover img { filter: grayscale(0%); opacity: 1; }

@media (min-width: 768px) {
  .hns-provider-card { flex: 0 0 calc(16.666% - 10px); }
}

/* ---------- Payments grid ---------- */

.hns-payment-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.hns-payment-card {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hns-border);
  border-radius: 8px;
  padding: 10px 16px;
}
.hns-payment-card img { height: 26px; width: auto; }

/* ---------- FAQ (custom accordion, no <details>) ---------- */

.hns-faq { display: flex; flex-direction: column; gap: 10px; }
.hns-faq__item {
  border: 1px solid var(--hns-border-strong);
  border-radius: var(--hns-radius-sm);
  background: var(--hns-surface);
  overflow: hidden;
}
.hns-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  background: none;
  border: none;
  color: var(--hns-text);
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}
.hns-faq__icon { flex-shrink: 0; width: 20px; height: 20px; transition: transform 0.25s ease; }
.hns-faq__item.is-open .hns-faq__icon { transform: rotate(45deg); }

.hns-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.hns-faq__answer-inner { padding: 0 18px 18px; }
.hns-faq__answer-inner p { margin: 0; color: var(--hns-text-muted); font-size: 14px; }

/* ---------- Reviews slider ---------- */

.hns-rating-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 26px; }
.hns-rating-summary__score { font-size: 22px; font-weight: 900; color: var(--hns-primary-2); }
.hns-stars { color: var(--hns-primary-2); letter-spacing: 2px; }
.hns-rating-summary__count { font-size: 13px; color: var(--hns-text-dim); }

.hns-reviews-slider { position: relative; overflow: hidden; }
.hns-reviews-track { display: flex; gap: 18px; transition: transform 0.4s ease; }

.hns-review-card {
  flex: 0 0 100%;
  min-width: 0;
  background: var(--hns-surface);
  border: 1px solid var(--hns-border-strong);
  border-radius: var(--hns-radius);
  padding: 22px;
}
.hns-review-card__header { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 6px; }
.hns-review-card__header h4 { margin: 0; font-size: 15px; }
.hns-review-card__stars { color: var(--hns-primary-2); font-size: 13px; }
.hns-review-card__meta { font-size: 12px; color: var(--hns-text-dim); margin-bottom: 10px; }
.hns-review-card p:last-child { margin: 0; font-size: 14px; color: var(--hns-text-muted); }

@media (min-width: 768px) {
  .hns-review-card { flex: 0 0 calc(50% - 9px); }
}
@media (min-width: 1020px) {
  .hns-review-card { flex: 0 0 calc(33.333% - 12px); }
}

.hns-slider-controls { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 26px; }
.hns-slider-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--hns-border-strong);
  background: var(--hns-surface-2);
  color: var(--hns-text);
  cursor: pointer;
  font-size: 16px;
}
.hns-slider-btn:hover { background: var(--hns-surface); border-color: var(--hns-primary); }
.hns-slider-dots { display: flex; gap: 8px; }
.hns-slider-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--hns-border-strong); cursor: pointer; padding: 0; }
.hns-slider-dot.is-active { background: var(--hns-primary); }

/* ---------- Media + text pattern ---------- */

.hns-split { display: flex; flex-direction: column; gap: 28px; align-items: center; }
.hns-split__media { width: 100%; }
.hns-split__media svg { width: 100%; height: auto; }
.hns-split--reverse { flex-direction: column-reverse; }

@media (min-width: 768px) {
  .hns-split { flex-direction: row; gap: 44px; }
  .hns-split--reverse { flex-direction: row-reverse; }
  .hns-split__media, .hns-split__text { flex: 1 1 50%; }
}

/* ---------- Quick facts strip ---------- */

.hns-facts-strip { display: flex; flex-wrap: wrap; gap: 14px; }
.hns-fact {
  flex: 1 1 140px;
  background: var(--hns-surface);
  border: 1px solid var(--hns-border-strong);
  border-radius: var(--hns-radius-sm);
  padding: 16px;
}
.hns-fact__value { display: block; font-size: 20px; font-weight: 900; color: var(--hns-primary-2); margin-bottom: 2px; }
.hns-fact__label { display: block; font-size: 12px; color: var(--hns-text-dim); }

/* ---------- Steps list ---------- */

.hns-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.hns-steps li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--hns-surface);
  border: 1px solid var(--hns-border-strong);
  border-radius: var(--hns-radius-sm);
  padding: 14px 16px;
  color: var(--hns-text);
}
.hns-steps__num {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--hns-primary), var(--hns-primary-2));
  color: var(--hns-ink); font-weight: 900; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Footer ---------- */

.hns-footer { background: #100722; border-top: 1px solid var(--hns-border); padding: 48px 0 26px; margin-top: 20px; }

.hns-footer__top { display: flex; flex-direction: column; gap: 36px; margin-bottom: 36px; }
.hns-footer__brand { max-width: 340px; }
.hns-footer__brand img { height: 30px; margin-bottom: 14px; }
.hns-footer__brand p { font-size: 13px; }

.hns-footer__cols { display: flex; flex-wrap: wrap; gap: 32px; }
.hns-footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--hns-primary-2); margin-bottom: 14px; }
.hns-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.hns-footer__col a { text-decoration: none; font-size: 14px; color: var(--hns-text-muted); }
.hns-footer__col a:hover { color: var(--hns-text); }

.hns-footer__social { display: flex; gap: 10px; margin-top: 14px; }
.hns-footer__social a {
  width: 34px; height: 34px; border-radius: 8px; background: var(--hns-surface);
  border: 1px solid var(--hns-border-strong); display: flex; align-items: center; justify-content: center;
}
.hns-footer__social img { width: 16px; height: 16px; }

.hns-footer__testimonials { display: flex; flex-wrap: wrap; gap: 10px; padding: 20px 0; border-top: 1px solid var(--hns-border); border-bottom: 1px solid var(--hns-border); margin-bottom: 22px; }
.hns-footer__testimonials img {
  flex: 1 1 calc(20% - 8px);
  height: 20px; width: auto; max-width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 12px 8px;
  box-sizing: content-box;
  opacity: 0.75;
}

.hns-footer__bottom { display: flex; flex-direction: column; gap: 14px; }
.hns-footer__legal { font-size: 12px; color: var(--hns-text-dim); line-height: 1.7; }
.hns-footer__copy { font-size: 12px; color: var(--hns-text-dim); }

@media (min-width: 768px) {
  .hns-footer__top { flex-direction: row; justify-content: space-between; }
  .hns-footer__testimonials img { flex: 0 0 calc(10% - 9px); }
  .hns-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
