/* Winline promo landing — tokens from winline.kz dark theme */
:root {
  --orange: #ff6a13;
  --orange-legacy: #fe5e01;
  --orange-bright: #ff9d31;
  --orange-dark: #fa6400;
  --gold: #ffd790;
  --gold-muted: #9e927d;
  --blue-deep: #00008f;
  --blue-night: #000e29;
  --cyan: #0cf2db;
  --blue-accent: #2e9aff;
  --bg-page: #0d0d0e;
  --bg-card: #19191a;
  --bg-card-alt: #232323;
  --bg-muted: #282828;
  --border: #353535;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-dim: rgba(255, 255, 255, 0.32);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --font-display: "PF Din Text Pro", "DIN Alternate", "Arial Narrow", sans-serif;
  --font-body: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-page);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.page-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.35;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 15, 101, 0.75) 0%, rgba(13, 13, 14, 0.92) 45%, #0d0d0e 100%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(255, 106, 19, 0.12), transparent);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), 100% - 40px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* ——— Header ——— */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(13, 13, 14, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.2s ease;
}

.header--scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 40px;
  width: auto;
}

.header__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(254, 94, 1, 0.12);
  border: 1px solid rgba(254, 94, 1, 0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.header__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(254, 94, 1, 0.35);
}

.btn--primary:hover {
  background: #ff7018;
  box-shadow: 0 6px 28px rgba(254, 94, 1, 0.45);
}

.btn--success {
  background: linear-gradient(180deg, #2ecc71 0%, #1a9b52 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(46, 204, 113, 0.3);
}

.btn--success:hover {
  filter: brightness(1.06);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 15px;
  border-radius: 12px;
}

.btn img,
.btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.header__cta {
  display: none;
}

@media (min-width: 768px) {
  .header__cta {
    display: inline-flex;
  }
}

/* ——— Hero ——— */
.hero {
  padding: 24px 0 56px;
}

.hero__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, var(--blue-night) 0%, var(--blue-deep) 100%);
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.hero__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.hero__ball {
  position: absolute;
  right: -80px;
  top: 0;
  width: min(720px, 90vw);
  height: 100%;
  background: url("../assets/loyalty/ball-large.CUHoMY6_.webp") right center / contain no-repeat;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.hero__body {
  position: relative;
  z-index: 2;
  padding: 48px 32px 44px;
  max-width: 640px;
}

@media (min-width: 900px) {
  .hero__body {
    padding: 64px 56px 56px 80px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero__ball {
    right: 40px;
  }
}

.hero__meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero__title span {
  display: block;
  margin-top: 4px;
  font-size: clamp(48px, 9vw, 88px);
  background: linear-gradient(90deg, var(--gold) 0%, #fff 35%, var(--orange-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.55;
}

.hero__subtitle strong {
  font-weight: 700;
  color: #fff;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ——— Sections ——— */
.section {
  padding: 48px 0;
}

.section--install {
  padding-top: 8px;
}

.install-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 32px;
  align-items: start;
  margin-bottom: 24px;
}

.install-guide__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.install-guide__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.install-guide__step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.install-guide__step--highlight {
  border-color: rgba(255, 106, 19, 0.45);
  background: rgba(255, 106, 19, 0.08);
}

.install-guide__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}

.install-guide__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}

.install-guide__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

.install-guide__text strong {
  color: var(--text);
}

.install-guide__publisher {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(46, 154, 255, 0.15);
  border: 1px solid rgba(46, 154, 255, 0.35);
  color: var(--blue-accent);
  font-size: 13px;
  font-weight: 600;
}

.install-guide__shot {
  margin: 0;
  text-align: center;
}

.install-guide__shot img {
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  border-radius: 20px;
  border: 3px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.install-guide__caption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-dim);
}

.install-guide__hint {
  font-size: 13px;
  color: var(--text-muted);
}

.install-guide__hint--footer {
  margin-top: 0;
  padding: 16px 18px;
  text-align: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 106, 19, 0.08);
  border: 1px solid rgba(255, 106, 19, 0.22);
}

.install-guide__hint strong {
  color: var(--orange-bright);
}

@media (min-width: 901px) {
  .install-guide__aside {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: start;
    max-height: calc(100vh - var(--header-h) - 48px);
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
  }

  .install-guide__aside::-webkit-scrollbar {
    width: 6px;
  }

  .install-guide__aside::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
  }
}

