:root {
  --green: #0d8b67;
  --green-light: #16b286;
  --yellow: #f7d746;
  --bg: #0c1016;
  --surface: #141a22;
  --surface-2: #1a2230;
  --card: #182130;
  --border: #283243;
  --divider: #202b3b;
  --text: #edf3f7;
  --muted: #9aabc0;
  --faint: #66778d;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Oswald', 'Inter', sans-serif;
  --header-h: 68px;
  --radius: 12px;
  --shadow: 0 14px 40px rgba(0,0,0,.28);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  -webkit-font-smoothing: antialiased;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.68;
  font-size: 16px;
  width: 100%;
}

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

table {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--green-light);
}

a:hover {
  color: var(--yellow);
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

h1,
h2,
h3 {
  line-height: 1.18;
}

p,
li {
  max-width: 74ch;
}

p,
li,
h1,
h2,
h3,
th,
td,
.btn,
.hero-tag,
.provider,
.card-list li,
.nav a,
.mob-nav a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-n {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: var(--yellow);
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(20,26,34,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header.scrolled {
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
  min-width: 0;
}

.logo:hover {
  color: var(--text);
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg,var(--yellow),#cba419);
  display: grid;
  place-items: center;
  color: #0c1016;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .4px;
}

.logo-text span {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .8px;
}

.nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.nav a {
  font-size: .92rem;
  color: var(--muted);
  font-weight: 500;
}

.nav a.active,
.nav a:hover {
  color: var(--text);
}

.header-btns {
  display: flex;
  gap: 10px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: .25s;
  border-radius: 2px;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px 20px;
  z-index: 99;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}

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

.mob-nav a {
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--muted);
}

.mob-nav a:hover {
  background: var(--surface-2);
  color: var(--text);
}

.mob-nav-btns {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.mob-nav-btns .btn {
  flex: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .2s;
  white-space: nowrap;
}

.btn-p {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn-p:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: #fff;
  box-shadow: 0 0 30px rgba(22,178,134,.24);
}

.btn-g {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-g:hover {
  border-color: var(--green);
  color: var(--green-light);
}

.btn-o {
  background: transparent;
  color: var(--green-light);
  border-color: var(--green);
}

.btn-o:hover {
  background: var(--green);
  color: #fff;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.site-banner {
  margin-top: var(--header-h);
}

.hero-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #0a0d12;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(12,16,22,.92) 0%,rgba(12,16,22,.74) 46%,rgba(12,16,22,.3) 100%);
  display: flex;
  align-items: center;
}

.hero-wrap {
  display: grid;
  grid-template-columns: minmax(0,1fr) 320px;
  gap: 36px;
  align-items: start;
  padding: 46px 0;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(247,215,70,.12);
  border: 1px solid rgba(247,215,70,.24);
  border-radius: 999px;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem,1rem + 3vw,3.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 12ch;
}

.hero-lead {
  font-size: 1.02rem;
  color: #d5e0ea;
  max-width: 62ch;
  margin-bottom: 22px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  color: var(--muted);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 16px rgba(22,178,134,.7);
}

.hero-card {
  background: rgba(20,26,34,.95);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 16px);
  width: 100%;
  max-width: 100%;
}

.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}

.hero-card-label {
  font-size: .75rem;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: .7px;
}

.card-list {
  list-style: none;
}

.card-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--divider);
  font-size: .92rem;
}

.card-list li:last-child {
  border-bottom: none;
}

.card-key {
  color: var(--muted);
}

.card-val {
  font-weight: 700;
  color: var(--text);
  text-align: right;
}

.stats {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg,rgba(20,26,34,.94),rgba(20,26,34,.68));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  min-width: 0;
}

.stat {
  text-align: center;
  padding: 10px;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-light);
}

.stat-label {
  font-size: .78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.toc {
  padding: 24px 0;
}

.toc-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.toc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: var(--text);
  font-weight: 700;
}

.toc-chevron {
  margin-left: auto;
  transition: transform .2s;
}

.toc-head[aria-expanded="false"] .toc-chevron {
  transform: rotate(180deg);
}

.toc-body {
  padding: 0 20px 20px;
  overflow: hidden;
  transition: max-height .3s ease;
}

.toc-body.collapsed {
  max-height: 0 !important;
  padding-bottom: 0;
}

.toc-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 8px;
}

.toc-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: .9rem;
  border: 1px solid transparent;
}

.toc-list a:hover {
  color: var(--green-light);
  background: rgba(13,139,103,.08);
  border-color: rgba(13,139,103,.22);
}

.section {
  padding: 64px 0;
}

.section-a {
  background: var(--surface);
}

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem,1rem + 1.4vw,2.25rem);
  margin-bottom: 16px;
}

.section h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 28px 0 12px;
}

.section-intro {
  color: var(--muted);
  margin-bottom: 28px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0,1fr) 310px;
  gap: 28px;
  align-items: start;
  min-width: 0;
}

