:root {
  --ink: #0f172a;
  --muted: #5f6b7a;
  --line: #dce5e8;
  --paper: #fbfcfb;
  --white: #ffffff;
  --navy: #10253f;
  --green: #14785f;
  --green-dark: #0d5f4b;
  --gold: #c49a3b;
  --mist: #edf5f3;
  --shadow: 0 24px 70px rgba(16, 37, 63, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(251, 252, 251, 0.88);
  border-bottom: 1px solid rgba(220, 229, 232, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  box-shadow: 0 14px 36px rgba(16, 37, 63, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 330px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--green));
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 176px;
  height: 62px;
  overflow: hidden;
  border: 1px solid rgba(220, 229, 232, 0.86);
  border-radius: var(--radius);
  background: var(--white);
}

.brand-logo svg {
  width: 100%;
  height: 100%;
  display: block;
  padding: 4px;
}

.logo-dollar,
.logo-dollar-small {
  fill: #18aee3;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.logo-dollar {
  font-size: 118px;
}

.logo-dollar-small {
  font-size: 48px;
}

.logo-main,
.logo-sub {
  fill: #303136;
  font-family: Georgia, "Times New Roman", serif;
}

.logo-main {
  font-size: 100px;
  font-weight: 700;
}

.logo-sub {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

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

.site-nav a {
  color: #263648;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 13px;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green-dark);
  background: var(--mist);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--green);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--green-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 126px clamp(18px, 5vw, 72px) 54px;
  background:
    linear-gradient(115deg, rgba(237, 245, 243, 0.96), rgba(251, 252, 251, 0.72)),
    radial-gradient(circle at 88% 18%, rgba(196, 154, 59, 0.2), transparent 28%);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--navy);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--navy);
}

h3 {
  font-size: 21px;
  color: var(--navy);
}

.hero-text,
.section-heading p,
.split-copy p,
.simulator p,
.footer p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 30px rgba(20, 120, 95, 0.22);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 9px 12px;
  color: #344356;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(220, 229, 232, 0.84);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
}

.hero-media {
  padding-top: 30px;
}

.hero-media img {
  width: min(100%, 640px);
  margin-inline: auto;
  filter: drop-shadow(0 28px 42px rgba(16, 37, 63, 0.18));
}

.section {
  padding: 92px clamp(18px, 5vw, 72px);
}

.band {
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.solution-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 120, 95, 0.34);
  box-shadow: var(--shadow);
}

.icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
  color: var(--green);
  background: var(--mist);
  border-radius: var(--radius);
}

.icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card p {
  color: var(--muted);
  line-height: 1.6;
}

.solution-card a {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
}

.benefits-list {
  display: grid;
  gap: 14px;
}

.benefit {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.benefit strong {
  color: var(--gold);
  font-size: 24px;
}

.benefit span {
  color: #304155;
  font-size: 18px;
  font-weight: 700;
}

.simulator-band {
  background: linear-gradient(135deg, var(--navy), #163a45);
}

.simulator {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.simulator h2,
.simulator .eyebrow,
.simulator p {
  color: var(--white);
}

.simulator p {
  opacity: 0.82;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #2d3a4d;
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font: inherit;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(20, 120, 95, 0.16);
  border-color: var(--green);
}

.lead-form input[type="range"] {
  padding: 0;
  accent-color: var(--green);
}

.contact-strip,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-strip a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.contact-strip a {
  color: var(--green-dark);
  background: var(--mist);
}

.range-value {
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 900;
}

.hidden-field {
  display: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.faq {
  background: var(--white);
}

.accordion {
  max-width: 900px;
  border-top: 1px solid var(--line);
}

.accordion button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.accordion button span {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
}

.accordion button span::before,
.accordion button span::after {
  content: "";
  position: absolute;
  inset: 8px 0 auto;
  height: 2px;
  background: var(--green);
}

.accordion button span::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.accordion button[aria-expanded="true"] span::after {
  transform: rotate(0deg);
}

.accordion-panel {
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
  border-bottom: 1px solid var(--line);
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 42px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #091829;
}

.footer p,
.footer small {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-contact {
  margin-top: 14px;
}

.footer-contact a {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer small {
  grid-column: 1 / -1;
  line-height: 1.6;
}

.btn-footer {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(237, 245, 243, 0.96), rgba(251, 252, 251, 0.74)),
    radial-gradient(circle at 80% 18%, rgba(196, 154, 59, 0.18), transparent 30%);
}

.thanks {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 34px;
  padding: 48px clamp(18px, 5vw, 72px);
}

.thanks-panel {
  max-width: 720px;
}

.thanks-panel h1 {
  margin-bottom: 18px;
}

.thanks-panel p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  margin-bottom: 26px;
}

@media (max-width: 1040px) {
  .hero,
  .split,
  .simulator {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    padding-top: 0;
  }

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

@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 71px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 132px;
    height: 48px;
  }

  .hero {
    padding-top: 106px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-text,
  .section-heading p,
  .split-copy p,
  .simulator p {
    font-size: 16px;
  }

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

  .solution-card {
    min-height: 0;
  }

  .benefit {
    grid-template-columns: 48px 1fr;
  }

  .lead-form {
    padding: 20px;
  }

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