/* ==========================================================================
   HitNSpin Deutschland (AR) — "Nacht Gold" design system
   Prefix: hde-  |  Flexbox only  |  RTL (dir=rtl)  |  Font: Cairo 400/700
   ========================================================================== */

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

:root {
  --hde-bg: #0d1117;
  --hde-bg-2: #161b22;
  --hde-ink: #e6edf3;
  --hde-ink-soft: #8b949e;
  --hde-panel: #1c2230;
  --hde-panel-2: #21283a;
  --hde-line: #2d3748;
  --hde-gold: #f0b429;
  --hde-gold-deep: #c98f1a;
  --hde-gold-subtle: rgba(240,180,41,.1);
  --hde-navy: #0d1117;
  --hde-navy-2: #090c12;
  --hde-green: #3fb950;
  --hde-radius: 14px;
  --hde-radius-sm: 8px;
  --hde-shadow: 0 18px 40px -20px rgba(0,0,0,.6);
  --hde-wrap: 1160px;
}

/* ---- Reset ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--hde-bg);
  color: var(--hde-ink);
  font-family: 'Cairo', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

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

.hde-section { padding: 64px 0; }
.hde-section--panel { background: var(--hde-bg-2); }
.hde-section--dark { background: var(--hde-navy-2); }

.hde-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hde-gold);
  margin-bottom: 12px;
}

.hde-h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
  max-width: 760px;
}
.hde-h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.hde-lead {
  font-size: 18px;
  color: var(--hde-ink-soft);
  max-width: 720px;
  margin-bottom: 8px;
}
.hde-p { font-size: 16px; color: var(--hde-ink-soft); }

.hde-center { text-align: center; }
.hde-center .hde-lead { margin-right: auto; margin-left: auto; }
.hde-center .hde-h2 { margin-right: auto; margin-left: auto; }

/* ---- Buttons ---- */
.hde-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--hde-radius-sm);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  border: 1px solid transparent;
  transition: background .18s, border-color .18s, color .18s, transform .12s;
  white-space: nowrap;
  font-family: 'Cairo', sans-serif;
}
.hde-btn:active { transform: translateY(1px); }
.hde-btn--primary { background: var(--hde-gold); color: #0d1117; }
.hde-btn--primary:hover { background: var(--hde-gold-deep); }
.hde-btn--ghost {
  background: transparent;
  border-color: rgba(240,180,41,.5);
  color: var(--hde-gold);
}
.hde-btn--ghost:hover { background: var(--hde-gold-subtle); }
.hde-btn--lg { padding: 15px 32px; font-size: 14px; }
.hde-btn--full { width: 100%; }
.hde-btn--sm { padding: 9px 18px; font-size: 12px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.hde-header {
  background: var(--hde-navy-2);
  border-bottom: 1px solid var(--hde-line);
  position: sticky;
  top: 0;
  z-index: 60;
}
.hde-header__bar {
  max-width: var(--hde-wrap);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  direction: rtl;
}
.hde-head__right { display: flex; align-items: center; gap: 14px; }
.hde-burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--hde-radius-sm);
  border: 1px solid rgba(240,180,41,.3);
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.hde-burger span { width: 18px; height: 2px; background: var(--hde-gold); display: block; }
.hde-logo img { height: 36px; width: auto; display: block; }
.hde-nav ul { display: flex; align-items: center; gap: 28px; flex-direction: row; }
.hde-nav a {
  color: #c9d1d9;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 0;
  position: relative;
}
.hde-nav a::after {
  content: '';
  position: absolute;
  right: 0; left: 0; bottom: -2px;
  height: 2px;
  background: var(--hde-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .18s;
}
.hde-nav a:hover::after,
.hde-nav a.active::after { transform: scaleX(1); }
.hde-nav a.active { color: var(--hde-gold); }
.hde-head__actions { display: flex; align-items: center; gap: 10px; }

.hde-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s;
  z-index: 70;
}
.hde-mobile-overlay.is-open { opacity: 1; visibility: visible; }
.hde-mobile-panel {
  position: fixed;
  top: 0; left: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--hde-panel);
  border-left: 1px solid var(--hde-line);
  transform: translateX(-100%);
  transition: transform .25s;
  z-index: 80;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.hde-mobile-panel.is-open { transform: translateX(0); }
.hde-mobile-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-direction: row-reverse;
}
.hde-mobile-panel__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(240,180,41,.4);
  background: transparent;
  color: var(--hde-gold);
  font-size: 16px;
}
.hde-mobile-panel__nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 24px; }
.hde-mobile-panel__nav a {
  display: block;
  padding: 12px 6px;
  color: #c9d1d9;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 1px solid var(--hde-line);
  text-align: right;
}
.hde-mobile-panel__nav a.active { color: var(--hde-gold); }
.hde-mobile-panel__actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
body.hde-menu-open { overflow: hidden; }

