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

:root {
  --bg:      #070c16;
  --bg2:     #0b1320;
  --surf:    #0e1826;
  --surf2:   #142238;
  --border:  #1d2f48;
  --gold:    #c89016;
  --gold-lt: #eabc46;
  --text:    #dde6f3;
  --muted:   #6b87aa;
  --r:       8px;
  --r-lg:    14px;
  --ease:    0.25s ease;
  --wrap:    1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Mulish', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* --- WRAP --- */
.sge5-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* --- BUTTONS --- */
.sge5-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--r); font-weight: 700; font-size: 15px;
  transition: var(--ease); white-space: nowrap; font-family: inherit; cursor: pointer;
}
.sge5-btn--gold { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: #000; }
.sge5-btn--gold:hover { filter: brightness(1.12); transform: translateY(-1px); }
.sge5-btn--ghost { border: 1.5px solid var(--border); color: var(--text); }
.sge5-btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.sge5-btn--lg { padding: 16px 44px; font-size: 17px; }
.sge5-btn--sm { padding: 8px 18px; font-size: 13px; }
.sge5-btn--full { width: 100%; }

/* --- HEADER --- */
.sge5-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,12,22,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.sge5-header__bar {
  max-width: var(--wrap); margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; gap: 24px;
}
.sge5-head__left { display: flex; align-items: center; gap: 12px; }
.sge5-logo { display: flex; align-items: center; }
.sge5-logo img { height: 38px; width: auto; display: block; }.sge5-nav { flex: 1; }
.sge5-nav ul { display: flex; align-items: center; justify-content: center; gap: 2px; }
.sge5-nav a {
  padding: 6px 14px; font-size: 14px; font-weight: 600; color: var(--muted);
  border-radius: 6px; transition: var(--ease); position: relative;
}
.sge5-nav a:hover, .sge5-nav a.active { color: var(--text); }
.sge5-nav a.active::after {
  content: ''; position: absolute; bottom: -3px; left: 14px; right: 14px;
  height: 2px; background: var(--gold); border-radius: 1px;
}
.sge5-head__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* --- BURGER --- */
.sge5-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; border: 1.5px solid var(--border); border-radius: 6px; padding: 8px 7px;
}
.sge5-burger span { display: block; height: 2px; background: var(--text); border-radius: 1px; transition: var(--ease); }

/* --- MOBILE PANEL --- */
.sge5-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 200; opacity: 0; transition: opacity .3s;
}
.sge5-panel {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(300px, 88vw); background: var(--surf2); z-index: 210;
  transform: translateX(-100%); transition: transform .3s ease;
  display: flex; flex-direction: column;
}
.sge5-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.sge5-panel__close {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 6px; font-size: 20px; line-height: 1;
}
.sge5-panel__nav { flex: 1; padding: 12px 0; overflow-y: auto; }
.sge5-panel__nav a { display: block; padding: 12px 20px; font-weight: 600; color: var(--muted); transition: color var(--ease); }
.sge5-panel__nav a:hover, .sge5-panel__nav a.active { color: var(--gold); }
.sge5-panel__actions { padding: 20px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--border); }
body.sge5-menu-open { overflow: hidden; }
body.sge5-menu-open .sge5-overlay { display: block; opacity: 1; }
body.sge5-menu-open .sge5-panel { transform: translateX(0); }

/* --- HERO --- */
.sge5-hero { position: relative; overflow: hidden; }
.sge5-hero picture { display: block; }
.sge5-hero img { width: 100%; height: auto; display: block; }
.sge5-hero__overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: stretch;
  padding: 48px 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(7,12,22,.82) 35%, rgba(7,12,22,.12) 78%);
}
.sge5-hero__overlay > * { pointer-events: auto; }
.sge5-hero__overlay .sge5-wrap { width: 100%; display: flex; flex-direction: column; align-items: flex-start; }
.sge5-hero__tag { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.sge5-hero__h1 { font-size: clamp(26px, 4vw, 50px); font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 14px; }
.sge5-hero__sub { font-size: clamp(14px, 1.4vw, 17px); color: rgba(255,255,255,.82); margin-bottom: 28px; }
.sge5-hero__badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.sge5-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18); border-radius: 20px;
  font-size: 12px; font-weight: 700; color: #fff; backdrop-filter: blur(4px);
}
.sge5-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- TRUST BAR --- */
.sge5-trustbar { background: var(--surf); border-bottom: 1px solid var(--border); padding: 20px 0; }
.sge5-trustbar__row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.sge5-trustbar__item { display: flex; align-items: center; gap: 14px; padding: 10px 32px; border-right: 1px solid var(--border); }
.sge5-trustbar__item:last-child { border-right: none; }
.sge5-trustbar__num { font-size: 24px; font-weight: 900; color: var(--gold); line-height: 1; }
.sge5-trustbar__lbl { font-size: 11px; color: var(--muted); line-height: 1.3; }

