:root {
  --navy-950: #031d42;
  --navy-900: #052b5f;
  --navy-800: #073b78;
  --navy-700: #0b4e91;
  --green-700: #098b3b;
  --green-600: #0ba447;
  --green-500: #18b653;
  --green-100: #dff6e7;
  --blue-100: #e9f3fc;
  --cream: #fbfaf6;
  --white: #ffffff;
  --ink: #10233d;
  --muted: #5f6d7e;
  --line: #dbe4ec;
  --danger: #a52a2a;
  --shadow: 0 24px 70px rgba(5, 43, 95, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.audience-bar {
  color: var(--white);
  background: var(--navy-950);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.audience-bar__content {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
}

.audience-bar__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green-500);
  box-shadow: 0 0 0 5px rgba(24, 182, 83, 0.17);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(5, 43, 95, 0.08);
  backdrop-filter: blur(15px);
}

.site-header__content {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand__crop {
  position: relative;
  width: 78px;
  height: 66px;
  overflow: hidden;
}

.brand__crop img {
  position: absolute;
  top: -75px;
  left: -115px;
  width: 425px;
  max-width: none;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand__copy strong {
  color: var(--navy-900);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.brand__copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--green-700);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 730px;
  padding: 74px 0 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(14, 167, 73, 0.1), transparent 34%),
    linear-gradient(145deg, #fff 0%, #f6fafc 54%, #edf7f1 100%);
}

.hero::before {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -250px;
  content: "";
  border: 52px solid rgba(9, 139, 59, 0.1);
  border-radius: 50%;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero__glow--one {
  width: 180px;
  height: 180px;
  left: -100px;
  top: 80px;
  border: 28px solid rgba(6, 47, 103, 0.06);
}

.hero__glow--two {
  width: 10px;
  height: 10px;
  right: 44%;
  top: 90px;
  background: var(--green-500);
  box-shadow: 28px 0 0 rgba(11, 164, 71, 0.3), 56px 0 0 rgba(11, 164, 71, 0.12);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.eyebrow span {
  margin-right: 7px;
}

.eyebrow--light {
  color: #80e2a3;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-950);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 49px);
  font-weight: 800;
}

h3 {
  font-size: 20px;
  font-weight: 800;
}

.hero__lead {
  max-width: 690px;
  margin: 0 0 30px;
  color: #4c5e73;
  font-size: 18px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button span {
  font-size: 22px;
}

.button--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  box-shadow: 0 16px 30px rgba(11, 164, 71, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 19px 38px rgba(11, 164, 71, 0.3);
}

.button:disabled {
  color: #84909b;
  background: #dce3e8;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.hero__microcopy {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.hero__checks li {
  padding: 8px 13px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid #d9e6ee;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(5, 43, 95, 0.06);
}

.eligibility-note {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hero__visual {
  position: relative;
  justify-self: end;
  width: min(100%, 510px);
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(5, 43, 95, 0.09);
  border-radius: 38px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
}

.hero__card-accent {
  position: absolute;
  width: 74px;
  height: 74px;
  top: -25px;
  right: -28px;
  z-index: -1;
  border: 12px solid var(--green-500);
  border-radius: 50%;
}

.hero__floating-card {
  position: absolute;
  right: -28px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 255px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(3, 29, 66, 0.25);
  transform: rotate(-1deg);
}

.hero__floating-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.hero__floating-card small {
  color: #caddf0;
  font-size: 11px;
}

.hero__floating-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--green-500);
  border-radius: 50%;
  font-weight: 800;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading--center {
  margin: 0 auto 50px;
  text-align: center;
}

.purpose {
  color: var(--white);
  background: var(--navy-950);
}

.purpose h2,
.purpose h3 {
  color: var(--white);
}

.purpose .section-heading > p:last-child {
  color: #b9c9dc;
}

.purpose__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.purpose-card {
  min-height: 252px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.purpose-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 33px;
  color: var(--white);
  background: var(--green-600);
  border-radius: 15px;
  font-size: 22px;
  font-weight: 800;
}

.purpose-card h3 {
  margin-bottom: 12px;
}

.purpose-card p {
  margin: 0;
  color: #b9c9dc;
  font-size: 14px;
}

.local {
  background: var(--white);
}

.local__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: 80px;
}

.local__panel {
  position: relative;
  min-height: 500px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 24%, rgba(45, 219, 106, 0.32), transparent 19%),
    linear-gradient(145deg, #074177, #052858 60%, #031d42);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.local__panel::before,
.local__panel::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.local__panel::before {
  width: 300px;
  height: 300px;
  top: -95px;
  right: -50px;
}

.local__panel::after {
  width: 210px;
  height: 210px;
  top: -50px;
  right: -5px;
}

.local__map-mark {
  position: absolute;
  top: 78px;
  right: 110px;
  z-index: 1;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  background: var(--green-500);
  border: 8px solid rgba(255, 255, 255, 0.15);
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
}

.local__map-mark span {
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
}

.local__overline {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: #80e2a3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.local__big {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 0 30px;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.local__hours {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.local__hours span {
  color: #b9c9dc;
  font-size: 13px;
}

.local__content > p:not(.eyebrow) {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 50%;
}

.text-link {
  color: var(--green-700);
  font-weight: 800;
  text-underline-offset: 5px;
}

.steps {
  background: #f0f5f8;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps__grid li {
  min-height: 240px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.steps__number {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--green-700);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.steps__grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.steps__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.consult {
  color: var(--white);
  background:
    radial-gradient(circle at 11% 83%, rgba(27, 190, 87, 0.22), transparent 26%),
    linear-gradient(145deg, var(--navy-950), #073b78);
}

.consult__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(540px, 1fr);
  align-items: start;
  gap: 75px;
}

.consult__content {
  position: sticky;
  top: 130px;
  padding-top: 36px;
}

.consult h2 {
  color: var(--white);
}

.consult__content > p:not(.eyebrow) {
  color: #c0d0e1;
  font-size: 17px;
}

.consult__trust {
  display: flex;
  gap: 15px;
  margin-top: 32px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
}

.consult__trust > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--navy-950);
  background: var(--green-500);
  border-radius: 50%;
  font-weight: 800;
}

.consult__trust p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #aebfd2;
  font-size: 12px;
}

.consult__trust strong {
  color: var(--white);
  font-size: 14px;
}

.lead-form {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(1, 18, 41, 0.38);
}

.lead-form__heading {
  margin-bottom: 28px;
}

.lead-form__heading h3 {
  margin: 9px 0 6px;
  font-size: 26px;
}

.lead-form__heading p,
.lead-form__note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.lead-form__step {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.field {
  margin-bottom: 17px;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 800;
}

.field label span {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #f8fafb;
  border: 1px solid #cfdbe4;
  border-radius: 12px;
  outline: none;
  transition: border 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.field input:focus,
.field select:focus {
  background: var(--white);
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(11, 164, 71, 0.11);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: var(--danger);
}

.field__error {
  display: block;
  min-height: 16px;
  margin-top: 4px;
  color: var(--danger);
  font-size: 11px;
}

.status-field {
  min-width: 0;
  margin: 2px 0 18px;
  padding: 0;
  border: 0;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.radio-card {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  min-height: 72px;
  margin: 0 !important;
  padding: 13px;
  background: #f8fafb;
  border: 1px solid #d5e0e7;
  border-radius: 13px;
  cursor: pointer;
}

.radio-card:has(input:checked) {
  background: #effbf3;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(11, 164, 71, 0.09);
}

.radio-card input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--green-600);
}

.radio-card span {
  display: flex;
  flex-direction: column;
}

.radio-card strong {
  color: var(--ink);
  font-size: 12px;
}

.radio-card small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.form-message {
  margin-bottom: 17px;
  padding: 15px;
  border-radius: 12px;
  font-size: 12px;
}

.form-message strong {
  display: block;
  margin-bottom: 4px;
}

.form-message--ineligible {
  color: #6a2222;
  background: #fff0f0;
  border: 1px solid #f0caca;
}

.form-message--status[data-type="error"] {
  color: #6a2222;
  background: #fff0f0;
  border: 1px solid #f0caca;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--green-600);
}

.consent a {
  color: var(--navy-800);
  font-weight: 800;
}

.button--full {
  width: 100%;
  margin-top: 8px;
}

.lead-form__note {
  margin-top: 11px;
  text-align: center;
}

.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: 80px;
}

.faq__items {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 23px 40px 23px 0;
  color: var(--navy-950);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  right: 4px;
  top: 22px;
  content: "+";
  color: var(--green-700);
  font-size: 23px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: -5px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  padding: 76px 0;
  color: var(--white);
  background: linear-gradient(120deg, var(--green-700), var(--green-500));
}

.final-cta__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.final-cta h2 {
  max-width: 790px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(30px, 4vw, 45px);
}

.button--light {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 16px 35px rgba(3, 29, 66, 0.15);
}

.button--light:hover,
.button--light:focus-visible {
  transform: translateY(-2px);
}

.site-footer {
  padding: 70px 0 34px;
  color: #b5c4d4;
  background: #02142e;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.7fr;
  gap: 42px;
}

.footer-brand {
  display: block;
  margin-bottom: 13px;
  color: var(--white);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-footer strong {
  color: var(--white);
  font-size: 13px;
}

.site-footer p {
  margin: 12px 0 0;
  font-size: 12px;
}

.site-footer a {
  color: #82e3a5;
  text-underline-offset: 4px;
}

.regulatory-note {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8394a7;
  font-size: 10px;
}

.regulatory-note p {
  max-width: 750px;
  margin: 0;
}

.regulatory-note span {
  flex: 0 0 auto;
}

.mobile-cta {
  display: none;
}

/* Privacy page */
.privacy-page {
  background: #f2f6f8;
}

.privacy-main {
  padding: 80px 0 110px;
}

.privacy-layout {
  max-width: 900px;
}

.privacy-hero {
  margin-bottom: 38px;
}

.privacy-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(40px, 6vw, 64px);
}

.privacy-hero > p:last-child {
  color: var(--muted);
}

.privacy-content {
  padding: 55px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.privacy-content section + section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.privacy-content h2 {
  margin-bottom: 14px;
  font-size: 25px;
}

.privacy-content p,
.privacy-content li {
  color: #46586b;
  font-size: 15px;
}

.privacy-content a {
  color: var(--green-700);
  font-weight: 800;
}

.privacy-footer {
  padding: 20px 0;
}

.privacy-footer .regulatory-note {
  margin-top: 0;
  padding-top: 0;
  border: 0;
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 40px;
  }

  .hero__floating-card {
    right: -10px;
  }

  .purpose__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .local__grid,
  .consult__grid,
  .faq__grid {
    gap: 50px;
  }

  .consult__grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(480px, 1fr);
  }
}

@media (max-width: 820px) {
  .section {
    padding: 82px 0;
  }

  .hero {
    padding: 58px 0 76px;
  }

  .hero__grid,
  .local__grid,
  .consult__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 690px;
  }

  .hero__visual {
    justify-self: center;
  }

  .local__grid {
    gap: 45px;
  }

  .local__panel {
    min-height: 430px;
  }

  .steps__grid {
    grid-template-columns: 1fr;
  }

  .steps__grid li {
    min-height: auto;
  }

  .steps__number {
    margin-bottom: 24px;
  }

  .consult__content {
    position: static;
    padding-top: 0;
  }

  .faq__grid {
    gap: 35px;
  }

  .final-cta__content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .final-cta__content .button {
    justify-self: start;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 70px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .audience-bar {
    font-size: 10px;
  }

  .audience-bar__content {
    min-height: 42px;
  }

  .site-header__content {
    min-height: 70px;
  }

  .brand__crop {
    width: 63px;
    height: 56px;
  }

  .brand__crop img {
    top: -60px;
    left: -91px;
    width: 338px;
  }

  .brand__copy strong {
    font-size: 15px;
  }

  .brand__copy small {
    font-size: 6px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 45px 0 60px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 33px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__microcopy {
    text-align: center;
  }

  .hero__visual {
    width: calc(100% - 8px);
    border-radius: 28px;
  }

  .hero__visual img {
    border-radius: 20px;
  }

  .hero__floating-card {
    right: 10px;
    bottom: 20px;
    min-width: 230px;
  }

  .purpose__grid {
    grid-template-columns: 1fr;
  }

  .purpose-card {
    min-height: auto;
  }

  .purpose-card__icon {
    margin-bottom: 25px;
  }

  .local__panel {
    min-height: 410px;
    padding: 30px;
  }

  .local__big {
    font-size: 27px;
  }

  .local__map-mark {
    top: 72px;
    right: 70px;
  }

  .consult__grid {
    gap: 40px;
  }

  .lead-form {
    padding: 25px 19px;
    border-radius: 24px;
  }

  .field-grid,
  .radio-grid {
    grid-template-columns: 1fr;
  }

  .radio-card {
    min-height: 64px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .regulatory-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 9px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 53px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(3, 29, 66, 0.28);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
  }

  .privacy-main {
    padding: 55px 0 80px;
  }

  .privacy-content {
    padding: 28px 20px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