@media (max-width: 980px) {
  .hde-nav { display: none; }
  .hde-burger { display: flex; }
}
@media (max-width: 560px) {
  .hde-head__actions .hde-btn--ghost { display: none; }
}

/* ==========================================================================
   HERO — full-width banner with overlay
   ========================================================================== */
.hde-hero {
  position: relative;
  overflow: hidden;
  background: var(--hde-navy-2);
}
.hde-hero picture { display: block; width: 100%; }
.hde-hero picture img {
  width: 100%;
  display: block;
  max-height: 620px;
  object-fit: cover;
  object-position: center center;
}
/* Character overlay (transparent PNG over background) */
.hde-hero__char {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44%;
  max-width: 540px;
  pointer-events: none;
  z-index: 2;
}
.hde-hero__char img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 40px rgba(240,180,41,.18));
}
.hde-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 40px 0;
  /* Gradient: dark on right (RTL text side), fades left toward character */
  background: linear-gradient(to left, rgba(13,17,23,.92) 30%, rgba(13,17,23,.55) 60%, rgba(13,17,23,.08) 100%);
  pointer-events: none;
  z-index: 3;
}
.hde-hero__overlay > * { pointer-events: auto; }
.hde-hero__overlay .hde-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hde-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(240,180,41,.15);
  border: 1px solid rgba(240,180,41,.4);
  color: var(--hde-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hde-hero__h1 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 600px;
  text-align: right;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hde-hero__h1 em { color: var(--hde-gold); font-style: normal; }
.hde-hero__sub {
  font-size: 17px;
  color: #c9d1d9;
  max-width: 540px;
  margin-bottom: 28px;
  text-align: right;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hde-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(240,180,41,.2);
  border-bottom: 1px solid rgba(240,180,41,.2);
  margin-bottom: 28px;
  direction: rtl;
}
.hde-hero__stat {
  flex: 1 1 33%;
  padding: 14px 0 14px 18px;
  border-left: 1px solid rgba(240,180,41,.2);
}
.hde-hero__stat:last-child { border-left: none; }
.hde-hero__stat-val {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--hde-gold);
  font-variant-numeric: tabular-nums;
}
.hde-hero__stat-lbl { display: block; font-size: 11px; color: #8b949e; margin-top: 2px; }
.hde-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }

@media (max-width: 760px) {
  .hde-hero__h1 { font-size: 26px; }
  .hde-hero__sub { font-size: 14px; }
  .hde-hero__overlay { background: linear-gradient(to bottom, rgba(13,17,23,.65) 0%, rgba(13,17,23,.92) 75%); }
  .hde-hero__overlay .hde-wrap { align-items: center; }
  .hde-hero__h1, .hde-hero__sub { text-align: center; max-width: 100%; }
  .hde-hero__actions { justify-content: center; }
  .hde-hero__stats { justify-content: center; }
  .hde-hero__badge { margin-right: 0; }
  .hde-hero picture img { max-height: 480px; object-position: center top; }
  .hde-hero__char { display: none; }
}

