:root {
  --yellow: #F4D608;
  --green: #009542;
  --green-d: #007a36;
  --ink: #121212;
  --muted: #5b5f52;
  --bg: #ffffff;
  --soft: #f7f7ec;
  --card: #ffffff;
  --border: #e6e4d2;
  --radius: 16px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased
}

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

a:hover {
  text-decoration: none
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px
}

/* header */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  padding: 7px 0;
  text-align: center
}

.topbar b {
  color: var(--yellow)
}

header.site {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border)
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  white-space: nowrap
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--ink);
  color: var(--yellow);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 19px
}

.logo small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .12em
}

nav.links {
  display: flex;
  gap: 4px;
  margin-left: auto;
  flex-wrap: wrap
}

nav.links a {
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
  padding: 9px 12px;
  border-radius: 10px
}

nav.links a:hover {
  background: var(--soft);
  text-decoration: none
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  border-radius: 12px;
  padding: 13px 22px;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 15.5px;
  line-height: 1;
  min-height: 48px;
  transition: .25s ease all;
}

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

.btn-green:hover {
  background: var(--green-d);
  text-decoration: none;
  color: #fff
}

.btn-yellow {
  background: var(--yellow);
  color: var(--ink)
}

.btn-yellow:hover {
  background: #ffd900;
  text-decoration: none;
  color: var(--ink)
}

.btn-ghost {
  background: #fff;
  border-color: var(--ink);
  color: var(--ink)
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  text-decoration: none
}

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

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 6px
}

/* hero */
.hero {
  background: linear-gradient(180deg, #fffdf0, #fbf6d8 60%, #fff);
  border-bottom: 1px solid var(--border);
  overflow: hidden
}

.logo img {
  display: block;
  width: 150px;
  filter: invert(1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 38px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 999px;
  margin-bottom: 14px
}

.eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block
}

h1 {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 14px
}

h1 .hl {
  background: var(--yellow);
  padding: 0 8px;
  border-radius: 8px;
  white-space: nowrap
}

.lead {
  font-size: 17.5px;
  color: #333;
  max-width: 56ch;
  margin-bottom: 18px
}

.hero-badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin: 16px 0
}

.hbadge {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700
}

.hero-shot {

  overflow: hidden;

}

.hero-shot img {
  max-width: 100%;
  margin: 0 auto;
}

.shot-cap {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  padding: 9px 14px;
  display: flex;
  border-radius: 20px;
  margin-top: 5px;
  justify-content: space-between;
  gap: 10px
}

.shot-cap b {
  color: var(--yellow)
}

.trustline {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 14px
}

/* layout */
main {
  padding: 26px 0 10px
}

.article {
  background: #fff
}

.article p {
  margin: 0 0 14px;
  max-width: 75ch
}

.article h2 {
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -.01em;
  margin: 34px 0 12px;
  padding-top: 8px;
  border-top: 3px solid var(--yellow);
  padding-top: 16px
}

.article h3 {
  font-size: 19px;
  margin: 20px 0 8px
}

.article ul,
.article ol {
  margin: 0 0 16px 22px;
  max-width: 72ch
}

.article li {
  margin-bottom: 7px
}

figure.shot {
  margin: 16px 0 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft)
}

figure.shot img {
  width: 100%
}

figure.shot figcaption {
  font-size: 13.5px;
  color: var(--muted);
  padding: 9px 14px;
  background: #fff;
  border-top: 1px solid var(--border)
}


table.data {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 20px;
  font-size: 15px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden
}

table.data caption {
  text-align: left;
  font-weight: 800;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  font-size: 14px
}

table.data th,
table.data td {
  padding: 11px 13px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top
}

table.data th {
  background: var(--soft)
}

table.data tr:last-child th,
table.data tr:last-child td {
  border-bottom: 0
}

/* TOC */
details.toc {
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--soft);
  margin: 18px 0 8px;
  overflow: hidden
}

details.toc summary {
  cursor: pointer;
  font-weight: 800;
  padding: 14px 18px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px
}

details.toc summary::-webkit-details-marker {
  display: none
}

details.toc summary .tag {
  background: var(--yellow);
  border-radius: 8px;
  padding: 2px 10px;
  font-size: 13px
}

details.toc nav {
  padding: 0 18px 16px
}

details.toc ol {
  margin: 8px 0 0 20px
}

details.toc li {
  margin-bottom: 6px
}

/* CTA band */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 26px 0
}

.cta-band p {
  color: #d9d9d9;
  max-width: 52ch
}

.cta-band .big {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff
}

/* bonus cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 16px 0
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.card .pct {
  font-size: 26px;
  font-weight: 800
}

.card .pill {
  align-self: flex-start;
  background: var(--yellow);
  font-size: 12.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px
}

/* faq */
.faq details {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  background: #fff
}

.faq summary {
  padding: 14px 16px;
  font-weight: 700;
  cursor: pointer;
  min-height: 48px
}

.faq .a {
  padding: 0 16px 14px;
  color: #333
}

/* author */
.author {
  border: 2px dashed var(--green);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 16px;
  margin: 30px 0;
  background: #f3faf5
}

