@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/atkinson-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/atkinson-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Atkinson Hyperlegible";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/atkinson-bold.woff2") format("woff2");
}

:root {
  --navy: #082957;
  --navy-dark: #061d3d;
  --blue: #1456a0;
  --green: #3b6b14;
  --green-brand: #5a9a28;
  --green-cta: #1f7a34;
  --wa: #0b6b38;
  --yellow: #f6b51b;
  --light: #f6f9fc;
  --inclusion: #f3f7e8;
  --text: #23344d;
  --muted: #3d5168;
  --border: #d5e0eb;
  --white: #fff;
  --focus: #f6b51b;
  --danger: #9b1c1c;
  --success: #1f7a34;
  --header-h: 4.25rem;
  --radius: 1.15rem;
  --shadow: 0 0.75rem 1.75rem rgb(8 41 87 / 0.1);
  --font: "Atkinson Hyperlegible", "Segoe UI", system-ui, -apple-system, sans-serif;
  --space: clamp(3.25rem, 6vw, 5.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
}

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

a {
  color: inherit;
}

main a:not(.btn) {
  color: var(--blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

main a:not(.btn):hover {
  color: var(--navy);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.float-wa:focus-visible {
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

.container {
  width: min(70rem, 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgb(8 41 87 / 0.98);
  color: var(--white);
  box-shadow: 0 0.2rem 1rem rgb(0 0 0 / 0.18);
}

.nav-bar {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  min-height: 2.75rem;
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-tagline {
  display: none;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #d7e3f2;
  max-width: 16rem;
  line-height: 1.25;
}

.brand-amp {
  color: #b5dc55;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 0.55rem;
  background: rgb(255 255 255 / 0.08);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle svg {
  width: 1.45rem;
  height: 1.45rem;
  display: block;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0;
  background: rgb(6 29 61 / 0.45);
  z-index: 30;
}

.nav-backdrop.is-visible {
  display: block;
}

.nav-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(70rem, 100%);
  background: var(--navy-dark);
  padding: 0.4rem 0 1rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  box-shadow: 0 1rem 2rem rgb(0 0 0 / 0.22);
  z-index: 35;
}

.nav-panel.is-open {
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 4%;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-link {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.45rem 0.85rem;
  border-radius: 0.55rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--white);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  background: rgb(255 255 255 / 0.1);
  color: #d5ef8a;
}

.nav-link.is-active {
  box-shadow: inset 0 -3px 0 #9bc83f;
}

.hero {
  background: linear-gradient(165deg, #f8fbff 0%, #eef5fb 58%, #eaf5df 100%);
  padding: 2.6rem 0 3rem;
}

.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.eyebrow {
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  margin: 0 0 0.55rem;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.15;
}

h1 {
  font-size: clamp(1.85rem, 7vw, 3.5rem);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  margin: 0 0 0.7rem;
}

h3 {
  font-size: 1.12rem;
  margin: 0.7rem 0 0.4rem;
}

.lead,
.hero p {
  font-size: 1.05rem;
  max-width: 40rem;
  color: var(--muted);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

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

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: #0b3a74;
}

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

.btn-green:hover {
  background: #19632a;
}

.btn-wa {
  background: var(--wa);
  color: var(--white);
}

.btn-wa:hover {
  background: #095c30;
}

.about-figure {
  margin: 0;
  position: relative;
}

.about-badge {
  margin: 0.85rem 0 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
}

.hero-img,
.photo {
  width: 100%;
  border-radius: 1.6rem;
  box-shadow: 0 1.25rem 2.5rem rgb(8 41 87 / 0.18);
  display: block;
  object-fit: cover;
}

.hero-img {
  aspect-ratio: 4 / 3;
}

.trust {
  background: var(--navy);
  color: var(--white);
  padding: 1.15rem 0;
}

.trust-grid {
  display: grid;
  gap: 0.9rem;
}

.trust-grid p {
  margin: 0;
  color: #d5e0ee;
  font-size: 0.95rem;
  padding-left: 0.85rem;
  border-left: 3px solid #9bc83f;
}

.trust-grid strong {
  display: block;
  color: var(--white);
}

.photo {
  aspect-ratio: 4 / 3;
}

section {
  padding: var(--space) 0;
  scroll-margin-top: calc(var(--header-h) + 0.8rem);
}

section.trust {
  padding: 1.15rem 0;
}

.hero-figure,
.inclusion-figure {
  margin: 0;
}

.inclusion-figure {
  margin-bottom: 1.5rem;
}

.inclusion-figure .photo {
  max-height: 20rem;
}

.center {
  text-align: center;
}

.subtitle {
  max-width: 42rem;
  margin: 0 auto 2rem;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.card,
.step,
.contact-card {
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: var(--inclusion);
  color: var(--navy);
}

.icon-wrap.is-navy {
  background: #e7eef8;
  color: #1456a0;
}

.icon-wrap.is-green {
  background: #eaf4dc;
  color: #3b6b14;
}

.icon-wrap.is-gold {
  background: #fff4d6;
  color: #8a5a00;
}

.icon-wrap.is-purple {
  background: #f1eaf8;
  color: #5b3d8f;
}

.icon-wrap.is-rose {
  background: #fdecee;
  color: #8d3048;
}

.icon-wrap.is-teal {
  background: #e5f4f2;
  color: #17665f;
}

.icon-wrap svg {
  width: 1.4rem;
  height: 1.4rem;
}

.card p,
.step p {
  margin: 0;
  color: var(--muted);
}

.about {
  background: var(--light);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.1rem 0 0.4rem;
  padding: 0;
  list-style: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #e7f0d8;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
}

.list {
  padding: 0;
  list-style: none;
  margin: 1.1rem 0 0;
}

.list li {
  display: flex;
  gap: 0.7rem;
  margin: 0.7rem 0;
  align-items: flex-start;
}

.list svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--green-cta);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.inclusion {
  background: var(--inclusion);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step {
  border: 0;
  border-top: 5px solid var(--green-brand);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.facts-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.facts-grid article {
  background: var(--inclusion);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}

.facts-grid h3 {
  margin: 0 0 0.35rem;
}

.facts-grid p {
  margin: 0;
  color: var(--muted);
}

.quote {
  background: var(--navy);
  color: var(--white);
  text-align: left;
}

.quote h2,
.page-hero h1 {
  color: var(--white);
}

.quote-grid {
  display: grid;
  gap: 1.5rem;
}

.quote-grid p {
  margin: 0;
  color: #d5e0ee;
}

.quote-line {
  font-size: 1.15rem;
  margin: 0 0 1.2rem;
  max-width: 36rem;
}

.quote a.btn {
  color: var(--white);
}

.contact-card {
  background: var(--light);
  border: 0;
}

.contact-item {
  display: flex;
  gap: 0.85rem;
  margin: 0 0 1.15rem;
  align-items: flex-start;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item svg {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-item p {
  margin: 0;
}

.contact-item strong {
  color: var(--navy);
  display: block;
}

.form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form label {
  font-weight: 700;
  color: var(--navy);
}

.req {
  color: var(--danger);
}

.form input,
.form textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 0.75rem 0.9rem;
  background: var(--white);
  min-height: 2.85rem;
}

.form textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form input:focus-visible,
.form textarea:focus-visible,
.form input[type="checkbox"]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-color: var(--navy);
}

.hp {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.consent input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.2rem;
  accent-color: var(--navy);
  flex-shrink: 0;
}

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
}

.form-help svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--green-cta);
}

.form-status {
  min-height: 1.4rem;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.form .btn {
  justify-self: start;
}

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 2.2rem 0 calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

.page-copy {
  padding-bottom: 4rem;
}

.buttons-center {
  justify-content: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
}

.footer-name {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.footer-tagline {
  margin: 0.3rem 0 0;
  max-width: 22rem;
  color: #d5e0ee;
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.footer-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: #d5e0ee;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #fff;
}

.footer-meta {
  display: grid;
  gap: 0.35rem;
  padding-top: 1.15rem;
  color: #c5d3e4;
  font-size: 0.9rem;
}

.footer-meta span {
  white-space: nowrap;
}

.float-wa {
  position: fixed;
  right: max(0.85rem, env(safe-area-inset-right));
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  z-index: 25;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--wa);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0.5rem 1.5rem rgb(0 0 0 / 0.28);
}

.float-wa svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 2.4rem 0;
}

.page-hero p {
  margin: 0;
  max-width: 42rem;
  color: #d5e0ee;
}

.legal {
  max-width: 46rem;
}

.legal h2 {
  margin-top: 2rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal .btn {
  margin-top: 1.2rem;
}

.error-page {
  text-align: center;
  padding: 4rem 0 5rem;
}

.error-page p {
  color: var(--muted);
}

body.is-menu-open {
  overflow: hidden;
}

@media (min-width: 640px) {
  .cards,
  .steps,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-meta {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.5rem;
    row-gap: 0.35rem;
  }

  .trust-grid,
  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-badge {
    position: absolute;
    left: 0.85rem;
    right: auto;
    bottom: 0.85rem;
    max-width: 14rem;
    margin: 0;
    box-shadow: 0 0.6rem 1.4rem rgb(0 0 0 / 0.22);
  }
}

@media (min-width: 900px) {
  :root {
    --header-h: 4.85rem;
  }

  .brand-tagline {
    display: block;
  }

  .menu-toggle,
  .nav-backdrop {
    display: none !important;
  }

  .nav-panel,
  .nav-panel.is-open {
    display: block;
    position: static;
    transform: none;
    width: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 0.15rem;
  }

  .nav-link {
    min-height: 2.75rem;
    font-size: 0.95rem;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.6rem;
    align-items: center;
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

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

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

  .quote-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2.5rem;
  }

  .hero {
    padding: 4.2rem 0 3.4rem;
  }

  .site-footer {
    padding-bottom: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
