:root {
  color-scheme: dark;
  --bg: #0a0f1e;
  --bg-soft: #0d1527;
  --panel: #141d33;
  --panel-strong: #1a2540;
  --accent: #f97316;
  --accent-strong: #ea6508;
  --gold: #fbbf24;
  --text: #f0f4ff;
  --muted: #8899b8;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
  --radius: 22px;
  --hero-image: none;
  --font-main: "Outfit", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-display: "Bebas Neue", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-main);
  color: var(--text);
  background-color: #05070c;
}
html {
    scroll-behavior: smooth;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
[id] {
    scroll-margin-top: 90px;
}


.app {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 70px 18px 110px;
  position: relative;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 64px;
  padding: 0 18px;
  background: rgba(8, 13, 24, 0.97);
  backdrop-filter: blur(10px);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.topbar-inner {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 80px;
  height: 22px;
  /* background: #c23a3a; */
  /* border-radius: 8px; */
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.btn {
  border: 0;
  font-family: var(--font-main);
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-ghost {
  background: #1e2a42;
  color: var(--text);
  padding: 8px 18px;
  border-radius: 0.625rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #ea6508 100%);
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}
.btn-primary-no-back{
  background: transparent;
  text-decoration: none;
  color: #fff;
  border: 1px solid #f97316;
}

.btn-large {
  width: 100%;
  padding: 16px 18px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeUp 0.6s ease both;
}

.hero-card {
  background: #0d1527;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-media {
  height: 520px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(8, 13, 24, 0.82) 90%),
    var(--hero-image),
    radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.08), transparent 55%),
    linear-gradient(140deg, #0a1020 0%, #0d1527 55%, #111e35 100%);
  background-size: cover;
  background-position: center;
}

.hero-info {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: min(88%, 320px);
  padding: 0 10px;
  text-align: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 10px;
}

.bonus-amount {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.bonus-sub {
  font-size: 18px;
  margin-bottom: 22px;
  color: #f0d06a;
}

.partner {
  margin-top: 14px;
  font-size: 12px;
  color: #808792;
}

.external {
  opacity: 0.6;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 0;
  height: 90px;
  background: var(--panel-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
  box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.7);
  border-top: 1px solid rgba(249, 115, 22, 0.12);
  z-index: 40;
}

.bottom-nav-inner {
  width: min(430px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-content: center;
}
.nav-item {
  text-decoration: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f0f2f4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: var(--font-main);
  cursor: pointer;
  justify-self: center;
}

.nav-item img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
}

.nav-item--center {
  width: 68px;
  height: 68px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  gap: 4px;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* margin-top: -26px; */
}

.nav-item--center img {
  width: 24px;
  height: 24px;
  opacity: 1;
}

.drawer {
  position: fixed;
  inset: 0;
  background: rgba(6, 7, 10, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 999;
}

.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(78%, 360px);
  height: 100%;
  background: #101828;
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.drawer-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-scroll {
  flex: 1;
  overflow-y: auto;
  padding-right: 6px;
}

.drawer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 10px;
  border-radius: 14px;
  text-decoration: none;
  color: #f1f1f2;
  font-weight: 600;
  transition: background 0.2s ease;
}

.drawer-item img {
  width: 20px;
  height: 20px;
  opacity: 0.75;
}

.drawer-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.drawer-cta {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  /* background: #2a2f37; */
  padding-top: 8px;
  border-radius: .625rem;
}

.menu-open .drawer {
  opacity: 1;
  pointer-events: auto;
}

.menu-open .drawer-panel {
  transform: translateX(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 760px) {
  .app {
    padding-bottom: 120px;
    max-width: 1000px;
  }
}



.navigation {
  /* margin: 18px 0 26px; */
}

.navigation__toggle {
  width: 100%;
  border: 0;
  background: linear-gradient(180deg, #141d33 0%, #111928 100%);
  color: var(--text);
  padding: 16px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.navigation__toggle::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.navigation__title {
  text-align: left;
}

.navigation__panel {
  margin-top: 14px;
  padding: 18px 18px 8px;
  border-radius: 16px;
  background: linear-gradient(180deg, #111928 0%, #0e1623 100%);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.navigation--collapsed .navigation__panel {
  display: none;
}

.navigation--collapsed .navigation__toggle::after {
  transform: rotate(45deg);
}

.navigation:not(.navigation--collapsed) .navigation__toggle::after {
  transform: rotate(-135deg);
}

.navigation__link {
  color: #cbd1db;
  text-decoration: none;
  font-weight: 500;
  padding: 0px 4px;
}

.navigation__link:hover {
  color: #ffffff;
}

.img-box {
  margin: 20px 0;
  border-radius: 5px;
  overflow: hidden;
  background: #0d1527;
  box-shadow: var(--shadow);
}

.img-box picture,
.img-box img {
  display: block;
  width: 100%;
}

.img-box img {
  height: auto;
}

.promo-code_block {
  margin: 18px 0 26px;
}

.promo-card {
  background: #0d1527;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4);
  /* border: 1px solid #222; */
  max-width: 400px;
  margin: 0 auto;

}

.promo-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.promo-card__title {
  font-weight: 600;
  font-size: 16px;
}

.promo-card__sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.promo-card__pill {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 5px;
  background: #f973161a;
  color: #f97316;
  border: 1px solid #f973164d;
}

.promo-card__code {
  position: relative;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #080d18;
  border: 1px solid #1e2d4a;
  font-family: "Courier New", monospace;
  color: #f1f1f1;
}

.promo-card__code-text {
  letter-spacing: 2px;
  font-size: 1.25rem;
  font-weight: 700;
}

.promo-copy {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.promo-card__status {
  margin-left: auto;
  margin-right: 6px;
  font-size: 17px;
  font-weight: 600;
  /* font-family: var(--font-main); */
  background-color: #0e0e0e;
  color: #f97316;
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  right: 5px;
  padding: 5px 0;
}

.promo-card__cta {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.promo-card__note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

.cashback_block {
  margin: 20px 0 28px;
  max-width: 400px;
  margin: 0 auto;
}

.cashback-card {
  background: linear-gradient(180deg, #111d35 0%, #0d1527 100%);
  border-radius: 22px;
  padding: 28px 24px 26px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(249, 115, 22, 0.1);
}

.cashback-card__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 10px;
  border: 1px solid rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.1);
  color: #fb923c;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.cashback-card__lead {
  font-size: 18px;
  color: #d9d9d9;
  font-weight: 600;
  margin-bottom: 6px;
}

.cashback-card__value {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.cashback-card__tail {
  font-size: 20px;
  font-weight: 600;
  color: #d9d9d9;
  margin-bottom: 22px;
}

.cashback-card__cta {
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
}

.cashback-card__note {
  margin-top: 16px;
  font-size: 12px;
  color: #8a8f98;
}

 .flex-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 40px;
    @media (min-width: 768px) {
    
        flex-direction: row;
      }
  }
 .flex-box-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 40px;
    @media (min-width: 768px) {
      flex-direction: row;
      > * {
        flex: 1 1 0;
        min-width: 0;
      }
    }
  }

.main_btn {
  display: flex;
  justify-content: center;
  margin: 8px 0;
}

.main_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.5), 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  position: relative;
  overflow: hidden;
}

.main_btn a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.main_btn a:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 36px rgba(249, 115, 22, 0.65), 0 4px 12px rgba(0,0,0,0.35);
  filter: brightness(1.08);
}

.main_btn a:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
}


.section-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: center;
  color: var(--text);
  background: #0e1832;
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  margin: 10px 0;
}

.section-table th,
.section-table td {
  padding: 14px 16px;
  border: 1px solid rgba(249, 115, 22, 0.15);
  overflow-wrap: anywhere;
}

.section-table thead th {
  font-weight: 600;
  background: #0e1832;
}

.section-table tbody tr:nth-child(odd) {
  background: #f97316;
  color: #dfd8d8;
  font-weight: 600;
}

.section-table tbody tr:nth-child(even) {
  background: #0e1832;
}

@media (max-width: 640px) {
  .section-table {
    font-size: 14px;
  }

  .section-table th,
  .section-table td {
    padding: 5px;
    font-size: 9px;
  }
}

.contacts {
  max-width: 420px;
  margin: 50px auto 0;
  display: grid;
  gap: 18px;
}

.contacts__title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
}

.contacts__form {
  display: grid;
  gap: 14px;
}

.contacts__label {
  font-weight: 600;
}

.contacts__input,
.contacts__textarea {
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 12px 16px;
  background: #dcd7d7;
  color: #0b0d14;
  font-family: inherit;
  font-size: 15px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

.contacts__textarea {
  min-height: 140px;
  resize: vertical;
}

.contacts__submit {
  border: none;
  border-radius: 18px;
  padding: 12px 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: #f8f8f8;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.35);
}

.contacts__popup {
  position: fixed;
  inset: 0;
  background: rgba(5, 7, 12, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}

.contacts__popup.is-visible {
  opacity: 1;
  pointer-events: all;
}

.contacts__popup-card {
  background: #111d35;
  border-radius: 18px;
  padding: 22px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 220px;
}

.contacts__popup-close {
  margin-top: 14px;
  border: none;
  border-radius: 14px;
  padding: 10px 18px;
  font-weight: 600;
  background: var(--accent);
  color: #0b0d14;
  cursor: pointer;
}

@media (max-width: 640px) {
  .contacts {
    max-width: 100%;
    padding: 0 8px;
    margin: 0 auto;

  }

  .contacts__title {
    font-size: 26px;
  }

  .contacts__input,
  .contacts__textarea {
    border-radius: 14px;
    font-size: 14px;
  }

  .contacts__submit {
    width: 100%;
  }

  .contacts__popup-card {
    width: calc(100% - 32px);
    max-width: 320px;
  }
}


.hero__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #090e1e;
  max-height: 500px;
  margin: 20px 0 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}
.hero__image-reviews {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
  opacity: 0.7;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* gap: 10px; */
  text-align: center;
  /* background: rgba(5, 6, 10, 0.4); */
  background-color: rgba(8, 13, 30, 0.82);
  padding: 24px;
  /* min-height: 250px; */
}

.hero__eyebrow {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.hero__headline {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}


.site-footer {
  /* margin-top: 40px; */
  /* padding: 28px 24px 20px; */
  /* background: linear-gradient(180deg, #1a1f2e 0%, #141a25 100%); */
  border-radius: 18px;
  text-align: center;
  position: relative;
  margin: 40px auto 20px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-footer__links a {
  color: var(--text);
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--accent);
}

.site-footer__divider {
  height: 1px;
  background: var(--line);
  margin: 20px 0;
}

.site-footer__text {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 auto 12px;
  max-width: 900px;
}

.site-footer__copy {
  color: var(--text);
  font-weight: 600;
}


@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .site-footer {
    /* padding: 24px 18px 10px; */
  }
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.26s; }
.reveal-delay-4 { transition-delay: 0.34s; }

/* =====================================================
   HEADINGS — styled with accent bars
   ===================================================== */
.content h1,
.content h2,
section h1,
section h2 {
  position: relative;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 12px;
  padding: 14px 18px 14px 22px;
  background: linear-gradient(90deg, rgba(249,115,22,0.10) 0%, rgba(249,115,22,0.02) 60%, transparent 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  line-height: 1.35;
}
.content h1:first-child,
.content h2:first-child,
section h1:first-child,
section h2:first-child {
  margin-top: 0;
}

.content h3,
section h3 {
  position: relative;
  font-size: clamp(16px, 2.5vw, 19px);
  font-weight: 600;
  color: #e2eaf8;
  margin: 24px 0 10px;
  padding-left: 14px;
}
.content h3::before,
section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--accent);
  border-radius: 3px;
  opacity: 0.7;
}

/* =====================================================
   PARAGRAPHS
   ===================================================== */
.content p,
section p {
  line-height: 1.75;
  color: #c5cfe8;
  font-size: 15px;
  margin: 0 0 14px;
}

/* =====================================================
   NAVIGATION PANEL — styled TOC
   ===================================================== */
.navigation__panel {
  counter-reset: nav-section;
}
.navigation__link {
  display: block;
  position: relative;
  color: #8daacf;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 7px 12px 7px 14px;
  border-radius: 8px;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
  line-height: 1.35;
}
.navigation__link:not([style*="padding-left"]) {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  padding-left: 10px;
  margin-top: 6px;
  border-left: 2px solid var(--accent);
}
.navigation__link[style*="padding-left"] {
  border-left: 2px solid transparent;
  padding-left: 22px !important;
  font-weight: 400;
}
.navigation__link:hover {
  background: rgba(249, 115, 22, 0.1);
  color: #fff;
  padding-left: 18px !important;
  border-left-color: var(--accent);
}

/* =====================================================
   STYLED UNORDERED LISTS
   ===================================================== */
.content ul,
section ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content ul li,
section ul li {
  position: relative;
  padding: 10px 14px 10px 42px;
  background: linear-gradient(90deg, rgba(249,115,22,0.06), rgba(249,115,22,0.02));
  border: 1px solid rgba(249,115,22,0.12);
  border-radius: 10px;
  color: #c5cfe8;
  font-size: 14.5px;
  line-height: 1.55;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.content ul li:hover,
section ul li:hover {
  border-color: rgba(249,115,22,0.3);
  background: linear-gradient(90deg, rgba(249,115,22,0.1), rgba(249,115,22,0.03));
}
.content ul li::before,
section ul li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}
/* nested lists */
.content ul ul,
section ul ul {
  margin: 8px 0 0;
  padding-left: 0;
  gap: 5px;
}
.content ul ul li,
section ul ul li {
  background: rgba(249,115,22,0.03);
  border-color: rgba(249,115,22,0.07);
  font-size: 13.5px;
  padding: 7px 10px 7px 36px;
}
.content ul ul li::before,
section ul ul li::before {
  content: "›";
  color: #f97316aa;
  font-size: 18px;
  left: 12px;
  top: 46%;
}

/* =====================================================
   STYLED ORDERED LISTS (steps)
   ===================================================== */
.content ol,
section ol {
  list-style: none;
  padding: 0;
  margin: 10px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: step-counter;
}
.content ol li,
section ol li {
  counter-increment: step-counter;
  position: relative;
  padding: 11px 14px 11px 52px;
  background: linear-gradient(90deg, rgba(20,29,51,0.9), rgba(14,22,40,0.7));
  border: 1px solid rgba(249,115,22,0.14);
  border-radius: 12px;
  color: #c5cfe8;
  font-size: 14.5px;
  line-height: 1.55;
  transition: border-color 0.2s ease;
}
.content ol li:hover,
section ol li:hover {
  border-color: rgba(249,115,22,0.32);
}
.content ol li::before,
section ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #f97316, #ea6508);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 26px;
  text-align: center;
  box-sizing: border-box;
}

