:root {
  --navy: #073b4c;
  --ink: #102a34;
  --green: #a8e063;
  --green-dark: #5e9e43;
  --paper: #f8faf5;
  --line: #dbe6df;
  --muted: #60737a;
  --white: #fff;
  --radius: 18px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
.site-header {
  background: var(--paper);
  padding: 20px 0;
  border-bottom: 1px solid #e8eee9;
}
.nav-wrap,
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Manrope, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}
.brand > span:last-child > span {
  color: var(--green-dark);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  font-size: 25px;
  line-height: 1;
}
.menu-toggle {
  display: flex;
  background: none;
  border: 0;
  padding: 6px;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
}
.main-nav {
  display: none;
}
.main-nav.is-open {
  display: flex;
  position: absolute;
  top: 69px;
  left: 20px;
  right: 20px;
  z-index: 5;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 25px #073b4c1b;
}
.main-nav.is-open a {
  padding: 12px;
}
.hero {
  padding: 54px 0 64px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 38px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 0 0 17px;
}
.eyebrow span {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
}
h1,
h2 {
  font-family: Manrope, sans-serif;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
  color: var(--navy);
}
h1 {
  font-size: clamp(39px, 10vw, 72px);
  max-width: 700px;
  letter-spacing: -0.02em;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--green-dark);
}
.hero-text {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 22px 0 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 7px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 18px #073b4c1c;
}
.button-primary {
  background: var(--green);
  color: var(--navy);
}
.button-dark {
  background: var(--navy);
  color: var(--white);
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
}
.trust-row p {
  margin: 0;
  line-height: 1.35;
}
.trust-row strong {
  color: var(--navy);
}
.avatar-stack {
  display: flex;
}
.avatar-stack i {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  margin-right: -7px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--navy);
  color: var(--green);
  font-style: normal;
  font-size: 10px;
}
.avatar-stack i:nth-child(2) {
  background: #e2a188;
  color: var(--white);
}
.avatar-stack i:nth-child(3) {
  background: #78a4a0;
  color: var(--white);
}
.avatar-stack i:last-child {
  background: var(--green);
  color: var(--navy);
  font-size: 17px;
}
.hero-visual {
  position: relative;
  padding: 0 13px 25px 0;
}
.image-frame {
  height: 390px;
  overflow: hidden;
  border-radius: 100px 18px 18px 18px;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.saving-note {
  position: absolute;
  left: -4px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  background: var(--white);
  border-radius: 9px;
  box-shadow: 0 12px 25px #073b4c1b;
  font-size: 12px;
}
.note-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #e6f6d4;
  color: var(--green-dark);
  font-size: 21px;
}
.saving-note strong,
.saving-note small {
  display: block;
}
.saving-note strong {
  color: var(--navy);
}
.saving-note small {
  color: var(--muted);
  font-size: 10px;
}
.heart-sticker {
  position: absolute;
  right: 0;
  top: 23px;
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  font-size: 28px;
  transform: rotate(10deg);
}
.stats-band {
  background: var(--navy);
  color: var(--white);
  padding: 27px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stats-grid div {
  display: flex;
  align-items: center;
  gap: 9px;
  border-right: 1px solid #ffffff2e;
}
.stats-grid div:last-child {
  border: 0;
}
.stats-grid strong {
  font: 800 27px Manrope;
  color: var(--green);
}
.stats-grid span {
  font-size: 10px;
  line-height: 1.25;
  color: #c3d3d4;
}
.section {
  padding: 75px 0;
}
.section-heading {
  max-width: 570px;
}
.section-heading h2,
.contact-box h2,
.faq h2 {
  font-size: 36px;
}
.section-heading > p:last-child,
.process-intro > p:last-child,
.contact-box p:last-child {
  color: var(--muted);
  margin: 20px 0 0;
}
.benefit-grid {
  display: grid;
  gap: 13px;
  margin-top: 43px;
}
.benefit {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.benefit-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  font-size: 25px;
  margin-bottom: 22px;
}
.icon-spark {
  background: #e9f6d9;
  color: var(--green-dark);
}
.icon-heart {
  background: #fae7df;
  color: #c4715c;
}
.icon-chat {
  background: #e0eef0;
  color: var(--navy);
}
.benefit h3 {
  font: 700 18px Manrope;
  color: var(--navy);
  margin: 0 0 8px;
}
.benefit p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.process {
  background: var(--navy);
  color: var(--white);
}
.eyebrow-light {
  color: var(--green);
}
.eyebrow-light span {
  background: var(--green);
}
.process h2 {
  color: var(--white);
  font-size: 37px;
}
.process-intro > p:last-child {
  color: #bbccce;
}
.steps {
  margin-top: 40px;
}
.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-top: 1px solid #ffffff2e;
}
.step:last-child {
  border-bottom: 1px solid #ffffff2e;
}
.step > b {
  color: var(--green);
  font: 700 13px Manrope;
}
.step h3 {
  font: 700 16px Manrope;
  margin: 0 0 5px;
}
.step p {
  color: #bbccce;
  font-size: 13px;
  margin: 0;
}
.contact {
  background: #e8f3dc;
}
.contact-box {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-box h2 {
  max-width: 610px;
}
.contact-box p:last-child {
  max-width: 450px;
}
.faq-grid {
  display: grid;
  gap: 39px;
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font: 700 15px Manrope;
  color: var(--navy);
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  color: var(--muted);
  font-size: 14px;
  max-width: 520px;
  margin: 13px 0 0;
}
.site-footer {
  background: #052f3d;
  color: #bad0d0;
  padding: 27px 0;
}
.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.site-footer .brand {
  color: var(--white);
  font-size: 17px;
}
.site-footer p,
.site-footer small {
  font-size: 11px;
  margin: 0;
}
.site-footer small {
  width: 100%;
  color: #7ea4a6;
}
@media (min-width: 700px) {
  .container {
    width: min(1120px, calc(100% - 80px));
  }
  .menu-toggle {
    display: none;
  }
  .main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 13px;
    color: var(--muted);
  }
  .main-nav a:hover {
    color: var(--navy);
  }
  .main-nav .nav-cta {
    padding: 10px 14px;
    background: var(--green);
    border-radius: 6px;
    color: var(--navy);
    font-weight: 700;
  }
  .hero {
    padding: 76px 0 90px;
  }
  .hero-grid {
    grid-template-columns: 1fr 0.88fr;
    align-items: center;
    gap: 70px;
  }
  .hero-visual {
    padding-right: 22px;
  }
  .image-frame {
    height: 510px;
  }
  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
  }
  .steps {
    margin: 0;
  }
  .contact-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .faq-grid {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 100px;
  }
  .section-heading h2,
  .contact-box h2,
  .faq h2 {
    font-size: 48px;
  }
  .process h2 {
    font-size: 48px;
  }
  .footer-wrap {
    gap: 25px;
  }
  .site-footer small {
    width: auto;
    margin-left: auto;
  }
}