/* ============================================================
   SPLIT HERO — homepage only (.hde-hero--split)
   Two real columns: char LEFT, text RIGHT (RTL)
   Background image is positioned absolute behind both.
   ============================================================ */
.hde-hero--split picture {
  position: absolute;
  inset: 0;
}
.hde-hero--split picture img {
  max-height: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Gradient: heavy dark on RIGHT (text), fades to near-transparent LEFT (char) */
.hde-hero--split::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to left,
    rgba(13,17,23,.97) 22%,
    rgba(13,17,23,.75) 48%,
    rgba(13,17,23,.15) 75%,
    transparent 100%
  );
}
/* Two-column row — sits above gradient */
.hde-hero__columns {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding-top: 56px;
}
/* LEFT column: character (RTL "end" / visual left) */
.hde-hero__char-col {
  flex: 0 0 44%;
  display: flex;
  align-items: flex-end;
}
.hde-hero__char-col img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 48px rgba(240,180,41,.22));
}
/* RIGHT column: text (RTL "start" / visual right) */
.hde-hero__text-col {
  flex: 1;
  min-width: 0;
  padding: 64px 0 52px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
/* Phone mockup char: center-aligned since image is shorter/squarer */
.hde-hero__char-col--phone {
  align-items: center;
  padding-bottom: 20px;
}
.hde-hero__char-col--phone img {
  max-width: 340px;
  width: 90%;
}

@media (max-width: 760px) {
  .hde-hero--split picture img { height: 480px; object-position: center top; }
  .hde-hero--split::after {
    background: linear-gradient(to bottom, rgba(13,17,23,.55) 0%, rgba(13,17,23,.94) 60%);
  }
  .hde-hero__columns { flex-direction: column; padding-top: 0; }
  .hde-hero__char-col { display: none; }
  .hde-hero__text-col { padding: 36px 0 40px; align-items: center; }
  .hde-hero__text-col .hde-hero__h1,
  .hde-hero__text-col .hde-hero__sub { text-align: center; max-width: 100%; }
  .hde-hero__text-col .hde-hero__actions { justify-content: center; }
  .hde-hero__text-col .hde-hero__stats { justify-content: center; }
  .hde-hero__text-col .hde-hero__badge { margin-right: 0; }
}

/* ==========================================================================
   GRID / FEATURE CARDS
   ========================================================================== */
.hde-grid { display: flex; flex-wrap: wrap; gap: 24px; }
.hde-grid--3 > * { flex: 1 1 calc(33.333% - 16px); min-width: 240px; }
.hde-grid--2 > * { flex: 1 1 calc(50% - 12px); min-width: 260px; }
.hde-grid--4 > * { flex: 1 1 calc(25% - 18px); min-width: 200px; }

.hde-card {
  background: var(--hde-panel);
  border: 1px solid var(--hde-line);
  border-radius: var(--hde-radius);
  padding: 26px;
  box-shadow: var(--hde-shadow);
}
.hde-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--hde-radius-sm);
  background: var(--hde-gold-subtle);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--hde-gold);
}
.hde-card__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.hde-card__text { font-size: 14px; color: var(--hde-ink-soft); }

/* ==========================================================================
   ALTERNATING IMAGE / TEXT
   ========================================================================== */
