:root {
  --ink: #183128;
  --muted: #64736b;
  --green: #0e6040;
  --green-dark: #062c1d;
  --green-soft: #dfeee0;
  --yellow: #fff08a;
  --yellow-soft: #fff7bd;
  --gold: #e7d35d;
  --cream: #fff9d6;
  --paper: #ffffff;
  --mist: #fff2a6;
  --line: rgba(14, 96, 64, 0.13);
  --shadow: 0 22px 60px rgba(38, 67, 50, 0.12);
  --shadow-soft: 0 10px 30px rgba(38, 67, 50, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 240, 0.88);
  border-bottom: 1px solid rgba(14, 96, 64, 0.08);
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 9px;
  padding-bottom: 9px;
  background: rgba(255, 250, 240, 0.98);
  box-shadow: 0 14px 30px rgba(38, 67, 50, 0.08);
}

.brand img {
  width: 210px;
}

.main-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(24, 49, 40, 0.78);
  font-size: 1.2rem;
  font-weight: 750;
}

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

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: rgba(232, 220, 167, 0.72);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover {
  color: var(--green);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button,
.header-cta {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary,
.header-cta {
  color: #fff;
  background: var(--green);
  box-shadow: 0 13px 28px rgba(14, 96, 64, 0.22);
}

.button.secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  min-height: 100vh;
  padding: 184px clamp(22px, 5vw, 72px) 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 240, 138, 0.34), transparent 32%),
    linear-gradient(135deg, #fff9d6 0%, #fff08a 52%, #fffbe7 100%);
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  background: rgba(232, 220, 167, 0.72);
}

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

h1 {
  max-width: 560px;
  margin: 18px 0 20px;
  color: var(--green-dark);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.06rem;
  line-height: 1.28;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(24, 49, 40, 0.76);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  font-weight: 520;
}

.hero-bio {
  max-width: 760px;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.68;
}

.hero-bio p {
  margin-bottom: 12px;
}

.hero-bio p:last-of-type {
  margin-bottom: 16px;
}

.hero-areas {
  padding-top: 16px;
  border-top: 1px solid rgba(14, 96, 64, 0.12);
}

.hero-areas strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-areas ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-areas li {
  padding: 8px 11px;
  color: var(--green-dark);
  background: var(--yellow-soft);
  border: 1px solid rgba(232, 220, 167, 0.82);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-art {
  min-height: 500px;
}

.logo-orbit {
  position: absolute;
  top: -22px;
  right: 6%;
  left: 6%;
  display: grid;
  place-items: center;
  aspect-ratio: 0.86;
  overflow: hidden;
  border-radius: 55% 45% 48% 52% / 34% 38% 62% 66%;
  background: rgba(255, 255, 255, 0.42);
  border: 0;
  box-shadow: var(--shadow);
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  transition: transform 500ms ease, box-shadow 500ms ease;
}

.logo-orbit span {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 253, 247, 0.42), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 247, 0), rgba(255, 253, 247, 0.18));
  pointer-events: none;
}

.logo-orbit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 700ms ease, filter 700ms ease;
}

.logo-orbit.is-active {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(38, 67, 50, 0.14);
}