.author .author-ic {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  background: #007a36;
  flex: none
}

.author .who {
  font-weight: 800
}

.author .role {
  font-size: 13.5px;
  color: var(--green);
  font-weight: 700
}

/* footer */
footer.site {
  background: var(--ink);
  color: #e9e9e9;
  margin-top: 26px
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
  padding-top: 34px;
  padding-bottom: 10px;
}

.foot-grid h4 {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px
}

.foot-grid a {
  color: #e9e9e9;
  font-size: 14.5px
}

.foot-grid p {
  font-size: 14px;
  color: #c9c9c9
}

.blogo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fff;
  font-size: 19px;
  margin-bottom: 10px
}
.blogo img {
  display: block;
  width: 250px;
  max-width: 100%;
}

.payrow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px
}

.payrow span {
  background: #242424;
  border: 1px solid #3a3a3a;
  border-radius: 9px;
  padding: 6px 11px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff
}

.trustrow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px
}

.trustrow a {
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
  border-radius: 8px;
  padding: 6px 10px;
  display: inline-flex;
  gap: 6px;
  align-items: center
}

.foot-bottom {
  border-top: 1px solid #333;
  padding: 14px 0 110px;
  font-size: 12.5px;
  color: #a9a9a9
}

/* sticky mobile bar */
.stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(18, 18, 18, .97);
  border-top: 3px solid var(--yellow);
  padding: 8px 15px calc(10px + env(safe-area-inset-bottom));
  display: none;
  gap: 10px
}

.stickybar .btn {
  flex: 1;
  min-height: 40px;
  padding: 0;
  font-size: 14px;
}

@media (max-width:1151px) {
  nav.links {
    display: none
  }

  .mobilemenu {
    display: block !important;
    margin-left: 0 !important;
    order: 2;
  }

  header > .nav {
    gap: 12px;
  }
  header .btn-row {
    margin-left: auto !important;
  }
}

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

  
  .cards {
    grid-template-columns: 1fr
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr
  }

  .stickybar {
    display: flex
  }

  .foot-bottom {
    padding-bottom: 150px
  }

  .mnav a {
    font-size: 15px !important;
    padding: 6px 0 !important;
  }

  body {
    padding-bottom: 0
  }

  .mobilemenu {
    display: inline-flex
  }
  .topbar {
    display: none;
  }
}

@media(max-width:560px) {
  .foot-grid {
    grid-template-columns: 1fr
  }

  header .btn-row {
    display: none !important;
  }
  header .mobilemenu {
    margin-left: auto !important;
  }

  .wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-grid .btn-row .btn {
    width: 100%;
  }
  .cta-band .btn-row {
    width: 100%;
    flex-direction: column;
  }
  .cta-band .btn-row .btn {
    width: 100%;
  }
}

@media (max-width:401.98px) {
  .author {
    display: flex;
    flex-direction: column;
  }
}

.mobilemenu {
  display: none;
  margin-left: auto;
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 11px 14px;
  font-weight: 800;
  min-height: 44px
}

.mnav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 8px 20px 14px;
  background: #fff
}

.mnav.open {
  display: block
}

.mnav a {
  display: block;
  padding: 11px 4px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--border)
}

.breadcrumb {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 10px
}

.note {
  background: #fffbe6;
  border: 1px solid #e8d90a;
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 14.5px;
  margin: 14px 0
}

.warn {
  background: #fef1f1;
  border: 1px solid #f0b4b4;
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 14.5px;
  margin: 14px 0
}

.steps {
  counter-reset: s;
  list-style: none;
  margin-left: 0
}

.steps li {
  counter-increment: s;
  position: relative;
  padding-left: 44px;
  margin-bottom: 12px
}

.steps li::before {
  content: counter(s);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 14px
}


.payments-wrap h4 {
  color: #fff;
  margin: 0 0 18px;
}
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
  justify-content: space-between;
}
.payment-item img {
  display: block;
  box-shadow: none;
  margin: 0 !important;
  border-radius: 0;
  border: none;
  max-width: 70px;
  max-height: 30px;
}
.footer-icons {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  gap: 10px;
}
.footer-icons .pay-icon {
  display: flex;
  align-items: center;
}
.footer-icons .pay-icon span {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  font-size: 12px;
  border-radius: 100%;
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-icons .pay-icon img {
  filter: brightness(100);
}
.main-title {
  display: flex;
  align-items: center;
}

.main-title .__right {
  margin-left: 60px;
  flex: 0 0 240px;
}
@media (max-width:800px) {
  .payments-grid {
    gap: 16px;
  }
  .payment-item img {
    max-width: 65px;
    max-height: 30px;
  }

  .table-wrap {
    overflow-x: scroll;
  }

      .main-title .__right {
    margin-left: 20px;
    flex: 0 0 220px;
  }
}
@media (max-width:639.98px) {
      .main-title {
    flex-direction: column;
  }

  .main-title .__right {
    margin-left: 0;
    flex: inherit;
  }
  .main-title .__right img {
    width: 300px !important;
  }
}