:root {
  --green: #b7dc00;
  --deep: #061c16;
  --ink: #10201c;
  --muted: #53655f;
  --line: #dce7e2;
  --soft: #f4f8f6;
  --white: #ffffff;
  --danger: #b84c4c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

button,
input,
select {
  font: inherit;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(1, 15, 12, 0.98) 0%, rgba(4, 27, 20, 0.9) 45%, rgba(4, 27, 20, 0.76) 100%),
    radial-gradient(circle at 58% 34%, rgba(183, 220, 0, 0.14), transparent 28%),
    radial-gradient(circle at 74% 44%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(135deg, #092c22, #04110e 72%);
  padding: 30px clamp(18px, 3.4vw, 54px) 44px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(1, 15, 12, 0.18), transparent 38%, rgba(1, 15, 12, 0.52) 100%),
    radial-gradient(ellipse at 58% 48%, rgba(183, 220, 0, 0.08), transparent 36%);
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 42px;
}

.topbar img,
.footer img {
  width: min(320px, 48vw);
  height: auto;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(390px, 460px);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.25rem, 5.1vw, 5.05rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.subtitle {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: clamp(1.28rem, 2.05vw, 2.18rem);
  font-weight: 800;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
}

.subtitle strong {
  color: var(--green);
}

.support {
  max-width: 650px;
  margin: 18px 0 30px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 650px;
  margin: 0 0 32px;
}

.hero-benefits span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.72);
  padding: 0;
}

.hero-benefits svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  stroke: var(--green);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(183, 220, 0, 0.22));
}

.hero-benefits strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
}

.hero-human {
  position: absolute;
  z-index: 0;
  top: -12px;
  bottom: -44px;
  left: clamp(430px, 42vw, 650px);
  width: min(31vw, 450px);
  pointer-events: none;
}

.hero-human::before,
.hero-human::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-human::before {
  inset: 5% -28% 0;
  background:
    radial-gradient(ellipse at 52% 46%, rgba(183, 220, 0, 0.13), transparent 58%),
    linear-gradient(90deg, rgba(4, 27, 20, 0.78), transparent 24%, transparent 72%, rgba(4, 27, 20, 0.86));
  filter: blur(1px);
}

.hero-human::after {
  left: -32%;
  right: -22%;
  bottom: 0;
  height: 38%;
  z-index: 2;
  background: linear-gradient(0deg, rgba(3, 19, 15, 0.94), rgba(3, 19, 15, 0));
}

.hero-human img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 0 0 48% 48%;
  opacity: 0.9;
  filter: saturate(0.95) drop-shadow(0 34px 72px rgba(0, 0, 0, 0.42));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 8%, #000 76%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%),
    linear-gradient(180deg, transparent 0, #000 8%, #000 76%, transparent 100%);
  mask-composite: intersect;
}

.primary-cta {
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #06120f;
  cursor: pointer;
  font-weight: 800;
  padding: 15px 22px;
  text-transform: uppercase;
}

.primary-cta.full {
  width: 100%;
  min-height: 64px;
  font-size: 1.08rem;
}

.eligibility-panel,
.form-section {
  border: 1px solid rgba(183, 220, 0, 0.55);
  border-radius: 8px;
  background: rgba(7, 27, 22, 0.9);
  padding: clamp(28px, 3vw, 42px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.eligibility-panel {
  position: relative;
  z-index: 6;
  width: 100%;
  max-width: 500px;
  justify-self: end;
  background: #071b16;
  backdrop-filter: none;
}

.eligibility-panel h2,
.eligibility-panel p,
.form-section h2,
.form-section p {
  color: var(--white);
}

.form-assurance {
  display: grid;
  gap: 8px;
  margin: 18px 0 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.form-assurance span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-assurance span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--green);
}

.stacked-form,
.lead-form {
  display: grid;
  gap: 16px;
}

.eligibility-flow {
  display: grid;
  gap: 16px;
}

.eligibility-step {
  display: grid;
  gap: 18px;
}

.eligibility-step h3 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.3vw, 1.95rem);
  line-height: 1.12;
}

