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

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #04080a;
  --bg-soft: #0b1410;
  --panel: rgba(255, 255, 255, 0.025);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #e8ede8;
  --text-soft: rgba(232, 237, 232, 0.48);
  --text-dim: rgba(232, 237, 232, 0.32);
  --surface: #f2f4ef;
  --surface-text: #0b1410;
  --surface-soft: rgba(11, 20, 16, 0.48);
  --lime: #c8f135;
  --lime-dark: #a8d420;
  --accent: #1a7a38;
  --danger: #ff8060;
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --wb-admin-h: 0px;
}

body.admin-bar {
  --wb-admin-h: 32px;
}

@media (max-width: 782px) {
  body.admin-bar {
    --wb-admin-h: 46px;
  }
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[id] {
  scroll-margin-top: 120px;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 1100px 900px at -5% -10%, rgba(0, 200, 80, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 700px 600px at 105% 90%, rgba(140, 210, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 500px 400px at 50% 50%, rgba(0, 40, 15, 0.25) 0%, transparent 65%),
    radial-gradient(ellipse 300px 300px at 80% 15%, rgba(200, 241, 53, 0.04) 0%, transparent 60%);
}

.nav-wrap,
.hero,
.brand-strip,
.wrap,
.wrap-light-bg,
.footer,
.exit-popup {
  position: relative;
  z-index: 1;
}

.nav-wrap {
  position: fixed;
  top: calc(var(--wb-admin-h) + 20px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  width: min(1200px, calc(100% - 48px));
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 22px;
  background: rgba(6, 11, 8, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 100px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  padding: 7px 14px;
  border-radius: 999px;
  color: rgba(232, 237, 232, 0.58);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost-nav,
.btn-lime-nav,
.btn-hero-main,
.btn-hero-ghost,
.btn-submit,
.btn-cta-m,
.btn-cta-g,
.exit-popup__primary,
.exit-popup__secondary {
  border: none;
  transition:
    transform 0.35s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.35s var(--ease);
}

.btn-ghost-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: transparent;
  color: rgba(232, 237, 232, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.btn-ghost-nav:hover,
.btn-ghost-nav:focus-visible,
.btn-hero-ghost:hover,
.btn-hero-ghost:focus-visible,
.btn-cta-g:hover,
.btn-cta-g:focus-visible,
.exit-popup__secondary:hover,
.exit-popup__secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
  transform: translateY(-1px);
}

.btn-lime-nav,
.btn-hero-main,
.btn-cta-m,
.exit-popup__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #0a1208;
  background: var(--lime);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(200, 241, 53, 0.22);
}

.btn-lime-nav {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
}

.btn-lime-nav .arr,
.btn-hero-main .arr,
.btn-cta-m .arr {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
}

.btn-lime-nav:hover,
.btn-lime-nav:focus-visible,
.btn-hero-main:hover,
.btn-hero-main:focus-visible,
.btn-submit:hover,
.btn-submit:focus-visible,
.btn-cta-m:hover,
.btn-cta-m:focus-visible,
.exit-popup__primary:hover,
.exit-popup__primary:focus-visible {
  background: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(200, 241, 53, 0.28);
}

.ham-btn {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.ham-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.ham-btn.open span:first-child {
  transform: translateY(2.8px) rotate(45deg);
}

.ham-btn.open span:last-child {
  transform: translateY(-2.8px) rotate(-45deg);
}

.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 850;
  padding: 120px 24px 32px;
  background: rgba(4, 8, 10, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
}

.mob-menu.open {
  display: flex;
}

.mob-menu a {
  padding: 14px 18px;
  border-radius: 18px;
  color: rgba(232, 237, 232, 0.68);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: rgba(255, 255, 255, 0.03);
}

.mob-menu a:hover,
.mob-menu a:focus-visible {
  color: var(--lime);
  background: rgba(200, 241, 53, 0.06);
}

.hero {
  min-height: 100dvh;
  padding: 148px 24px 84px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.hero-tag {
  margin-bottom: 28px;
  padding: 6px 16px 6px 10px;
  border: 1px solid rgba(200, 241, 53, 0.22);
  border-radius: 999px;
  background: rgba(200, 241, 53, 0.08);
  color: var(--lime);
  font-size: 12px;
}

.hero-dot,
.status-dot {
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero-dot {
  width: 6px;
  height: 6px;
}

.hero-h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.hero-h1 em {
  font-style: normal;
  background: linear-gradient(140deg, #c8f135 0%, #a0d800 50%, #76bb00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.line-dim {
  color: rgba(232, 237, 232, 0.55);
}

.hero-sub {
  max-width: 470px;
  margin-bottom: 36px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.72;
}

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

.btn-hero-main {
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 15px;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(232, 237, 232, 0.74);
  font-size: 15px;
  font-weight: 600;
}

.hero-micro {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(232, 237, 232, 0.3);
  font-size: 13px;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hs {
  margin-right: 32px;
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.hs:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.hs-n {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.hs-n em {
  font-style: normal;
  color: var(--lime);
}

.hs-l {
  margin-top: 6px;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bc-out,
.adv-out,
.who-out {
  padding: 3px;
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  background: var(--panel);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.bc-out:hover,
.adv-out:hover,
.who-out:hover,
.serv-out:hover,
.rate-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.bc-out:hover,
.who-out:hover {
  border-color: rgba(200, 241, 53, 0.2);
}

.bc-wide {
  grid-column: 1 / -1;
}

.bc-in,
.adv-in,
.who-in,
.serv-in {
  height: 100%;
  border-radius: 19px;
  position: relative;
  overflow: hidden;
}

.bc-in,
.adv-in,
.who-in {
  background: linear-gradient(145deg, #0d1812 0%, #09100c 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bc-in {
  padding: 20px;
}

.bc-lbl {
  margin-bottom: 10px;
  color: rgba(232, 237, 232, 0.32);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bc-val {
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.bc-val-sm {
  font-size: 20px;
}

.bc-val-accent {
  color: var(--lime);
  font-size: 34px;
  margin-bottom: 4px;
}

.bc-sub {
  margin-top: 4px;
  color: var(--text-dim);
  font-size: 11px;
  line-height: 1.55;
}

.bento-top,
.stock-row,
.pbar-meta,
.section-head,
.cta-btns,
.f-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bc-badge.lime {
  color: var(--lime);
  border: 1px solid rgba(200, 241, 53, 0.22);
  background: rgba(200, 241, 53, 0.12);
}

.pbar {
  height: 3px;
  margin-top: 14px;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.pbar-f,
.stock-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #c8f135, #8ecc00);
}

.pbar-meta {
  margin-top: 6px;
  color: rgba(232, 237, 232, 0.3);
  font-size: 10px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.tag {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
}

.tag.lime {
  border: 1px solid rgba(200, 241, 53, 0.18);
  color: var(--lime);
  background: rgba(200, 241, 53, 0.1);
}

.tag.dim {
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(232, 237, 232, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.stock-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.stock-row {
  margin-bottom: 4px;
  color: rgba(232, 237, 232, 0.32);
  font-size: 11px;
}

.stock-row strong {
  color: rgba(232, 237, 232, 0.65);
}

.stock-track {
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.stock-fill.muted {
  background: rgba(200, 241, 53, 0.55);
}

.return-grid {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.return-box {
  flex: 1;
  padding: 12px 8px;
  border-radius: 10px;
  text-align: center;
}

.return-box.ok {
  border: 1px solid rgba(200, 241, 53, 0.14);
  background: rgba(200, 241, 53, 0.07);
}

.return-box.bad {
  border: 1px solid rgba(255, 100, 60, 0.14);
  background: rgba(255, 100, 60, 0.06);
}

.return-num {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.ok .return-num {
  color: var(--lime);
}

.bad .return-num {
  color: var(--danger);
}

.return-lbl {
  margin-top: 3px;
  color: rgba(232, 237, 232, 0.32);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bento-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bento-divider {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.status-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
}

.status-dot {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 6px rgba(200, 241, 53, 0.6);
  flex-shrink: 0;
}

.bento-place {
  margin-top: 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 24px;
}

.wrap-light-bg {
  background: var(--surface);
}

.wrap-light {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 24px;
}

.section-head {
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 11px;
}

.eyebrow .eline {
  width: 20px;
  height: 1px;
}

.eyebrow.dk {
  color: rgba(232, 237, 232, 0.38);
}

.eyebrow.dk .eline {
  background: rgba(232, 237, 232, 0.25);
}

.eyebrow.lt {
  color: rgba(11, 20, 16, 0.42);
}

.eyebrow.lt .eline {
  background: rgba(11, 20, 16, 0.2);
}

.eyebrow.lm {
  color: #4e8a00;
}

.eyebrow.lm .eline {
  background: #4e8a00;
}

.sh2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.sh2.lt {
  color: var(--surface-text);
}

.ssub {
  max-width: 480px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
}

.ssub.lt {
  color: var(--surface-soft);
}

.brand-strip {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 42px;
  min-width: max-content;
  animation: marquee 20s linear infinite;
}

.brand-item {
  color: rgba(232, 237, 232, 0.2);
  font-size: 13px;
  font-weight: 700;
}

.adv-grid,
.serv-grid,
.who-grid,
.rate-grid {
  display: grid;
  gap: 12px;
  margin-top: 52px;
}

.adv-grid,
.rate-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.serv-grid {
  grid-template-columns: repeat(3, 1fr);
}

.adv-in {
  padding: 28px;
}

.adv-ico,
.serv-ico,
.ben-ico {
  display: grid;
  place-items: center;
}

.adv-ico,
.serv-ico {
  margin-bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.adv-ico {
  border: 1px solid rgba(200, 241, 53, 0.15);
  background: rgba(200, 241, 53, 0.09);
  color: var(--lime);
}

.serv-out,
.rate-card {
  border-radius: 22px;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.serv-out {
  padding: 3px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(0, 0, 0, 0.03);
}

.serv-out:hover {
  border-color: rgba(0, 110, 45, 0.18);
}

.serv-in {
  padding: 24px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.serv-ico {
  border: 1px solid rgba(0, 110, 45, 0.12);
  background: rgba(0, 110, 45, 0.08);
  color: var(--accent);
}

.serv-t,
.adv-t,
.who-t,
.ben-t {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.adv-t {
  margin-bottom: 10px;
  font-size: 17px;
}

.adv-d,
.serv-d,
.who-d,
.ben-d {
  font-size: 14px;
  line-height: 1.65;
}

.adv-d,
.who-d {
  color: rgba(232, 237, 232, 0.46);
}

.serv-t {
  margin-bottom: 7px;
  color: var(--surface-text);
  font-size: 14px;
}

.serv-d {
  color: rgba(11, 20, 16, 0.48);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.bens {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.ben-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ben-ico {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 110, 45, 0.14);
  border-radius: 11px;
  background: rgba(0, 110, 45, 0.09);
  color: var(--accent);
}

.ben-t {
  margin-bottom: 4px;
  color: var(--surface-text);
  font-size: 14px;
}

.ben-d {
  color: rgba(11, 20, 16, 0.48);
  font-size: 13px;
  line-height: 1.55;
}

.form-out {
  padding: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.04);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.06);
}

.form-in {
  padding: 36px;
  border-radius: 24px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#quiz {
  scroll-margin-top: calc(var(--wb-admin-h) + 108px);
  outline: none;
}

.form-h3 {
  margin-bottom: 6px;
  color: var(--surface-text);
  font-size: 20px;
  font-weight: 800;
}

.form-p {
  margin-bottom: 26px;
  color: rgba(11, 20, 16, 0.45);
  font-size: 14px;
}

.quiz-top {
  margin-bottom: 20px;
}

.quiz-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 110, 45, 0.14);
  border-radius: 999px;
  background: rgba(0, 110, 45, 0.08);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quiz-progress {
  margin-bottom: 22px;
}

.quiz-progress__bar {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: #eef2e8;
}

.quiz-progress__bar span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c8f135, #84ce00);
  transition: width 0.28s var(--ease);
}

.quiz-progress__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: rgba(11, 20, 16, 0.52);
  font-size: 12px;
  font-weight: 700;
}

.quiz-stage {
  min-height: 320px;
}

.quiz-question {
  margin-bottom: 8px;
  color: var(--surface-text);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.quiz-hint {
  margin-bottom: 20px;
  color: rgba(11, 20, 16, 0.48);
  font-size: 14px;
  line-height: 1.55;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quiz-option {
  padding: 16px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #f7f8f5;
  color: var(--surface-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease), transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.quiz-option:hover,
.quiz-option:focus-visible {
  border-color: rgba(0, 110, 45, 0.22);
  background: #fff;
  transform: translateY(-1px);
}

.quiz-option.is-selected {
  border-color: rgba(0, 110, 45, 0.28);
  background: linear-gradient(180deg, rgba(200, 241, 53, 0.18), rgba(200, 241, 53, 0.08));
  box-shadow: 0 14px 34px rgba(0, 110, 45, 0.08);
}

.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.quiz-nav__spacer {
  display: block;
  width: 118px;
}

.quiz-prev,
.quiz-next {
  min-height: 54px;
  padding: 15px 18px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 800;
}

.quiz-prev {
  min-width: 118px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  background: #f7f8f5;
  color: var(--surface-text);
}

.quiz-next {
  min-width: 154px;
  border: 0;
  background: #0b1410;
  color: var(--lime);
}

.quiz-next:disabled {
  opacity: 0.45;
  cursor: default;
}

.quiz-nav--submit .quiz-submit {
  margin-top: 0;
}

.quiz-summary {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(0, 110, 45, 0.12);
  border-radius: 18px;
  background: rgba(0, 110, 45, 0.04);
}

.quiz-summary__label {
  margin-bottom: 10px;
  color: rgba(11, 20, 16, 0.52);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.quiz-summary__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quiz-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: #fff;
  color: var(--surface-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 8px 24px rgba(11, 20, 16, 0.05);
}

.quiz-contact {
  margin-bottom: 2px;
}

.quiz-status {
  margin-top: 12px;
  margin-bottom: 0;
}

.quiz-success {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 8px 0;
}

.quiz-success__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(200, 241, 53, 0.18);
  color: #537100;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiz-success h3 {
  margin-bottom: 10px;
  color: var(--surface-text);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.quiz-success p {
  max-width: 420px;
  color: rgba(11, 20, 16, 0.5);
  font-size: 15px;
  line-height: 1.65;
}

.quiz-success__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  margin-top: 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  color: var(--surface-text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease);
}

.quiz-success__link:hover,
.quiz-success__link:focus-visible {
  border-color: rgba(0, 110, 45, 0.2);
  background: rgba(0, 110, 45, 0.04);
}

.ff,
.form-status {
  margin-bottom: 13px;
}

.ff label {
  display: block;
  margin-bottom: 6px;
  color: rgba(11, 20, 16, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.ff input,
.ff select {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  border-radius: 13px;
  background: #f7f8f5;
  color: var(--surface-text);
  outline: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.ff input:focus,
.ff select:focus {
  border-color: rgba(0, 110, 45, 0.3);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 140, 55, 0.06);
}

.ff input.is-invalid,
.ff select.is-invalid {
  border-color: rgba(255, 128, 96, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 128, 96, 0.12);
}

.btn-submit {
  width: 100%;
  margin-top: 4px;
  padding: 15px 18px;
  border-radius: 13px;
  background: #0b1410;
  color: var(--lime);
  font-size: 14px;
  font-weight: 800;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: default;
}

.form-note {
  margin-top: 10px;
  color: rgba(11, 20, 16, 0.35);
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
}

.form-status {
  min-height: 22px;
  color: rgba(11, 20, 16, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.form-status.is-success {
  color: #1a7a38;
}

.form-status.is-error {
  color: #c44a2f;
}

.who-in {
  display: flex;
  gap: 16px;
  padding: 24px;
  align-items: flex-start;
}

.who-n {
  flex-shrink: 0;
  padding: 5px 9px;
  border: 1px solid rgba(200, 241, 53, 0.18);
  border-radius: 8px;
  background: rgba(200, 241, 53, 0.08);
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
}

.who-t {
  margin-bottom: 6px;
  font-size: 15px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 52px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.how-step {
  padding: 30px 24px 34px;
  background: #0b1410;
  transition: background 0.3s var(--ease);
}

.how-step:hover {
  background: #0f1a12;
}

.how-n {
  display: inline-block;
  margin-bottom: 18px;
  padding: 4px 11px;
  border: 1px solid rgba(200, 241, 53, 0.18);
  border-radius: 999px;
  background: rgba(200, 241, 53, 0.08);
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.how-t {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
}

.how-d {
  color: rgba(232, 237, 232, 0.44);
  font-size: 13px;
  line-height: 1.65;
}

.trust-strip {
  margin-top: 72px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.025);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tn-item {
  padding: 38px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.tn-item:last-child {
  border-right: none;
}

.tn-val {
  margin-bottom: 8px;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.07em;
}

.tn-val em {
  font-style: normal;
  color: var(--lime);
}

.tn-lbl {
  color: rgba(232, 237, 232, 0.38);
  font-size: 13px;
  line-height: 1.45;
}

.rate-head {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.rate-eyebrow {
  justify-content: center;
}

.rate-title {
  text-transform: uppercase;
}

.rate-sub {
  margin: 0 auto;
}

.rate-card {
  padding: 34px 20px 28px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.rate-card:hover {
  border-color: rgba(255, 122, 0, 0.18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

.rate-mark {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(200, 241, 53, 0.12);
  color: #4e8a00;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.rate-name {
  min-height: 38px;
  margin-bottom: 14px;
  color: #1a1f18;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rate-price {
  margin-bottom: 6px;
  color: #1a1f18;
  font-size: 24px;
  font-weight: 500;
}

.rate-price strong {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.rate-unit {
  color: rgba(11, 20, 16, 0.45);
  font-size: 12px;
}

.rate-note {
  margin-top: 26px;
  color: rgba(11, 20, 16, 0.52);
  font-size: 13px;
  text-align: center;
}

.rate-note a {
  color: #4e8a00;
  text-decoration: underline;
}

.faq-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-cta {
  margin-top: 28px;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  transition: border-color 0.3s var(--ease);
}

.faq-item.open {
  border-color: rgba(200, 241, 53, 0.2);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  background: #0b1410;
  color: rgba(232, 237, 232, 0.84);
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}

.faq-plus {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
  background: rgba(200, 241, 53, 0.1);
  border-color: var(--lime);
}

.faq-a {
  display: none;
  padding: 0 20px 17px;
  background: #0b1410;
  color: rgba(232, 237, 232, 0.44);
  font-size: 13px;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

.cta-wrap {
  padding-top: 0;
}

.cta-out {
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.025);
}

.cta-in {
  position: relative;
  overflow: hidden;
  padding: 52px 44px;
  border-radius: 25px;
  background: linear-gradient(145deg, #0d1812 0%, #09100c 100%);
  text-align: center;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(200, 241, 53, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-ey,
.cta-micro {
  position: relative;
  z-index: 1;
}

.cta-ey {
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.cta-sub {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto 24px;
  color: rgba(232, 237, 232, 0.48);
  font-size: 16px;
}

.cta-btns {
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn-cta-m {
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
}

.btn-cta-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(232, 237, 232, 0.72);
  font-size: 15px;
  font-weight: 600;
}

.cta-micro {
  color: rgba(232, 237, 232, 0.3);
  font-size: 13px;
}

.footer {
  padding: 0 0 64px;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-in {
  max-width: 1160px;
  margin: 0 auto;
  padding: 42px 24px 0;
}

.f-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, 1fr);
  gap: 28px;
}

.f-desc {
  margin-top: 18px;
  max-width: 320px;
  color: rgba(232, 237, 232, 0.32);
  font-size: 14px;
  line-height: 1.7;
}

.f-col-h {
  margin-bottom: 15px;
  color: rgba(232, 237, 232, 0.36);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.f-links a {
  color: rgba(232, 237, 232, 0.58);
  font-size: 14px;
  line-height: 1.5;
}

.f-links a:hover,
.f-links a:focus-visible,
.f-leg a:hover,
.f-leg a:focus-visible {
  color: var(--lime);
}

.footer-btn {
  margin-top: 18px;
}

.f-bot {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 16px;
}

.f-copy {
  color: rgba(232, 237, 232, 0.24);
  font-size: 12px;
}

.f-leg {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.f-leg a {
  color: rgba(232, 237, 232, 0.3);
  font-size: 12px;
}

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 8, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.exit-popup.open {
  display: flex;
}

.exit-popup__box {
  width: min(560px, 100%);
}

.exit-popup__inner {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(145deg, #0d1812 0%, #09100c 100%);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

.exit-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 20px;
}

.exit-popup__badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(200, 241, 53, 0.2);
  border-radius: 999px;
  background: rgba(200, 241, 53, 0.08);
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exit-popup__title {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.exit-popup__text {
  margin-bottom: 18px;
  color: rgba(232, 237, 232, 0.5);
  font-size: 15px;
  line-height: 1.65;
}

.exit-popup__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.exit-popup__list li {
  color: rgba(232, 237, 232, 0.78);
  font-size: 14px;
}

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

.exit-popup__primary,
.exit-popup__secondary {
  flex: 1 1 220px;
  padding: 15px 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
}

.exit-popup__secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(232, 237, 232, 0.72);
}

.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.rv.vis {
  opacity: 1;
  transform: translateY(0);
}

.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.1s; }
.d3 { transition-delay: 0.15s; }
.d4 { transition-delay: 0.2s; }
.d5 { transition-delay: 0.25s; }
.d6 { transition-delay: 0.3s; }

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.76);
  }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

  .ham-btn {
    display: inline-flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .bento {
    max-width: 720px;
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 900px) {
  .nav-wrap {
    width: calc(100% - 24px);
    top: calc(var(--wb-admin-h) + 12px);
  }

  .nav-pill {
    padding: 8px 8px 8px 16px;
  }

  .nav-logo img {
    height: 44px;
    max-width: 240px;
  }

  .btn-ghost-nav {
    display: none;
  }

  .hero {
    padding: 116px 18px 64px;
  }

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

  .hs {
    margin-right: 0;
    padding: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .hs:nth-child(2n) {
    border-right: none;
  }

  .hs:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .bento,
  .who-grid,
  .trust-inner,
  .adv-grid,
  .serv-grid,
  .rate-grid {
    grid-template-columns: 1fr;
  }

  .bento-split,
  .form-grid,
  .ff-row,
  .quiz-options {
    grid-template-columns: 1fr;
  }

  .bento-divider {
    padding-left: 0;
    border-left: none;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .tn-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .tn-item:last-child {
    border-bottom: none;
  }

  .wrap,
  .wrap-light {
    padding: 72px 18px;
  }

  .cta-in {
    padding: 36px 22px;
  }

  .footer {
    padding-bottom: 40px;
  }

  .footer-in {
    padding: 34px 18px 0;
  }

  .f-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .hero-tag,
  .hero-micro,
  .ssub,
  .adv-d,
  .serv-d,
  .who-d,
  .how-d,
  .form-p,
  .cta-sub {
    font-size: 14px;
  }

  .hero-btns,
  .cta-btns,
  .exit-popup__actions {
    flex-direction: column;
  }

  .btn-lime-nav,
  .btn-hero-main,
  .btn-hero-ghost,
  .btn-cta-m,
  .btn-cta-g,
  .faq-cta {
    width: 100%;
  }

  .hero-h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-sub {
    margin-bottom: 28px;
  }

  .form-in,
  .exit-popup__inner {
    padding: 24px;
  }

  .quiz-question {
    font-size: 22px;
  }

  .quiz-nav,
  .quiz-nav--submit,
  .quiz-progress__meta {
    flex-direction: column;
    align-items: stretch;
  }

  .quiz-nav__spacer {
    display: none;
  }

  .quiz-prev,
  .quiz-next,
  .quiz-submit,
  .quiz-success__link {
    width: 100%;
  }

  .quiz-stage,
  .quiz-success {
    min-height: auto;
  }

  .mob-menu {
    padding-top: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .rv {
    opacity: 1;
    transform: none;
  }
}