/* Capture page layout */
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-link {
  display: none;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
}
.no-cost {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.no-cost strong {
  color: var(--navy);
}
.saving-note > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e6f6d4;
  color: var(--green-dark);
  font-size: 18px;
}
.reasons {
  padding: 29px 0;
  background: var(--navy);
  color: var(--white);
}
.reasons-grid {
  display: grid;
  gap: 20px;
}
.reason {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.reason > span {
  color: var(--green);
  font: 700 12px Manrope;
}
.reason p {
  margin: 0;
  color: #c1d1d2;
  font-size: 12px;
  line-height: 1.4;
}
.reason strong {
  color: var(--white);
  font-size: 14px;
}
.final-cta {
  padding: 65px 0;
  background: #e8f3dc;
}
.final-cta-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.final-cta h2 {
  max-width: 650px;
  font-size: 35px;
}
@media (min-width: 700px) {
  .header-link {
    display: inline;
  }
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .reason {
    padding-right: 20px;
    border-right: 1px solid #ffffff33;
  }
  .reason:last-child {
    border: 0;
  }
  .final-cta-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .final-cta h2 {
    font-size: 45px;
  }
  .final-cta .button {
    flex-shrink: 0;
  }
}
@media (min-width: 1000px) {
  .hero-copy {
    padding-left: 28px;
  }
}
