:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #1e1e1e;
  --muted: #5f5f5f;
  --green: #0f4f3a;
  --green-soft: #eaf3ee;
  --gold: #b88a44;
  --line: #e9e7e2;
  --shadow: 0 24px 70px rgba(31, 31, 31, 0.08);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.hero.section-shell {
  width: min(1280px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1120px, calc(100% - 28px));
  min-height: 76px;
  margin: 12px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(233, 231, 226, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(31, 31, 31, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 164px;
  height: auto;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: 132px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #242424;
  font-size: 13px;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(15, 79, 58, 0.2);
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: #0b432f;
  box-shadow: 0 18px 36px rgba(15, 79, 58, 0.28);
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding-inline: 18px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: -10px;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(520px, 1fr);
  align-items: center;
  min-height: calc(100vh - 90px);
  padding: 54px 0 42px;
  gap: 0;
}

.hero::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: linear-gradient(90deg, #ffffff 0%, #fafafa 43%, #f4eee7 100%);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-left: clamp(0px, 1vw, 18px);
  margin-right: -170px;
}

.eyebrow,
.section-kicker {
  color: #85807a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-shell h2,
.highlight-band h2,
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: 52px;
  line-height: 1;
}

.hero-text {
  max-width: 540px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  margin-top: 30px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  padding: 34px 0 0;
  margin: 0;
  list-style: none;
  color: #3f4642;
  font-size: 13px;
  font-weight: 650;
}

.trust-list li,
.about-meta li,
.final-cta small {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-media {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  min-height: calc(100vh - 12px);
  margin-top: -54px;
  margin-bottom: -42px;
  margin-right: calc((50% - 50vw) / 2);
  background: transparent;
}

.hero-media::after,
.final-cta::before {
  position: absolute;
  inset: auto 12% 7% auto;
  width: 120px;
  height: 210px;
  border-right: 2px solid rgba(15, 79, 58, 0.18);
  border-radius: 50%;
  content: "";
  transform: rotate(-14deg);
}

.hero-media::after {
  display: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 100%);
}

.situations {
  padding: 54px 0 32px;
  text-align: center;
}

.section-shell h2,
.highlight-band h2,
.final-cta h2 {
  margin-top: 10px;
  font-size: 48px;
  line-height: 1.06;
}

.card-grid {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

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

.info-card,
.step-card {
  min-height: 256px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: left;
  box-shadow: 0 14px 34px rgba(31, 31, 31, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card:hover,
.step-card:hover {
  border-color: rgba(15, 79, 58, 0.22);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.info-card h3,
.step-card h3,
.expect-grid h3 {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.16;
}

.info-card p,
.step-card p,
.expect-grid p,
.highlight-band p,
.about-copy p,
.final-cta p,
.faq p {
  color: var(--muted);
}

.info-card p {
  margin-top: 14px;
  font-size: 14px;
}

.info-card a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.info-card a::after {
  margin-left: 7px;
  content: "→";
}

.highlight-band {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  padding: 54px 0;
  background: linear-gradient(90deg, #fbfaf8 0%, #ffffff 50%, #edf4ef 100%);
}

.highlight-inner {
  display: grid;
  grid-template-columns: 160px minmax(0, 680px);
  align-items: center;
  gap: 28px;
}

.large-icon {
  width: 72px;
  height: 72px;
}

.highlight-band p {
  max-width: 680px;
  margin-top: 18px;
  font-size: 17px;
}

.steps {
  padding: 74px 0 34px;
  text-align: center;
}

.step-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 84px;
  margin-top: 42px;
}

.step-grid::before,
.step-grid::after {
  position: absolute;
  top: 48%;
  color: var(--green);
  font-size: 30px;
  content: "→";
}

.step-grid::before {
  left: 31.2%;
}

.step-grid::after {
  right: 31.2%;
}

.step-card {
  position: relative;
  min-height: 220px;
  text-align: center;
}

.step-card h3 {
  margin-top: 18px;
}

.step-card p {
  margin-top: 10px;
  font-size: 14px;
}

.step-number {
  position: absolute;
  top: -14px;
  left: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-weight: 800;
}

.expectations {
  padding: 24px 0 64px;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border-block: 1px solid var(--line);
}

.expect-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 34px 20px;
}

.expect-grid article + article {
  border-left: 1px solid var(--line);
}

.expect-grid h3 {
  margin-top: 0;
  font-size: 18px;
}

.expect-grid p {
  margin-top: 8px;
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: 80px;
  padding: 34px 0 64px;
}

.about-photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: #f1eee8;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  object-position: center;
}

.about-copy h2 {
  margin-top: 10px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--green);
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 500;
  line-height: 1.05;
}

.about-copy p {
  margin-top: 22px;
  max-width: 650px;
  font-size: 17px;
}

.about-meta {
  display: grid;
  gap: 14px;
  padding: 26px 0 28px;
  margin: 0;
  list-style: none;
  color: #3f4642;
  font-size: 13px;
  font-weight: 650;
}

.media-section {
  padding: 36px 0 72px;
}

.media-heading {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.media-heading h2 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.06;
  white-space: nowrap;
}

.media-heading p:last-child {
  max-width: 660px;
  margin-top: 16px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 17px;
}

.media-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.media-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(31, 31, 31, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.media-card:hover,
.media-card:focus-visible {
  border-color: rgba(15, 79, 58, 0.2);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 240ms ease;
}

.media-card:nth-child(1) img {
  object-position: 58% center;
}

.media-card:nth-child(2) img {
  object-position: 66% center;
}

.media-card:nth-child(3) img {
  object-position: 42% center;
}

.media-card:hover img,
.media-card:focus-visible img {
  transform: scale(1.035);
}

.media-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.02) 0%, rgba(30, 30, 30, 0.12) 42%, rgba(15, 79, 58, 0.82) 100%);
  content: "";
}

.media-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: #ffffff;
}