/* =====================================================
   FAQ ITEMS
   ===================================================== */
.faq-item {
  background: linear-gradient(135deg, #111d35 0%, #0d1527 100%);
  border: 1px solid rgba(249,115,22,0.12);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  cursor: default;
}
.faq-item:hover {
  border-color: rgba(249,115,22,0.35);
  box-shadow: 0 8px 28px rgba(249,115,22,0.1);
  transform: translateY(-2px);
}
.faq-item h3 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  margin: 0 0 10px !important;
  padding-left: 0 !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-item h3::before {
  content: none !important;
}
.faq-item h3::after {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(135deg, #f97316, #ea6508);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  margin-left: auto;
}
.faq-item p {
  margin: 0 !important;
  font-size: 14px;
  color: #9ab0cc;
  line-height: 1.65;
}

/* =====================================================
   FAQ SECTION HEADING
   ===================================================== */
h2.faq {
  text-align: center;
  border-left: none !important;
  background: none !important;
  padding: 0 0 16px !important;
  font-size: clamp(22px, 3vw, 28px) !important;
  background: linear-gradient(90deg, #f97316, #fbbf24) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 20px !important;
}

/* =====================================================
   SECTION DIVIDER
   ===================================================== */
section + section {
  border-top: 1px solid rgba(249,115,22,0.08);
  padding-top: 8px;
}

/* =====================================================
   STRONG / EM HIGHLIGHT
   ===================================================== */
.content strong,
section strong {
  color: #f0f4ff;
  font-weight: 700;
}
.content em,
section em {
  color: #fb923c;
  font-style: normal;
  font-weight: 600;
}

/* =====================================================
   INFO HIGHLIGHT BOX  (optional utility)
   ===================================================== */
.info-box {
  background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(249,115,22,0.03));
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 18px 0;
  color: #c5cfe8;
  font-size: 14.5px;
  line-height: 1.65;
}
.info-box::before {
  content: "ℹ";
  display: inline-block;
  margin-right: 8px;
  color: var(--accent);
  font-weight: 700;
}