:root {
  --white: #ffffff;
  --ink: #061c16;
  --muted: #5d6864;
  --primary: #15945f;
  --primary-dark: #0d7249;
  --mint: #eff7f3;
  --mint-strong: #dff0e8;
  --sky: #b8e8ed;
  --line: #dce8e2;
  --soft-line: rgba(6, 28, 22, 0.1);
  --shadow: 0 24px 80px rgba(7, 40, 29, 0.14);
  --frame: min(1120px, calc(100vw - 36px));
  --header: 78px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.motion-ready {
  scroll-padding-top: calc(var(--header) + 20px);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border: 2px solid var(--primary);
  border-radius: 10px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.frame {
  width: var(--frame);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav-frame {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 128px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 520;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  color: var(--primary);
}

.nav-cta {
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 14px 20px;
  background: var(--white);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--primary);
  background: var(--mint);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--soft-line);
  background: var(--white);
  border-radius: 10px;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -7px;
}

.nav-toggle-bars::after {
  top: 7px;
}

.hero {
  padding: 10px 0 34px;
  background: var(--white);
  scroll-margin-top: calc(var(--header) + 20px);
}

.hero-shell {
  position: relative;
  width: min(1360px, calc(100vw - 24px));
  height: min(660px, calc(100svh - 104px));
  min-height: 620px;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  background: var(--sky);
}

.motion-ready .hero-shell {
  animation: hero-settle 1100ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.95) contrast(1.02) brightness(0.98);
  transform: translate3d(0, var(--hero-image-y, 0), 0) scale(1.045);
  transform-origin: center;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 27, 38, 0.72) 0%, rgba(18, 48, 62, 0.46) 44%, rgba(14, 26, 34, 0.12) 100%),
    linear-gradient(180deg, rgba(21, 47, 58, 0.08) 0%, rgba(5, 19, 25, 0.22) 100%);
}

.hero-content {
  width: min(760px, calc(100% - 64px));
  margin-left: clamp(48px, 8vw, 112px);
  padding-top: clamp(86px, 10vh, 108px);
  color: var(--white);
  text-shadow: none;
  transform: translate3d(0, var(--hero-content-y, 0), 0);
  will-change: transform;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 560;
}

.eyebrow.light {
  color: #ffffff;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2 {
  margin: 0;
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.05rem, 5vw, 4.35rem);
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.75rem);
}

h3 {
  margin: 0;
  font-size: 1.42rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 680;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button.primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.button.full {
  width: 100%;
}

.hero-content .button {
  margin-top: 50px;
}

.hero-awards {
  position: absolute;
  right: clamp(42px, 8vw, 96px);
  bottom: 78px;
  display: flex;
  align-items: center;
  gap: 60px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.hero-awards div {
  min-width: 132px;
}

.hero-awards img {
  width: 22px;
  height: 22px;
  margin: 0 auto 10px;
  color: #ffffff;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.hero-awards strong {
  display: block;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 760;
  line-height: 1;
}

.hero-awards span {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.995);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .service-card.motion-reveal,
.motion-ready .compliance-grid article.motion-reveal,
.motion-ready .lead-form.motion-reveal,
.motion-ready .accordion details.motion-reveal {
  transform: translate3d(0, 28px, 0) scale(0.995);
}

.motion-ready .service-card.motion-reveal.is-visible,
.motion-ready .compliance-grid article.motion-reveal.is-visible,
.motion-ready .lead-form.motion-reveal.is-visible,
.motion-ready .accordion details.motion-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .hero-awards img {
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-strip {
  padding: 30px 0 50px;
  border-bottom: 1px solid var(--soft-line);
  background: var(--white);
}

.brand-strip-inner {
  display: block;
}

.strip-copy span {
  display: block;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.strip-copy p {
  max-width: none;
  margin: 10px 0 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.strip-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 0;
  color: var(--ink);
}

.strip-items span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 760;
  line-height: 1.15;
}

.strip-items span::before {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  content: "";
  background: var(--primary);
  -webkit-mask: url("check-icon.svg") center / contain no-repeat;
  mask: url("check-icon.svg") center / contain no-repeat;
}

.section-green {
  background: var(--primary);
  color: var(--white);
}

.section-mint {
  background: var(--mint);
}

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

.services,
.quote {
  padding: 104px 0 92px;
  scroll-margin-top: calc(var(--header) + 20px);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 74px;
  text-align: center;
}

.center-heading.narrow {
  max-width: 800px;
}

.center-heading p:not(.eyebrow) {
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.72;
}

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

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 20px 70px rgba(6, 42, 30, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 86px rgba(6, 42, 30, 0.14);
}

.motion-ready .service-card.motion-reveal {
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms ease;
}

.service-card.secondary-service {
  grid-column: 1 / -1;
  min-height: 160px;
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1.35fr) auto;
  gap: 28px;
  align-items: center;
}

.service-card h3 {
  margin-top: 0;
  font-size: 1.25rem;
}

.service-card.secondary-service h3 {
  grid-column: 1;
  grid-row: 1;
  margin-top: 0;
}

.service-card p {
  margin: 16px 0 26px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.service-card.secondary-service p {
  grid-column: 2;
  grid-row: 1;
  max-width: 540px;
  margin: 0;
}

.service-card a {
  margin-top: auto;
  color: var(--primary);
  font-weight: 650;
  text-decoration: none;
}

.service-card.secondary-service a {
  grid-column: 3;
  grid-row: 1;
  margin-top: 0;
  white-space: nowrap;
}

.stats-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  margin-top: 92px;
  padding-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.stats-row h3 {
  max-width: 420px;
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 520;
}

.stats-row strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  font-weight: 560;
}

.stats-row span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
}

.expert {
  padding: 116px 0 124px;
}

.expert-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.expert img {
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 18px;
  margin-bottom: 52px;
}

.expert h2 {
  max-width: 760px;
}

.expert p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 38px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.8;
}