.logo-orbit.is-active img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.section {
  padding: clamp(76px, 9vw, 118px) clamp(20px, 4vw, 56px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.promise-section {
  padding-top: clamp(32px, 4vw, 56px);
  background: var(--cream);
}

.quick-menu-section {
  padding: clamp(34px, 5vw, 58px) clamp(20px, 4vw, 56px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 240, 138, 0.42), transparent 36%),
    linear-gradient(180deg, #fffbe7 0%, var(--cream) 100%);
}

.quick-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.quick-menu-grid a {
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 22px 18px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(14, 96, 64, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quick-menu-grid a:hover {
  transform: translateY(-3px);
  background: var(--yellow-soft);
  box-shadow: 0 16px 36px rgba(38, 67, 50, 0.12);
}

.promise-grid {
  display: grid;
  gap: 24px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.promise-grid > p {
  max-width: 760px;
}

.promise-grid p,
.section-heading p,
.program-copy p,
.exam-copy p,
.exam-followup p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.program-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 240, 138, 0.32), transparent 30%),
    linear-gradient(180deg, #fff9d6 0%, #fff2a6 100%);
}

.program-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(330px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.program-objective {
  padding: 18px 20px;
  color: var(--green-dark) !important;
  background: rgba(255, 255, 255, 0.64);
  border-left: 4px solid rgba(232, 220, 167, 0.72);
  border-radius: 8px;
  font-weight: 850;
}

.program-panel {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-cta {
  display: none;
}

.program-meter {
  display: inline-grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin-bottom: 22px;
  color: var(--green-dark);
  background: var(--yellow-soft);
  border: 1px solid rgba(232, 220, 167, 0.58);
  border-radius: 50%;
}

.program-meter span {
  display: block;
  font-size: 3rem;
  font-weight: 950;
  line-height: 0.9;
}

.program-meter small {
  font-weight: 850;
  text-transform: uppercase;
}

.feature-list,
.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 26px;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(14, 96, 64, 0.11);
}

.home-care-section,
.exams-section {
  background: var(--cream);
}

.home-care-section {
  position: relative;
  background:
    radial-gradient(circle at 86% 18%, rgba(14, 96, 64, 0.11), transparent 35%),
    radial-gradient(circle at 12% 12%, rgba(255, 240, 138, 0.34), transparent 30%),
    linear-gradient(180deg, #fff9d6 0%, #fff2a6 58%, #fff9d6 100%);
  box-shadow: inset 0 1px 0 rgba(14, 96, 64, 0.06), inset 0 -1px 0 rgba(14, 96, 64, 0.06);
}

.home-care-section .section-heading {
  position: relative;
}

.home-care-section .section-heading::after {
  content: "";
  display: block;
  width: 86px;
  height: 4px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(14, 96, 64, 0.52));
}

.home-care-cta {
  display: flex;
  width: fit-content;
  margin: 6px auto 0;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .section-kicker {
  justify-content: center;
}

.home-care-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

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

.audience-card {
  grid-column: 1;
  grid-row: 1;
}

.differentials-card {
  grid-column: 2;
  grid-row: 1;
}

.home-care-cta-wrap {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
}

.home-care-process {
  grid-column: 1 / -1;
  grid-row: 2;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.home-care-process h3 {
  margin-bottom: 18px;
}

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

.process-accordion details {
  overflow: hidden;
  background: var(--yellow-soft);
  border: 1px solid rgba(232, 220, 167, 0.9);
  border-radius: 8px;
}

.process-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 18px 22px;
  color: var(--green-dark);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.process-accordion summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
}

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

.accordion-content {
  padding: 0 18px 18px;
  color: rgba(24, 49, 40, 0.78);
}

.accordion-content p {
  margin-bottom: 12px;
}

.accordion-content ol,
.accordion-content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.accordion-content li strong,
.accordion-content li span {
  display: block;
}

.accordion-content li strong {
  color: var(--green-dark);
}

.home-care-photo {
  position: relative;
  margin: 0;
  width: min(360px, 100%);
  aspect-ratio: 0.84;
  overflow: hidden;
  align-self: start;
  justify-self: center;
  background: #fff;
  border: 0;
  border-radius: 54% 46% 45% 55% / 36% 42% 58% 64%;
  box-shadow: 0 24px 56px rgba(38, 67, 50, 0.14);
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 92%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
}

.home-care-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0), rgba(255, 253, 247, 0.08));
  pointer-events: none;
}

.home-care-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.care-grid article,
.service-card,
.steps article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.care-grid article {
  padding: clamp(24px, 4vw, 36px);
}

.services-section,
.process-section {
  background: var(--mist);
}

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

.service-card {
  min-height: 218px;
  padding: 24px;
}

.service-card span,
.steps span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--green-dark);
  background: var(--yellow-soft);
  border: 1px solid rgba(232, 220, 167, 0.58);
  border-radius: 50%;
  font-weight: 900;
}

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