/* --- SECTIONS --- */
.sge5-section { padding: 72px 0; }
.sge5-section--alt { background: var(--bg2); }
.sge5-section--dark { background: var(--surf); }
.sge5-section__head { text-align: center; margin-bottom: 48px; }
.sge5-section__tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.sge5-h2 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.sge5-lead { font-size: 15px; color: var(--muted); margin: 0 auto; line-height: 1.7; }

/* --- GLANCE CARDS --- */
.sge5-glance { display: flex; gap: 20px; flex-wrap: wrap; }
.sge5-glance__card {
  flex: 1 1 220px; background: var(--surf); border: 1px solid var(--border);
  border-top: 3px solid var(--gold); border-radius: var(--r-lg); padding: 24px; transition: var(--ease);
}
.sge5-glance__card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.35); }
.sge5-glance__icon { margin-bottom: 14px; color: var(--gold); }
.sge5-glance__title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.sge5-glance__text { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* --- PROSE --- */
.sge5-prose h2 { font-size: clamp(19px, 2.5vw, 27px); font-weight: 800; margin: 44px 0 14px; color: var(--text); }
.sge5-prose h2:first-child { margin-top: 0; }
.sge5-prose h3 { font-size: 17px; font-weight: 700; margin: 28px 0 10px; color: var(--gold); }
.sge5-prose p { font-size: 15px; color: var(--muted); margin-bottom: 16px; line-height: 1.7; }
.sge5-prose p:last-child { margin-bottom: 0; }

/* --- CONTENT ROW --- */
.sge5-content-row { display: flex; gap: 48px; align-items: flex-start; }
.sge5-content-row__main { flex: 1; min-width: 0; }
.sge5-content-row__side { flex: 0 0 320px; }

/* --- HBOX & NOTICE --- */
.sge5-hbox {
  background: linear-gradient(135deg, rgba(200,144,22,.09), rgba(200,144,22,.02));
  border: 1px solid rgba(200,144,22,.22); border-radius: var(--r-lg); padding: 24px 28px; margin: 28px 0;
}
.sge5-hbox__title { font-size: 16px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.sge5-hbox p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.65; }
.sge5-notice {
  display: flex; gap: 14px; padding: 16px 20px;
  background: rgba(59,130,246,.07); border: 1px solid rgba(59,130,246,.22);
  border-radius: var(--r); margin: 20px 0;
}
.sge5-notice__icon { flex-shrink: 0; color: #60a5fa; margin-top: 2px; }
.sge5-notice__body { font-size: 14px; color: var(--muted); line-height: 1.65; }
.sge5-notice__body strong { color: var(--text); }

/* --- STATS --- */
.sge5-stats { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0; }
.sge5-stat { flex: 1 1 110px; background: var(--surf2); border: 1px solid var(--border); border-radius: var(--r); padding: 16px; text-align: center; }
.sge5-stat__num { font-size: 26px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.sge5-stat__lbl { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* --- BONUS STAGES --- */
.sge5-stages { display: flex; gap: 20px; flex-wrap: wrap; }
.sge5-stage {
  flex: 1 1 240px; background: var(--surf2); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; transition: var(--ease); display: flex; flex-direction: column;
}
.sge5-stage:hover { border-color: rgba(200,144,22,.5); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(200,144,22,.1); }
.sge5-stage__head { padding: 18px 22px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.sge5-stage__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900; color: #000; flex-shrink: 0;
}
.sge5-stage__lbl { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.sge5-stage__body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.sge5-stage__pct { font-size: 38px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 3px; }
.sge5-stage__amt { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.sge5-stage__rows { margin-bottom: 20px; }
.sge5-stage__row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.sge5-stage__row:last-child { border-bottom: none; }
.sge5-stage__row-k { color: var(--muted); }
.sge5-stage__row-v { font-weight: 700; }

/* --- BONUS WIDGET CARDS --- */
.sge5-bonus-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.sge5-bonus-card {
  flex: 1 1 240px; background: var(--surf2); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: var(--ease);
}
.sge5-bonus-card:hover { border-color: rgba(200,144,22,.4); box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.sge5-bonus-card__img { aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg,var(--surf2),var(--surf)); }
.sge5-bonus-card__img img { width: 100%; height: 100%; object-fit: cover; }
.sge5-bonus-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.sge5-bonus-card__stage { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 6px; }
.sge5-bonus-card__h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; line-height: 1.3; }
.sge5-bonus-card__desc { font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.6; flex: 1; }
.sge5-bonus-stats { list-style: none; margin: 0 0 14px; padding: 0; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.sge5-bonus-stats li { display: flex; justify-content: space-between; align-items: center; padding: 7px 12px; font-size: 12px; border-bottom: 1px solid var(--border); }
.sge5-bonus-stats li:last-child { border-bottom: none; }
.sge5-bonus-stats li:nth-child(odd) { background: rgba(255,255,255,.02); }
.sge5-bonus-stats li span:first-child { color: var(--muted); }
.sge5-bonus-stats li span:last-child { font-weight: 700; text-align: right; }
.sge5-bonus-card__terms { font-size: 11px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }

/* --- PROVIDERS --- */
.sge5-providers { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.sge5-provider {
  flex: 0 0 auto; min-width: 110px; background: var(--surf2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 20px; display: flex; align-items: center; justify-content: center; transition: var(--ease);
}
.sge5-provider:hover { border-color: rgba(200,144,22,.5); background: var(--surf); }
.sge5-provider img { height: 28px; width: auto; object-fit: contain; opacity: 0.65; filter: grayscale(25%); transition: var(--ease); }
.sge5-provider:hover img { opacity: 1; filter: none; }

/* --- GAMES GRID --- */
.sge5-games { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 48px; }
.sge5-game-card { flex: 0 0 calc(20% - 13px); border-radius: var(--r-lg); overflow: hidden; background: var(--surf2); border: 1px solid var(--border); transition: var(--ease); cursor: pointer; }
.sge5-game-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(200,144,22,.15); }
.sge5-game-card__thumb { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.sge5-game-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.sge5-game-card:hover .sge5-game-card__thumb img { transform: scale(1.05); }
.sge5-game-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,12,22,.9) 0%, transparent 60%); opacity: 0; transition: var(--ease); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 16px; }
.sge5-game-card:hover .sge5-game-card__overlay { opacity: 1; }
.sge5-game-card__play { display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: #000; font-size: 12px; font-weight: 800; padding: 7px 16px; border-radius: 20px; text-decoration: none; letter-spacing: .5px; }
.sge5-game-card__info { padding: 10px 12px 12px; }
.sge5-game-card__name { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 4px; }
.sge5-game-card__meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.sge5-game-card__tag { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); background: rgba(200,144,22,.1); padding: 2px 7px; border-radius: 4px; }
.sge5-game-card__provider { font-size: 11px; color: var(--muted); }
@media (max-width: 980px) { .sge5-game-card { flex: 0 0 calc(25% - 12px); } }
@media (max-width: 680px) { .sge5-game-card { flex: 0 0 calc(50% - 8px); } }

/* --- SPLIT --- */
.sge5-split { display: flex; align-items: center; gap: 60px; }
.sge5-split--rev { flex-direction: row-reverse; }
.sge5-split__text { flex: 1; }
.sge5-split__visual { flex: 0 0 44%; }
.sge5-split__visual svg { width: 100%; height: auto; display: block; }

/* --- TIPS --- */
.sge5-tips { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.sge5-tip { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--surf2); border: 1px solid var(--border); border-radius: var(--r); }
.sge5-tip__icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: rgba(200,144,22,.1); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.sge5-tip__body { font-size: 14px; color: var(--muted); line-height: 1.65; }
.sge5-tip__body strong { color: var(--text); display: block; margin-bottom: 2px; }

/* --- PROS/CONS --- */
.sge5-two-col { display: flex; gap: 20px; flex-wrap: wrap; }
.sge5-col-box { flex: 1 1 280px; background: var(--surf2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; }
.sge5-col-box--pos { border-top: 3px solid #22c55e; }
.sge5-col-box--neu { border-top: 3px solid #f59e0b; }
.sge5-col-box__title { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.sge5-col-box__title--pos { color: #22c55e; }
.sge5-col-box__title--neu { color: #f59e0b; }
.sge5-col-box ul { display: flex; flex-direction: column; gap: 10px; }
.sge5-col-box li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--muted); line-height: 1.55; }
.sge5-col-box li svg { flex-shrink: 0; margin-top: 2px; }

/* --- REVIEWS SLIDER --- */
.sge5-reviews-wrap { overflow: hidden; }
.sge5-reviews-track { display: flex; gap: 20px; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.sge5-review {
  flex: 0 0 calc(33.333% - 14px); min-width: 260px;
  background: var(--surf2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px;
}
.sge5-review__top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.sge5-review__av { width: 42px; height: 42px; border-radius: 50%; background: var(--surf); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: var(--gold); flex-shrink: 0; }
.sge5-review__name { font-size: 14px; font-weight: 700; }
.sge5-review__loc { font-size: 12px; color: var(--muted); }
.sge5-review__stars { color: var(--gold); font-size: 14px; margin-bottom: 6px; }
.sge5-review__meta { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 10px; }
.sge5-review__text { font-size: 14px; color: var(--muted); line-height: 1.65; font-style: italic; }
.sge5-slider-ctrl { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.sge5-slider-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--surf2); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: var(--ease); }
.sge5-slider-btn:hover { border-color: var(--gold); color: var(--gold); }
.sge5-slider-dots { display: flex; gap: 8px; }
.sge5-sdot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: var(--ease); }
.sge5-sdot.on { background: var(--gold); width: 24px; border-radius: 4px; }

/* --- FAQ --- */
.sge5-faq { margin: 0 auto; }
.sge5-faq__item { border-bottom: 1px solid var(--border); }
.sge5-faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; text-align: left; font-size: 15px; font-weight: 700; color: var(--text); transition: color .2s; }
.sge5-faq__q:hover { color: var(--gold); }
.sge5-faq__icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--ease); line-height: 1; }
.sge5-faq__item.open .sge5-faq__icon { border-color: var(--gold); background: var(--gold); color: #000; transform: rotate(45deg); }
.sge5-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.sge5-faq__a-inner { padding-bottom: 20px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.sge5-faq__item.open .sge5-faq__a { max-height: 500px; }

/* --- PAGE HERO --- */
.sge5-page-hero {
  background: linear-gradient(135deg, var(--surf2) 0%, var(--bg2) 100%);
  padding: 56px 0 52px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden;
}
.sge5-page-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(200,144,22,.07), transparent 65%); pointer-events: none; }
.sge5-page-hero__tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.sge5-page-hero__h1 { font-size: clamp(22px, 3.5vw, 42px); font-weight: 900; line-height: 1.15; margin-bottom: 14px; }
.sge5-page-hero__sub { font-size: 15px; color: var(--muted); margin-bottom: 28px; line-height: 1.7; }
.sge5-page-hero__meta { display: flex; gap: 24px; flex-wrap: wrap; }
.sge5-page-hero__meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.sge5-page-hero__meta-item strong { color: var(--gold); font-size: 20px; font-weight: 900; line-height: 1; }

/* --- FOOTER --- */
.sge5-footer { background: var(--surf); border-top: 1px solid var(--border); padding: 60px 0 0; }
.sge5-footer__top { display: flex; gap: 48px; flex-wrap: wrap; margin-bottom: 48px; }
.sge5-footer__brand { flex: 0 0 240px; }
.sge5-footer__tagline { font-size: 13px; color: var(--muted); margin: 12px 0 0; line-height: 1.6; }
.sge5-footer__col { flex: 1 1 140px; }
.sge5-footer__col-title { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.sge5-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.sge5-footer__col a { font-size: 13px; color: var(--muted); transition: color .2s; }
.sge5-footer__col a:hover { color: var(--gold); }
.sge5-footer__testimonials { border-top: 1px solid var(--border); padding: 24px 0; }
.sge5-footer__t-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); text-align: center; margin-bottom: 16px; }
.sge5-footer__t-row { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.sge5-footer__t-row a { display: flex; align-items: center; opacity: 0.45; transition: opacity .2s; }
.sge5-footer__t-row a:hover { opacity: 1; }
.sge5-footer__t-row img { height: 20px; width: auto; }
.sge5-footer__bottom { border-top: 1px solid var(--border); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.sge5-footer__copy { font-size: 12px; color: var(--muted); }
.sge5-footer__legal { display: flex; gap: 16px; }
.sge5-footer__legal a { font-size: 12px; color: var(--muted); transition: color .2s; }
.sge5-footer__legal a:hover { color: var(--text); }

/* --- RESPONSIVE --- */
@media (max-width: 980px) {
  .sge5-nav, .sge5-head__actions { display: none; }
  .sge5-burger { display: flex; }
  .sge5-content-row { flex-direction: column; gap: 32px; }
  .sge5-content-row__side { flex: 0 0 auto; width: 100%; }
  .sge5-review { flex: 0 0 calc(50% - 10px); }
  .sge5-split { flex-direction: column; gap: 36px; }
  .sge5-split--rev { flex-direction: column; }
  .sge5-split__visual { flex: 0 0 auto; width: 100%; margin: 0 auto; }
  .sge5-footer__brand { flex: 0 0 100%; }
}
@media (max-width: 680px) {
  .sge5-section { padding: 48px 0; }
  .sge5-hero__overlay { padding: 24px 0; }
  .sge5-hero__sub { display: none; }
  .sge5-review { flex: 0 0 100%; }
  .sge5-stage { flex: 1 1 100%; }
  .sge5-glance__card { flex: 1 1 100%; }
  .sge5-footer__bottom { flex-direction: column; text-align: center; }
  .sge5-footer__legal { justify-content: center; }
  .sge5-trustbar__item { padding: 10px 16px; }
}
@media (max-width: 480px) {
  .sge5-page-hero { padding: 40px 0 36px; }
  .sge5-bonus-card { flex: 1 1 100%; }
}