.aside-card,
.card,
.bonus-card,
.sec-item,
.m-step,
.sc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.aside-card {
  padding: 20px;
  width: 100%;
  max-width: 100%;
}

.bullets,
.provider-list,
.faq {
  list-style: none;
}

.bullets li {
  position: relative;
  padding: 5px 0 5px 24px;
  color: var(--muted);
}

.bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--green-light);
  font-weight: 800;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 22px 0;
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: .92rem;
}

caption {
  padding: 12px 16px;
  text-align: left;
  background: var(--surface-2);
  font-weight: 700;
}

th {
  padding: 12px 16px;
  background: var(--surface-2);
  text-align: left;
  color: var(--green-light);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  white-space: nowrap;
}

td {
  padding: 12px 16px;
  border-top: 1px solid var(--divider);
  color: var(--muted);
  vertical-align: top;
}

.td-g {
  color: var(--green-light);
  font-weight: 700;
}

.info {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 12px;
  margin: 20px 0;
  border: 1px solid rgba(247,215,70,.18);
  background: rgba(247,215,70,.07);
}

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

.bonus-grid,
.cards,
.sec-grid,
.m-steps,
.s-ch {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 18px;
  margin: 22px 0;
  min-width: 0;
}

.bonus-card,
.card,
.sec-item,
.m-step,
.sc {
  padding: 22px;
}

.bonus-card.featured {
  border-color: rgba(247,215,70,.35);
  box-shadow: 0 0 0 1px rgba(247,215,70,.1),0 18px 45px rgba(0,0,0,.28);
}

.bonus-ribbon {
  display: inline-block;
  background: var(--yellow);
  color: #091016;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bonus-am {
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}

.bonus-sub {
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.bonus-list {
  list-style: none;
}

.bonus-list li {
  padding: 5px 0;
  color: var(--muted);
}

.providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.provider {
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-2);
  font-size: .82rem;
  color: var(--muted);
}

.review-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin: 20px 0;
}

.review-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 22px 0;
  min-width: 0;
}

.pros,
.cons {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.pros {
  background: rgba(13,139,103,.08);
}

.cons {
  background: rgba(247,215,70,.05);
}

.pros ul,
.cons ul {
  list-style: none;
}

.pros li,
.cons li {
  padding: 5px 0;
  color: var(--muted);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item.open {
  border-color: rgba(13,139,103,.45);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  color: var(--text);
  font-size: .98rem;
  font-weight: 700;
  text-align: left;
}

.faq-plus {
  color: var(--faint);
  transition: transform .2s;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
  color: var(--green-light);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a.open {
  max-height: 600px;
}

.faq-a-i {
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta-c {
  text-align: center;
  padding: 52px 0;
}

.cta-c h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem,1rem + 1.5vw,2.1rem);
  margin-bottom: 10px;
}

.cta-c p {
  color: var(--muted);
  margin: 0 auto 22px;
}

.footer {
  padding: 38px 0 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 16px 0;
}

.footer-links a {
  color: var(--muted);
  font-size: .88rem;
}

.footer-l {
  font-size: .78rem;
  color: var(--faint);
  line-height: 1.8;
  max-width: 860px;
  margin: 0 auto;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  z-index: 50;
}

.scroll-top[hidden] {
  display: none;
}

.scroll-top:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .nav,
  .header-btns {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-wrap,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: static;
  }

  .stats-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .logo {
    max-width: calc(100vw - 90px);
  }

  .logo-img {
    max-width: 160px;
    height: 40px;
  }
}

@media (max-width: 767px) {
  .container,
  .container-n {
    padding: 0 14px;
  }

  .header {
    height: auto;
    min-height: var(--header-h);
  }

  .header-inner {
    gap: 10px;
  }

  .logo {
    max-width: calc(100vw - 74px);
  }

  .logo-img {
    max-width: 140px;
    height: 38px;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-overlay {
    position: relative;
    background: linear-gradient(180deg,rgba(12,16,22,.94),rgba(12,16,22,.94));
  }

  .hero-wrap {
    gap: 20px;
    padding: 24px 0;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.8rem,8vw,2.6rem);
    line-height: 1.05;
  }

  .hero-lead {
    font-size: .96rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn,
  .mob-nav-btns .btn {
    width: 100%;
    white-space: normal;
  }

  .hero-tags {
    gap: 10px;
  }

  .hero-tag {
    font-size: .82rem;
  }

  .card-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .card-val {
    text-align: left;
  }

  .stats-grid,
  .pros-cons,
  .bonus-grid,
  .cards,
  .sec-grid,
  .m-steps,
  .toc-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .review-img img {
    height: 220px;
  }

  .mob-nav-btns {
    flex-direction: column;
  }

  .faq-q {
    align-items: flex-start;
    font-size: .95rem;
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
  }
}