.exams-grid {
  display: block;
}

.exam-copy {
  width: min(780px, 100%);
  margin-bottom: clamp(34px, 5vw, 58px);
}

.exam-process {
  margin-bottom: clamp(34px, 5vw, 58px);
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.exam-process h3 {
  margin-bottom: 18px;
}

.exam-followup {
  width: min(780px, 100%);
  margin: 0 0 clamp(34px, 5vw, 58px);
}

.exam-followup p {
  margin-bottom: 12px;
}

.exam-followup p:last-child {
  margin-bottom: 0;
}

.document-previews {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.document-orb-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.document-orb {
  width: clamp(210px, 19vw, 290px);
  aspect-ratio: 1;
  overflow: hidden;
  background: #fff;
  border: 8px solid rgba(255, 248, 214, 0.92);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.document-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.08);
}

.document-orb-card:nth-child(2) .document-orb img {
  object-fit: contain;
  object-position: center center;
  transform: scale(0.92);
}

.document-orb-card:nth-child(3) .document-orb img,
.document-orb-card:nth-child(4) .document-orb img {
  object-position: top center;
  transform: scale(1.04);
}

.document-orb-card h3 {
  margin-bottom: 0;
}

.document-orb-card p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.online-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(14, 96, 64, 0.08), transparent 32%),
    linear-gradient(180deg, var(--cream) 0%, #fff2a6 100%);
}

.online-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.online-photo {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 0.86;
  margin: 0;
  overflow: hidden;
  justify-self: center;
  border-radius: 55% 45% 48% 52% / 34% 38% 62% 66%;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
}

.online-photo span {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 253, 247, 0.36), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 247, 0), rgba(255, 253, 247, 0.16));
  pointer-events: none;
}

.online-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.online-copy p {
  color: var(--muted);
}

.online-copy .button {
  margin-top: 10px;
}

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

.steps article {
  min-height: 190px;
  padding: 26px;
}

.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: stretch;
}

address {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--muted);
  font-style: normal;
}

address strong {
  color: var(--green-dark);
}

.map-panel {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #128c4a;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(18, 140, 74, 0.3);
}

.whatsapp-icon {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.site-footer {
  padding: 58px 20px 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 240, 138, 0.34), transparent 34%),
    linear-gradient(180deg, #fff9d6 0%, #fff2a6 100%);
  border-top: 1px solid rgba(14, 96, 64, 0.1);
}

.footer-inner {
  display: grid;
  gap: 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.7fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.footer-brand-block {
  display: grid;
  justify-items: center;
  gap: 0;
  text-align: center;
}

.footer-logo {
  width: clamp(210px, 20vw, 280px);
}

.footer-credential {
  display: grid;
  gap: 2px;
  justify-items: center;
  margin-top: -8px;
}

.footer-credential strong {
  color: var(--green-dark);
  font-weight: 750;
}

.footer-brand-block p,
.footer-column span,
.footer-bottom span {
  margin: 0;
  color: rgba(24, 49, 40, 0.72);
}

.footer-column {
  display: grid;
  gap: 8px;
  padding-top: 24px;
}

.footer-column h3 {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 1rem;
}

.footer-column a {
  color: rgba(24, 49, 40, 0.78);
}

.footer-column a:hover {
  color: var(--green);
}

.footer-line {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.footer-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 900;
  line-height: 1;
}

.footer-bottom {
  margin: 30px -20px 0;
  padding: 0 20px;
  background: var(--green);
  border-top: 1px solid rgba(14, 96, 64, 0.1);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 18px 0;
}

.footer-bottom-inner span,
.footer-bottom-inner .developer-credit {
  color: rgba(255, 255, 255, 0.86);
}

.footer-bottom-inner .developer-credit strong {
  color: #fff;
}

.developer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(24, 49, 40, 0.76);
  font-size: 0.9rem;
}

.developer-credit img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.developer-credit strong {
  color: var(--green-dark);
}

[data-reveal],
[data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible,
[data-stagger] > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-stagger] > *:nth-child(2) {
  transition-delay: 90ms;
}