.hde-split {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hde-split--reverse { flex-direction: row-reverse; }
.hde-split__media { flex: 1 1 420px; min-width: 280px; }
.hde-split__media img {
  border-radius: var(--hde-radius);
  border: 1px solid var(--hde-line);
  box-shadow: var(--hde-shadow);
  width: 100%;
  object-fit: cover;
}
.hde-split__text { flex: 1 1 420px; min-width: 280px; }
.hde-split__text .hde-h2 { max-width: none; }

/* ==========================================================================
   PACKAGE SEGMENTED SWITCHER
   ========================================================================== */
.hde-pkgswitch { position: relative; }
.hde-pkgswitch__radio { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }

.hde-pkgswitch__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--hde-panel);
  border: 1px solid var(--hde-line);
  border-radius: var(--hde-radius);
  padding: 6px;
  margin-bottom: 24px;
  flex-direction: row;
}
.hde-pkgswitch__tab {
  flex: 1 1 auto;
  text-align: center;
  padding: 12px 14px;
  border-radius: var(--hde-radius-sm);
  font-weight: 700;
  font-size: 14px;
  color: var(--hde-ink-soft);
  cursor: pointer;
  transition: background .16s, color .16s;
  user-select: none;
  font-family: 'Cairo', sans-serif;
}
.hde-pkgswitch__tab:hover { color: var(--hde-gold); }

.hde-pkgswitch__panels [data-panel] { display: none; }

#hde-tab-thor:checked ~ .hde-pkgswitch__tabs label[for="hde-tab-thor"],
#hde-tab-lagertha:checked ~ .hde-pkgswitch__tabs label[for="hde-tab-lagertha"],
#hde-tab-freya:checked ~ .hde-pkgswitch__tabs label[for="hde-tab-freya"],
#hde-tab-ragnar:checked ~ .hde-pkgswitch__tabs label[for="hde-tab-ragnar"] {
  background: var(--hde-gold);
  color: #0d1117;
}
#hde-tab-thor:checked ~ .hde-pkgswitch__panels [data-panel="thor"],
#hde-tab-lagertha:checked ~ .hde-pkgswitch__panels [data-panel="lagertha"],
#hde-tab-freya:checked ~ .hde-pkgswitch__panels [data-panel="freya"],
#hde-tab-ragnar:checked ~ .hde-pkgswitch__panels [data-panel="ragnar"] { display: block; }

#hde-btab-thor:checked ~ .hde-pkgswitch__tabs label[for="hde-btab-thor"],
#hde-btab-lagertha:checked ~ .hde-pkgswitch__tabs label[for="hde-btab-lagertha"],
#hde-btab-freya:checked ~ .hde-pkgswitch__tabs label[for="hde-btab-freya"],
#hde-btab-ragnar:checked ~ .hde-pkgswitch__tabs label[for="hde-btab-ragnar"] {
  background: var(--hde-gold);
  color: #0d1117;
}
#hde-btab-thor:checked ~ .hde-pkgswitch__panels [data-panel="thor"],
#hde-btab-lagertha:checked ~ .hde-pkgswitch__panels [data-panel="lagertha"],
#hde-btab-freya:checked ~ .hde-pkgswitch__panels [data-panel="freya"],
#hde-btab-ragnar:checked ~ .hde-pkgswitch__panels [data-panel="ragnar"] { display: block; }