.step-count {
  color: var(--green) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-row button {
  min-height: 58px;
  border: 1px solid rgba(183, 220, 0, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
}

.choice-row button:hover {
  background: rgba(183, 220, 0, 0.16);
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 700;
}

.eligibility-panel label,
.form-section label {
  color: rgba(255, 255, 255, 0.82);
}

input,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 12px;
}

select option {
  color: var(--ink);
}

.check {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
}

.check input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.section {
  padding: clamp(42px, 6vw, 78px) clamp(18px, 4vw, 62px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 62px);
  background: linear-gradient(90deg, #f8fbfa, #eef7f3);
}

.trust-strip article {
  display: grid;
  gap: 4px;
  border-left: 3px solid var(--green);
  padding-left: 18px;
}

.trust-strip strong {
  color: var(--ink);
}

.trust-strip span {
  color: var(--muted);
}

.section.light {
  background: var(--white);
}

.authority-section {
  background: #f8fbfa;
}

.section-header {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-header p,
.split p,
.faq p {
  color: var(--muted);
}

.cards,
.steps {
  display: grid;
  gap: 16px;
}

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(16, 32, 28, 0.06);
}

.modern-cards article::before {
  content: "";
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(183, 220, 0, 0.92), rgba(183, 220, 0, 0.18));
  box-shadow: inset 0 0 0 1px rgba(6, 28, 22, 0.08);
}

.cards strong,
.steps strong {
  display: block;
  margin-bottom: 8px;
}

.cards span,
.steps span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  background: var(--soft);
}

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

.benefits-grid span {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  font-weight: 700;
}

.benefits-grid span::before {
  content: "";
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
  border-radius: 8px;
  background: rgba(183, 220, 0, 0.18);
  box-shadow: inset 0 0 0 1px rgba(183, 220, 0, 0.5);
}

.benefits-grid small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.benefits-grid strong::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}

.section-cta,
button.section-cta,
button[data-scroll-target] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 24px;
  border: 0 !important;
  border-radius: 8px;
  background: #064b34 !important;
  color: #ffffff !important;
  cursor: pointer;
  font-weight: 900;
  padding: 13px 22px;
  box-shadow: 0 12px 28px rgba(6, 75, 52, 0.2);
  text-transform: uppercase;
}

.section-cta:hover,
button.section-cta:hover,
button[data-scroll-target]:hover {
  background: #0a6044 !important;
}

.section.light > .section-cta {
  margin-top: 42px;
}

.form-section {
  margin: 0 clamp(18px, 4vw, 62px) clamp(30px, 5vw, 62px);
}

.lead-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-form-simple {
  max-width: 760px;
}

.lead-form button {
  grid-column: 1 / -1;
}

.result-box {
  margin-top: 18px;
  border-radius: 8px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.result-box.error {
  border: 1px solid rgba(184, 76, 76, 0.55);
  background: rgba(184, 76, 76, 0.12);
}

.result-box.success {
  border: 1px solid rgba(183, 220, 0, 0.7);
}

.result-box a {
  display: inline-flex;
  margin-top: 14px;
  border-radius: 8px;
  background: var(--green);
  color: #06120f;
  font-weight: 800;
  padding: 12px 16px;
  text-decoration: none;
}

.steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.timeline {
  position: relative;
  gap: 22px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--line);
}

.steps article {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.steps article:first-child {
  padding-left: 18px;
}

.steps strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--green);
  color: #06120f;
  font-size: 1rem;
}

.faq-section {
  background: #f7faf9;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 17px 18px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.7fr) minmax(260px, 1fr);
  gap: 30px;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 36px clamp(18px, 4vw, 62px);
}

.footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
}

.footer img {
  max-width: 260px;
  margin-bottom: 18px;
}

.footer a {
  color: var(--green);
}

.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .lead-form,
  .hero-benefits,
  .trust-strip,
  .footer {
    grid-template-columns: 1fr;
  }

  .cards.four,
  .steps,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 34px;
  }

  .hero-human {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: min(78vw, 360px);
    height: 320px;
    min-height: 0;
    margin: -18px auto 10px;
    order: 2;
  }

  .hero-human img {
    width: 100%;
    height: 100%;
    max-height: none;
  }

  .eligibility-panel {
    max-width: none;
    justify-self: stretch;
    order: 3;
    padding: 30px 24px;
  }

  .eligibility-panel h2 {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .eligibility-panel input,
  .eligibility-panel select {
    min-height: 58px;
  }

  .primary-cta.full {
    min-height: 68px;
  }
}