@media (max-width: 900px) {
  .install-guide {
    grid-template-columns: 1fr;
  }

  .install-guide__shot {
    order: -1;
  }

  .install-guide__shot img {
    max-width: 260px;
  }
}

.section--tester {
  padding-top: 32px;
}

.section__head {
  margin-bottom: 32px;
}

.section__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}

.section__desc {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  max-width: 560px;
  line-height: 1.5;
}

/* ——— Тестер-Клуб header (loyalty style) ——— */
.tester-header {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #000e29 0%, #00008f 100%);
  min-height: 200px;
  margin-bottom: 20px;
}

.tester-header::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: min(520px, 70%);
  height: 100%;
  background: url("../assets/loyalty/ball-large.CUHoMY6_.webp") right center / contain no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.tester-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.tester-header__content {
  position: relative;
  z-index: 1;
  padding: 40px 32px 32px;
  max-width: 60%;
}

.tester-header__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 10px;
}

.tester-header__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 22px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.3;
}

.tester-header__card {
  position: absolute;
  right: clamp(16px, 8vw, 80px);
  bottom: 0;
  z-index: 1;
  width: min(280px, 42vw);
  padding: 28px 24px 20px;
  text-align: center;
  background: linear-gradient(to right, #040404, #0a0a12);
  border-radius: 20px 20px 0 0;
  border-top: 1px solid rgba(0, 16, 255, 0.55);
  box-shadow: 0 3px 18px -6px rgba(0, 16, 255, 0.33);
}

.tester-header__card-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.tester-header__card-title::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 26px;
  margin-right: 10px;
  vertical-align: middle;
  background: url("../assets/loyalty/crown.B0DKFYU2.webp") center / contain no-repeat;
}

.tester-header__card-date {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-muted);
  text-transform: capitalize;
}

@media (max-width: 700px) {
  .tester-header__content {
    max-width: 100%;
    padding-bottom: 100px;
  }

  .tester-header__card {
    right: 50%;
    transform: translateX(50%);
    width: 240px;
  }
}

/* ——— Ladder total ——— */
.ladder-total {
  margin-bottom: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 106, 19, 0.08);
  border: 1px solid rgba(255, 106, 19, 0.22);
}

.ladder-total__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.ladder-total__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.ladder-total__goal {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
  color: var(--orange-bright);
}

.ladder-total__hint {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.ladder-total__hint strong {
  color: var(--orange-bright);
}

/* ——— Level cards (loyalty-levels) ——— */
.level-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-card-alt);
  border: 3px solid rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.level-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 100px;
  padding: 12px 120px 12px 16px;
  background: rgba(25, 25, 26, 0.72);
  border-radius: 12px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.15s;
}

.level-card:hover {
  transform: translateX(2px);
}

.level-card--active {
  background: #19191a;
}