.hde-pkgpanel {
  background: var(--hde-panel);
  border: 1px solid var(--hde-line);
  border-radius: var(--hde-radius);
  box-shadow: var(--hde-shadow);
  padding: 28px;
}
.hde-pkgpanel__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.hde-pkgpanel__vid {
  width: 64px; height: 64px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--hde-line);
  flex-shrink: 0;
}
.hde-pkgpanel__name { font-size: 20px; font-weight: 700; }
.hde-pkgpanel__tag { font-size: 12px; color: var(--hde-ink-soft); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.hde-pkgpanel__total {
  margin-right: auto;
  text-align: left;
  font-variant-numeric: tabular-nums;
}
.hde-pkgpanel__total b { display: block; font-size: 20px; color: var(--hde-gold); }
.hde-pkgpanel__total span { font-size: 12px; color: var(--hde-ink-soft); }

.hde-stage {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--hde-line);
  flex-direction: row-reverse;
}
.hde-stage:first-of-type { border-top: none; }
.hde-stage__img {
  width: 72px; height: 72px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--hde-line);
}
.hde-stage__body { flex: 1 1 auto; min-width: 0; }
.hde-stage__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--hde-ink-soft); margin-bottom: 4px; }
.hde-stage__offer { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.hde-stage__game { font-size: 13px; color: var(--hde-ink-soft); margin-bottom: 8px; }
.hde-stage__terms { display: flex; flex-wrap: wrap; gap: 6px; flex-direction: row-reverse; justify-content: flex-start; }
.hde-stage__term {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--hde-panel-2);
  border: 1px solid var(--hde-line);
  color: var(--hde-ink-soft);
}
.hde-stage__speed {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: var(--hde-radius-sm);
  background: rgba(240,180,41,.08);
  border: 1px solid rgba(240,180,41,.25);
  font-size: 13px;
}
.hde-stage__speed strong { color: var(--hde-gold); }
.hde-pkgpanel__foot {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--hde-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.hde-pkgpanel__note { font-size: 13px; color: var(--hde-ink-soft); }
.hde-pkgpanel__warn {
  font-size: 13px;
  color: var(--hde-gold-deep);
  font-weight: 700;
  background: var(--hde-gold-subtle);
  border: 1px solid rgba(240,180,41,.3);
  border-radius: var(--hde-radius-sm);
  padding: 10px 12px;
  margin-top: 10px;
}

/* ==========================================================================
   SPEC TABLE
   ========================================================================== */
.hde-spec-wrap {
  border: 1px solid var(--hde-line);
  border-radius: var(--hde-radius);
  overflow: hidden;
  background: var(--hde-panel);
  box-shadow: var(--hde-shadow);
}
.hde-spec { width: 100%; font-size: 14px; }
.hde-spec thead th {
  background: var(--hde-panel-2);
  color: var(--hde-gold);
  padding: 14px 18px;
  text-align: right;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-bottom: 1px solid var(--hde-line);
}
.hde-spec tbody td {
  padding: 14px 18px;
  border-top: 1px solid var(--hde-line);
  text-align: right;
}
.hde-spec tbody tr:nth-child(even) { background: var(--hde-panel-2); }
.hde-spec td:first-child { font-weight: 700; }
.hde-spec td:nth-child(2) { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--hde-gold); }

.hde-table-wrap {
  border: 1px solid var(--hde-line);
  border-radius: var(--hde-radius);
  overflow: hidden;
  box-shadow: var(--hde-shadow);
}
.hde-table { width: 100%; font-size: 14px; background: var(--hde-panel); }
.hde-table th {
  background: var(--hde-panel-2);
  padding: 12px 16px;
  text-align: right;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--hde-ink-soft);
  border-bottom: 1px solid var(--hde-line);
}
.hde-table td { padding: 12px 16px; border-top: 1px solid var(--hde-line); text-align: right; }
.hde-table tbody tr:nth-child(even) { background: var(--hde-panel-2); }

/* ==========================================================================
   PROVIDERS SLIDER
   ========================================================================== */
.hde-providers-slider { position: relative; overflow: hidden; }
.hde-providers-track { display: flex; gap: 14px; transition: transform .4s ease; }
.hde-provider-card {
  flex: 0 0 calc(16.666% - 12px);
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  background: var(--hde-panel);
  border: 1px solid var(--hde-line);
  border-radius: var(--hde-radius-sm);
  text-align: center;
}
.hde-provider-card:hover { border-color: var(--hde-gold); }
.hde-provider-card img { object-fit: contain; background: rgba(255,255,255,.06); padding: 6px; border-radius: 8px; }
.hde-provider-card span { font-size: 12px; font-weight: 600; color: var(--hde-ink-soft); }
@media (max-width: 980px) { .hde-provider-card { flex: 0 0 calc(25% - 11px); } }
@media (max-width: 640px) { .hde-provider-card { flex: 0 0 calc(50% - 7px); } }