.process {
  padding: 110px 0;
  scroll-margin-top: calc(var(--header) + 20px);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: calc(var(--header) + 34px);
}

.process-intro h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.process-intro .button {
  margin-top: 46px;
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.step-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.step-list span {
  color: #9ca7a2;
  font-size: 1.5rem;
  font-weight: 560;
}

.step-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.compliance {
  padding: 108px 0;
  scroll-margin-top: calc(var(--header) + 20px);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.compliance-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.compliance-grid span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 780;
}

.compliance-grid p {
  margin: 16px 0 0;
  color: var(--muted);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: calc(var(--header) + 34px);
}

.quote-copy h2 {
  color: var(--white);
}

.quote-copy > p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.16rem;
  line-height: 1.75;
}

.medicare-note {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.medicare-note strong {
  color: var(--white);
}

.medicare-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.lead-form {
  padding: 34px;
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: block;
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 680;
}

.lead-form label:first-of-type {
  margin-top: 0;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfdfb;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.lead-form select {
  appearance: none;
  padding-right: 54px;
  background-color: #fbfdfb;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 5.25 7 8.75l3.5-3.5' fill='none' stroke='%23061c16' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 14px 14px;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.lead-form input:focus-visible,
.lead-form select:focus-visible,
.lead-form textarea:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(21, 148, 95, 0.12);
  background-color: #ffffff;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 14px;
  margin-top: 18px;
}

.field-row + .field-row {
  margin-top: 18px;
}

.field-row label {
  margin: 0 0 8px;
}

.consent-check {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin: 20px 0 !important;
  color: var(--muted) !important;
  font-size: 0.84rem !important;
  line-height: 1.5;
}

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

.form-fineprint {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.form-status {
  display: none;
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 10px;
  font-weight: 720;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: #fff0ee;
  color: #8a2216;
  border: 1px solid #f0c4bd;
}

.form-status.is-success {
  background: #ecf8f1;
  color: #135b37;
  border: 1px solid #bfe5cd;
}

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

.faq {
  padding: 108px 0;
  scroll-margin-top: calc(var(--header) + 20px);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
}

.accordion {
  display: grid;
  gap: 14px;
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.accordion summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 720;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-weight: 800;
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
}

.final-cta {
  padding: 0 0 92px;
  background: var(--white);
}

.final-shell {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.final-shell img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-shell::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(0, 34, 26, 0.74), rgba(0, 34, 26, 0.25));
}

.final-shell > div {
  max-width: 650px;
  padding: 68px;
}

.final-shell .button {
  margin-top: 36px;
}

.legal-band {
  padding: 48px 0;
  background: var(--mint);
  border-top: 1px solid var(--line);
}

.legal-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 28px;
}

.legal-grid h2,
.legal-grid h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.legal-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer {
  background: #061c16;
  color: var(--white);
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: 34px;
}

.footer-brand img {
  width: 128px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.small {
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.legal-page {
  padding: calc(var(--header) + 72px) 0 80px;
}

.legal-page .frame {
  max-width: 880px;
}

.legal-page h1 {
  margin: 0 0 22px;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1;
  font-weight: 560;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.35rem;
  line-height: 1.2;
}

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

.legal-page a {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 980px) {
  :root {
    --header: 66px;
  }

  .site-header {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-frame {
    background: #ffffff;
    min-height: var(--header);
  }

  .brand img {
    width: 112px;
    height: 44px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: grid;
    gap: 0;
    width: 100%;
    padding: 10px 20px 22px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 180ms ease;
    box-shadow: 0 28px 60px rgba(16, 36, 31, 0.14);
    visibility: hidden;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: 1.5px solid var(--ink);
  }

  .site-nav.simple-nav {
    position: static;
    width: auto;
    display: flex;
    gap: 14px;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    transform: none;
  }

  .site-nav.simple-nav a {
    border-bottom: 0;
    padding: 10px 0;
  }

  .site-nav.simple-nav .nav-cta {
    margin-top: 0;
    padding: 10px 12px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-shell {
    height: min(640px, calc(100svh - var(--header) - 10px));
    min-height: 580px;
  }

  .hero-content {
    width: min(640px, calc(100% - 72px));
    margin-left: clamp(36px, 14vw, 150px);
    padding-top: clamp(46px, 7vh, 64px);
  }

  .hero-content h1 {
    font-size: clamp(2.65rem, 5.6vw, 3.85rem);
    max-width: 680px;
  }

  .hero-content .button {
    margin-top: 24px;
  }

  .hero-awards {
    left: 34px;
    right: 34px;
    bottom: 28px;
    justify-content: center;
    transform: none;
  }

  .brand-strip-inner {
    display: block;
  }

  .strip-copy {
    display: block;
  }

  .strip-copy p {
    max-width: none;
  }

  .strip-items span {
    min-height: 68px;
    padding-inline: 18px;
  }

  .process-grid,
  .quote-grid,
  .faq-grid,
  .legal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-intro,
  .quote-copy {
    position: static;
  }

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

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 700px) {
  :root {
    --header: 64px;
    --frame: min(100vw - 28px, 1120px);
  }

  .brand img {
    width: 108px;
    height: 42px;
  }

  .hero-shell {
    height: min(620px, calc(100svh - var(--header)));
    min-height: 570px;
    border-radius: 16px;
  }

  .hero-image {
    object-position: 58% bottom;
  }

  .hero-content {
    width: calc(100% - 34px);
    margin-left: 17px;
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(2.15rem, 9.4vw, 2.85rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }

  .quote-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3rem);
    line-height: 1.04;
  }

  .hero-content p:not(.eyebrow) {
    max-width: 35rem;
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.43;
  }

  .hero-content .button {
    min-height: 50px;
    margin-top: 16px;
  }

  .hero-awards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    left: 17px;
    right: 17px;
    bottom: 12px;
    text-align: center;
  }

  .hero-awards div {
    min-width: 116px;
  }

  .hero-awards strong {
    font-size: 1.22rem;
  }

  .hero-awards span {
    font-size: 0.68rem;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
  }

  .brand-strip {
    padding: 28px 0 42px;
  }

  .strip-copy {
    display: block;
  }

  .strip-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    text-align: left;
  }

  .strip-items span {
    justify-content: start;
    padding: 0;
  }

  .services,
  .quote,
  .process,
  .compliance,
  .faq,
  .expert {
    padding: 70px 0;
  }

  .center-heading {
    margin-bottom: 42px;
  }

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

  .field-row,
  .compliance-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.secondary-service {
    min-height: 310px;
    width: 100%;
    padding: 28px;
  }

  .service-card.secondary-service {
    display: flex;
    gap: 0;
    align-items: start;
  }

  .stats-row {
    gap: 26px;
    margin-top: 58px;
    padding-top: 42px;
  }

  .expert img {
    margin-bottom: 38px;
  }

  .step-list li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0;
  }

  .lead-form {
    padding: 22px;
  }

  .site-nav.simple-nav a:not(.nav-cta) {
    display: none;
  }

  .final-shell {
    min-height: 480px;
    border-radius: 16px;
  }

  .final-shell > div {
    padding: 28px;
  }
}

@keyframes hero-settle {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