.level-card--final {
  background: linear-gradient(90deg, rgba(255, 106, 19, 0.12) 0%, #19191a 40%);
  border: 1px solid rgba(255, 215, 144, 0.35);
}

.level-card__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  flex-shrink: 0;
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.level-card__num-val {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  background: linear-gradient(180deg, #c4c4c4, #3b3b3c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.level-card--active .level-card__num-val {
  background: linear-gradient(180deg, #ff9d31, #fa6400);
  -webkit-background-clip: text;
  background-clip: text;
}

.level-card--final .level-card__num-val {
  background: linear-gradient(180deg, var(--cyan) 0%, #0000f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.level-card__num-sub {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.level-card__type {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100px;
  flex-shrink: 0;
  text-transform: uppercase;
}

.level-card__type span {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.35;
  color: var(--text);
}

.level-card__type strong {
  font-size: 18px;
  font-weight: 700;
  color: #888;
  line-height: 1.2;
}

.level-card--active .level-card__type strong {
  color: var(--text);
}

.level-card--review .level-card__type strong {
  color: #506fc0;
}

.level-card--final .level-card__type strong {
  color: var(--gold);
}

.level-card__desc {
  flex: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--text);
  min-width: 0;
}

.level-card__bank {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  min-width: 88px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 106, 19, 0.12);
  border: 1px solid rgba(255, 106, 19, 0.35);
}

.level-card__bank-add {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange-bright);
}

.level-card__bank-total {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}

.level-card__bank--muted {
  background: rgba(80, 111, 192, 0.12);
  border-color: rgba(80, 111, 192, 0.35);
}

.level-card__bank--muted .level-card__bank-add {
  color: #7a9ae8;
}

.level-card__bank--final {
  background: linear-gradient(135deg, rgba(255, 106, 19, 0.25), rgba(255, 215, 144, 0.15));
  border-color: rgba(255, 215, 144, 0.5);
}

.level-card__bank--final .level-card__bank-add {
  font-size: 10px;
  color: var(--gold);
}

.level-card__bank--final .level-card__bank-total {
  font-size: 20px;
  color: var(--gold);
}

@media (max-width: 640px) {
  .level-card {
    flex-wrap: wrap;
    padding: 14px 12px 56px;
    gap: 10px;
  }

  .level-card__type {
    width: auto;
    flex-direction: row;
    gap: 6px;
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .level-card__desc {
    order: 2;
    width: 100%;
    font-size: 12px;
  }

  .level-card__bank {
    right: 12px;
    bottom: 10px;
    top: auto;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    min-width: auto;
  }

  .level-card__bank-add {
    font-size: 10px;
  }

  .level-card__bank-total {
    font-size: 16px;
  }
}

.ladder-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(254, 94, 1, 0.08);
  border: 1px solid rgba(254, 94, 1, 0.2);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.ladder-warning strong {
  color: var(--orange);
}

/* ——— Steps vertical flow ——— */
.steps-flow {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
}

.steps-flow__item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.steps-flow__item:first-child {
  padding-top: 8px;
}

.steps-flow__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.steps-flow__badge img {
  width: 55px;
  height: 27px;
  display: block;
}

.steps-flow__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.steps-flow__text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.steps-flow__text strong {
  font-weight: 700;
  color: #fff;
}

/* ——— Steps (legacy) ——— */
.steps {
  display: grid;
  gap: 8px;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 28px 24px 24px 100px;
  min-height: 120px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.step-card::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  width: 72px;
  height: 100%;
  background-color: var(--border);
  -webkit-mask-image: url("../assets/step-lines.BdyMhrIP.svg");
  mask-image: url("../assets/step-lines.BdyMhrIP.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  opacity: 0.6;
}

.step-card__num {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  background: linear-gradient(180deg, var(--cyan) 0%, #0000f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 8px;
}

.step-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

.step-card__highlight {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  background: rgba(254, 94, 1, 0.12);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
}

/* ——— Benefits ——— */
.benefits {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit {
  background: var(--bg-card-alt);
  border: 3px solid rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.benefit::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(254, 94, 1, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.benefit__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(254, 94, 1, 0.15);
  color: var(--orange);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 20px;
}

.benefit__icon svg {
  width: 22px;
  height: 22px;
}

.benefit__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.benefit__text strong {
  color: #fff;
  font-weight: 700;
}

.benefit__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ——— CTA panel ——— */
.cta-panel {
  display: grid;
  gap: 28px;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-night) 0%, var(--bg-card) 55%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .cta-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 40px 48px;
    gap: 48px;
  }
}

.cta-panel__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.cta-panel__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 36px);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cta-panel__text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 20px;
  max-width: 480px;
}

.cta-panel__text strong {
  color: #fff;
  font-weight: 700;
}

.cta-panel__search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.cta-panel__search strong {
  color: var(--orange);
}

.cta-panel__side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 106, 19, 0.1);
  border: 1px solid rgba(255, 106, 19, 0.3);
  text-align: center;
}

@media (min-width: 768px) {
  .cta-panel__side {
    min-width: 220px;
    align-items: center;
  }
}

.cta-panel__amount {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--gold);
}

.cta-panel__amount-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* ——— Footer ——— */
.footer {
  padding: 40px 0 32px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.footer__logo img {
  height: 32px;
  opacity: 0.7;
}

.footer__legal {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 720px;
}

.footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ——— Mobile sticky CTA ——— */
/* ——— Notification prompt ——— */
.notify-prompt {
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  z-index: 101;
  width: min(380px, calc(100% - 32px));
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
  pointer-events: none;
}

.notify-prompt--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.notify-prompt__inner {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(25, 25, 26, 0.98);
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}

.notify-prompt__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.notify-prompt__title {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.notify-prompt__text {
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.notify-prompt__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.notify-prompt__actions .btn {
  flex: 1 1 auto;
  min-width: 120px;
}

@media (max-width: 767px) {
  .notify-prompt {
    left: 16px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: auto;
  }
}