/* ==========================================================================
   GAME CARDS
   ========================================================================== */
.hde-games { display: flex; flex-wrap: wrap; gap: 18px; }
.hde-game-card {
  flex: 1 1 180px;
  max-width: 220px;
  background: var(--hde-panel);
  border: 1px solid var(--hde-line);
  border-radius: var(--hde-radius);
  overflow: hidden;
  box-shadow: var(--hde-shadow);
  display: flex;
  flex-direction: column;
}
.hde-game-card:hover { border-color: var(--hde-gold); }
.hde-game-card__img { width: 100%; object-fit: cover; }
.hde-game-card__body { padding: 12px 14px; }
.hde-game-card__title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.hde-game-card__meta { font-size: 12px; color: var(--hde-ink-soft); }

/* ==========================================================================
   STEPS
   ========================================================================== */
.hde-steps { display: flex; flex-wrap: wrap; gap: 20px; }
.hde-step {
  flex: 1 1 calc(25% - 15px);
  min-width: 200px;
  padding: 20px 18px 18px;
  background: var(--hde-panel);
  border: 1px solid var(--hde-line);
  border-radius: var(--hde-radius);
}
.hde-step__num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--hde-gold);
  color: #0d1117;
  font-weight: 700;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.hde-step__title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.hde-step__text { font-size: 13px; color: var(--hde-ink-soft); }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.hde-faq { display: flex; flex-direction: column; gap: 10px; }
.hde-faq__item {
  border: 1px solid var(--hde-line);
  border-radius: var(--hde-radius-sm);
  background: var(--hde-panel);
  overflow: hidden;
}
.hde-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  text-align: right;
  font-size: 15px;
  font-weight: 700;
  color: var(--hde-ink);
  flex-direction: row-reverse;
}
.hde-faq__icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  position: relative;
}
.hde-faq__icon::before, .hde-faq__icon::after {
  content: '';
  position: absolute;
  background: var(--hde-gold);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hde-faq__icon::before { width: 14px; height: 2px; }
.hde-faq__icon::after { width: 2px; height: 14px; transition: transform .2s; }
.hde-faq__item.is-open .hde-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.hde-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.hde-faq__a p { padding: 0 20px 18px; font-size: 14px; color: var(--hde-ink-soft); text-align: right; }
.hde-faq__item.is-open .hde-faq__a { max-height: 600px; }

/* ==========================================================================
   REVIEWS SLIDER
   ========================================================================== */
.hde-reviews-slider { position: relative; overflow: hidden; }
.hde-reviews-track { display: flex; gap: 20px; transition: transform .4s ease; }
.hde-review-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 260px;
  background: var(--hde-panel);
  border: 1px solid var(--hde-line);
  border-radius: var(--hde-radius);
  padding: 22px;
  box-shadow: var(--hde-shadow);
}
.hde-review-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; flex-direction: row-reverse; }
.hde-review-card__header h4 { font-size: 15px; font-weight: 700; }
.hde-review-card__stars { color: var(--hde-gold); font-size: 13px; }
.hde-review-card__meta { font-size: 12px; color: var(--hde-ink-soft); margin-bottom: 10px; text-align: right; }
.hde-review-card p:last-child { font-size: 14px; color: var(--hde-ink-soft); text-align: right; }
@media (max-width: 980px) { .hde-review-card { flex: 0 0 calc(50% - 10px); } }
@media (max-width: 640px) { .hde-review-card { flex: 0 0 100%; } }