[data-stagger] > *:nth-child(3) {
  transition-delay: 180ms;
}

[data-stagger] > *:nth-child(4) {
  transition-delay: 270ms;
}

[data-stagger] > *:nth-child(5) {
  transition-delay: 360ms;
}

[data-stagger] > *:nth-child(6) {
  transition-delay: 450ms;
}

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

  [data-reveal],
  [data-stagger] > * {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .hero,
  .program-grid,
  .exams-grid,
  .contact-grid,
  .promise-grid,
  .home-care-feature,
  .online-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 520px;
    max-width: 620px;
  }

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

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand img {
    width: 176px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 14px;
  }

  .main-nav a::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .care-grid,
  .services-grid,
  .steps,
  .document-previews {
    grid-template-columns: 1fr;
  }

  .audience-card,
  .differentials-card,
  .home-care-cta-wrap {
    grid-column: 1;
  }

  .audience-card {
    grid-row: 1;
  }

  .differentials-card {
    grid-row: 2;
  }

  .process-accordion {
    grid-template-columns: 1fr;
  }

  .home-care-cta-wrap {
    grid-row: 3;
  }

  .home-care-photo,
  .home-care-photo img {
    min-height: 0;
  }

  .home-care-photo {
    width: min(320px, 84vw);
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%),
      linear-gradient(180deg, #000 0%, #000 92%, transparent 100%);
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%),
      linear-gradient(180deg, #000 0%, #000 92%, transparent 100%);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 16px;
  }

  .hero {
    gap: 24px;
    padding: 148px 20px 68px;
  }

  .hero-copy {
    display: contents;
    opacity: 1;
    transform: none;
  }

  .hero .eyebrow {
    display: none;
  }

  h1 {
    order: 1;
    font-size: clamp(2rem, 11vw, 3rem);
    margin: 0;
  }

  .hero-art {
    order: 2;
    justify-self: center;
    width: min(330px, 88vw);
    min-height: 0;
    max-width: none;
  }

  .logo-orbit {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
  }

  .hero-lead {
    order: 3;
    margin-bottom: 0;
  }

  .hero-bio {
    font-size: 0.92rem;
  }

  .hero-areas ul {
    gap: 8px;
  }

  .hero-areas li {
    flex: 1 1 100%;
    text-align: center;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .hero-actions {
    order: 5;
    margin-bottom: 0;
  }

  .quick-menu-section {
    padding: 28px 20px;
  }

  .quick-menu-grid {
    grid-template-columns: 1fr;
  }

  .quick-menu-grid a {
    min-height: 78px;
  }

  .desktop-cta {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
    width: min(100%, 320px);
    margin: 26px auto 0;
  }

  .program-grid > .mobile-cta,
  .online-grid > .mobile-cta {
    justify-self: center;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .home-care-section .section-inner {
    display: grid;
    gap: 24px;
  }

  .home-care-section .section-heading,
  .home-care-feature {
    display: contents;
  }

  .home-care-section .section-heading .section-kicker,
  .home-care-section .section-heading::after {
    display: none;
  }

  .home-care-section .section-heading h2 {
    order: 1;
    margin-bottom: 0;
  }

  .home-care-photo {
    order: 2;
    justify-self: center;
  }

  .home-care-section .section-heading p {
    order: 3;
    margin: 0;
  }

  .home-care-feature > div {
    order: 4;
  }

  .home-care-process {
    order: 5;
  }

  .home-care-cta {
    width: min(100%, 320px);
  }

  .map-panel,
  .map-panel iframe {
    min-height: 330px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 92px;
    width: 52px;
    height: 52px;
  }

  .footer-bottom {
    padding-right: 20px;
    padding-bottom: 82px;
  }
}

@media (max-width: 620px) {
  .footer-bottom {
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer-bottom-inner {
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom-inner > span,
  .footer-bottom-inner .developer-credit {
    justify-self: center;
  }
}

@media (max-width: 860px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding-right: 20px;
  }

  .footer-bottom-inner {
    display: grid;
    justify-items: center;
    text-align: center;
  }

}