.media-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.media-card strong {
  display: block;
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 750;
  line-height: 1.18;
}

.media-card small {
  display: inline-flex;
  margin-top: 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.92;
}

.media-card small::after {
  margin-left: 8px;
  content: "→";
}

.media-play {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(31, 31, 31, 0.16);
}

.media-play::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--green);
  content: "";
}

.media-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.button-secondary {
  background: transparent;
  color: var(--green);
  box-shadow: none;
  border: 1px solid rgba(15, 79, 58, 0.22);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--green-soft);
  color: var(--green);
  box-shadow: 0 12px 24px rgba(15, 79, 58, 0.1);
}

.faq {
  padding: 34px 0 68px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  text-align: left;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

summary {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

summary::after {
  color: var(--green);
  content: "+";
  font-size: 22px;
  font-weight: 500;
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 20px 20px;
  font-size: 14px;
}

.cost-section {
  padding: 58px 0;
  background: linear-gradient(90deg, #fbfaf8 0%, #ffffff 56%, var(--green-soft) 100%);
}

.cost-inner {
  max-width: 880px;
  text-align: center;
}

.cost-inner h2 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
  line-height: 1.06;
}

.cost-inner p:not(.section-kicker) {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  background:
    radial-gradient(circle at 8% 92%, rgba(15, 79, 58, 0.12), transparent 22%),
    linear-gradient(110deg, #f8f7f4 0%, #ffffff 58%, #f1f3ef 100%);
  text-align: center;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta p {
  max-width: 640px;
  margin: 16px auto 28px;
  font-size: 17px;
}

.final-cta small {
  justify-content: center;
  margin-top: 14px;
  color: #4d554f;
  font-size: 12px;
  font-weight: 650;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 100px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--green);
  font-weight: 750;
}

.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;
}

.wa-icon,
.mini-icon,
.card-icon,
.large-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  color: currentColor;
}

.wa-icon {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.wa-icon::after {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translate(3px, 3px) rotate(26deg);
}

.mini-icon {
  width: 18px;
  height: 18px;
  border: 1.5px solid currentColor;
  border-radius: 5px;
  opacity: 0.75;
}

.card-icon,
.large-icon {
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
}

.card-icon {
  width: 54px;
  height: 54px;
}

.card-icon::before,
.mini-icon::before,
.large-icon::before {
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 6px;
  content: "";
}

.clock-icon::before {
  border-radius: 999px;
  box-shadow: inset 5px 0 0 -3px currentColor;
}

.briefcase-icon::before {
  border-radius: 3px;
  box-shadow: inset 0 7px 0 -5px currentColor;
}

.factory-icon::before {
  border-radius: 2px;
  clip-path: polygon(0 100%, 0 35%, 28% 55%, 28% 35%, 58% 55%, 58% 35%, 100% 55%, 100% 100%);
}

.alert-icon::before {
  width: 0;
  height: 0;
  border-right: 11px solid transparent;
  border-bottom: 20px solid currentColor;
  border-left: 11px solid transparent;
  border-top: 0;
  border-radius: 0;
}

.doc-icon::before {
  border-radius: 2px;
  box-shadow: inset 0 7px 0 -5px currentColor, inset 0 -7px 0 -5px currentColor;
}

.chat-icon::before,
.message-icon::before {
  border-radius: 6px;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 64% 72%, 54% 100%, 42% 72%, 0 72%);
}

.people-icon::before,
.user-icon::before {
  border-radius: 999px 999px 4px 4px;
}

.heart-icon::before {
  width: 18px;
  height: 18px;
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 6px 0;
  transform: rotate(45deg);
}

.shield-icon::before {
  border-radius: 10px 10px 12px 12px;
  clip-path: polygon(50% 0, 100% 18%, 86% 78%, 50% 100%, 14% 78%, 0 18%);
}

.path-icon::before {
  border-radius: 999px;
  box-shadow: 13px 0 0 -4px currentColor, -13px 0 0 -4px currentColor;
}

.lock-icon::before {
  width: 14px;
  height: 12px;
  border-radius: 3px;
  box-shadow: 0 -7px 0 -4px currentColor;
}

.pin-icon::before {
  border-radius: 999px 999px 999px 0;
  transform: rotate(-45deg);
}

@media (max-width: 1040px) {
  .hero.section-shell {
    width: min(100% - 40px, 760px);
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    position: fixed;
    top: 86px;
    right: 14px;
    left: 14px;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 14px 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 100%;
    margin-right: 0;
  }

  .hero-media {
    min-height: 480px;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .hero-media img {
    min-height: 480px;
  }

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

  .step-grid {
    gap: 20px;
  }

  .step-grid::before,
  .step-grid::after {
    display: none;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .media-section {
    padding-bottom: 58px;
  }

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

@media (max-width: 720px) {
  .section-shell {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    width: calc(100% - 20px);
    min-height: 66px;
    margin-top: 8px;
    padding: 10px;
    border-radius: 14px;
  }

  .brand-logo {
    width: 138px;
  }

  .hero {
    padding-top: 42px;
    gap: 28px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .section-shell h2,
  .highlight-band h2,
  .final-cta h2,
  .cost-inner h2 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 16px;
  }

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

  .trust-list {
    display: grid;
    gap: 12px;
    padding-top: 26px;
  }

  .hero-media {
    min-height: 360px;
    order: -1;
    margin-inline: -14px;
  }

  .hero-media img {
    min-height: 360px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 84%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 84%, transparent 100%);
  }

  .situations {
    padding-top: 46px;
  }

  .five-columns,
  .step-grid,
  .expect-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .step-card {
    min-height: auto;
    padding: 20px;
  }

  .info-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: start;
  }

  .info-card h3,
  .info-card p,
  .info-card a {
    grid-column: 2;
  }

  .info-card h3 {
    margin-top: 4px;
  }

  .info-card p {
    display: none;
  }

  .highlight-band {
    padding: 42px 0;
  }

  .highlight-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps {
    padding-top: 56px;
  }

  .expectations {
    padding-bottom: 46px;
  }

  .expect-grid {
    border-block: 0;
    gap: 12px;
  }

  .expect-grid article {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
  }

  .expect-grid article + article {
    border-left: 1px solid var(--line);
  }

  .about {
    padding-bottom: 46px;
  }

  .media-section {
    padding: 0 0 48px;
  }

  .media-heading h2 {
    font-size: 34px;
    white-space: normal;
  }

  .media-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .media-overlay {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .media-card strong {
    font-size: 18px;
  }

  .about-copy h2 {
    font-size: 38px;
  }

  .about-meta {
    display: grid;
  }

  .faq {
    padding-bottom: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 24px 0;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 38px;
  }

  .section-shell h2,
  .highlight-band h2,
  .final-cta h2,
  .about-copy h2,
  .cost-inner h2 {
    font-size: 34px;
  }
}