.hde-slider-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
.hde-slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--hde-line);
  background: var(--hde-panel);
  display: flex; align-items: center; justify-content: center;
  color: var(--hde-gold);
}
.hde-slider-btn:hover { border-color: var(--hde-gold); }
.hde-slider-dots { display: flex; gap: 8px; }
.hde-slider-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--hde-line); }
.hde-slider-dot.is-active { background: var(--hde-gold); }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.hde-cta {
  background: linear-gradient(135deg, var(--hde-panel-2) 0%, var(--hde-panel) 100%);
  border: 1px solid var(--hde-line);
  border-radius: var(--hde-radius);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hde-cta::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(240,180,41,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hde-cta h2 { font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.hde-cta p { color: var(--hde-ink-soft); max-width: 560px; margin: 0 auto 22px; }
.hde-cta__btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   LEGAL
   ========================================================================== */
.hde-legal-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; flex-direction: row-reverse; justify-content: flex-start; }
.hde-legal-tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--hde-line);
  background: var(--hde-panel);
  font-size: 13px;
  font-weight: 700;
  color: var(--hde-ink-soft);
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
}
.hde-legal-tab.is-active { background: var(--hde-gold); color: #0d1117; border-color: var(--hde-gold); }
.hde-legal-doc { display: none; }
.hde-legal-doc.is-active { display: block; }
.hde-legal-doc h2 { font-size: 22px; margin: 24px 0 10px; }
.hde-legal-doc h2:first-child { margin-top: 0; }
.hde-legal-doc h3 { font-size: 16px; margin: 18px 0 8px; }
.hde-legal-doc p, .hde-legal-doc li { font-size: 14px; color: var(--hde-ink-soft); margin-bottom: 10px; }
.hde-legal-doc ul { padding-right: 20px; list-style: disc; }
.hde-legal-doc a { color: var(--hde-gold); text-decoration: underline; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.hde-footer { background: var(--hde-navy-2); border-top: 1px solid var(--hde-line); color: #8b949e; padding: 48px 0 24px; }
.hde-foot-testi {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--hde-line);
}
.hde-foot-testi a {
  flex: 1 1 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--hde-line);
  border-radius: var(--hde-radius-sm);
  opacity: .65;
  transition: opacity .18s, border-color .18s;
}
.hde-foot-testi a:hover { opacity: 1; border-color: var(--hde-gold); }
.hde-foot-testi img { height: 22px; width: auto; object-fit: contain; }

.hde-foot-cols { display: flex; flex-wrap: wrap; gap: 40px; margin-bottom: 32px; flex-direction: row-reverse; }
.hde-foot-col { flex: 1 1 200px; text-align: right; }
.hde-foot-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--hde-gold); margin-bottom: 14px; }
.hde-foot-col a, .hde-foot-col p { display: block; font-size: 13px; color: #8b949e; margin-bottom: 10px; }
.hde-foot-col a:hover { color: var(--hde-gold); }
.hde-foot-about img { height: 34px; margin-bottom: 14px; }
.hde-foot-about p { color: #8b949e; font-size: 13px; }
.hde-foot-about .hde-btn { display: inline-flex; width: auto; font-size: 12px; }

.hde-foot-bottom { border-top: 1px solid var(--hde-line); padding-top: 22px; display: flex; gap: 16px; align-items: flex-start; flex-wrap: wrap; flex-direction: row-reverse; }
.hde-18 {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--hde-gold);
  color: var(--hde-gold);
  font-weight: 700;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.hde-foot-bottom p { font-size: 12px; color: #586069; margin: 0 0 6px; text-align: right; }
.hde-foot-bottom a { color: #8b949e; text-decoration: underline; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 760px) {
  .hde-h2 { font-size: 26px; }
  .hde-section { padding: 44px 0; }
  .hde-split, .hde-split--reverse { flex-direction: column; }
  .hde-pkgpanel__total { margin-right: 0; text-align: right; }
  .hde-hero__stat { flex: 1 1 50%; }
  .hde-foot-cols { flex-direction: column; }
}
@media (max-width: 560px) {
  .hde-stage { flex-direction: column; gap: 10px; }
  .hde-stage__img { width: 44px; height: 44px; }
  .hde-steps { flex-direction: column; }
}
