@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --teal: #113f42;
  --teal-2: #083141;
  --navy: #071843;
  --red: #f74141;
  --red-dark: #d95c62;
  --green: #00af1f;
  --orange: #fd6b1b;
  --sky: #eaf3fc;
  --soft: #f6fbff;
  --text: #15242c;
  --muted: #5e6b72;
  --white: #ffffff;
  --line: rgba(17, 63, 66, 0.14);
  --shadow: 0 24px 70px rgba(4, 24, 34, 0.16);
  --shadow-strong: 0 30px 90px rgba(3, 18, 26, 0.25);
  --radius: 10px;
  --max: 1170px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Source Sans 3", system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: 24px;
  color: var(--white);
  background: var(--red);
  font-weight: 800;
}

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

.container,
.narrow {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 880px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(17, 63, 66, 0.06);
  backdrop-filter: blur(12px);
  transform-origin: top center;
  transition:
    box-shadow 260ms ease,
    background-color 260ms ease,
    backdrop-filter 260ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 38px rgba(8, 49, 65, 0.12);
}

.topbar {
  display: none;
}

.topbar .container,
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar .container {
  min-height: 82px;
  padding-block: 0.35rem;
}

.topbar a {
  font-weight: 500;
}

.topbar span {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.nav-wrap {
  justify-content: space-between;
  min-height: 76px;
  padding-block: 0.35rem;
  border-top: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 172px;
  min-height: 60px;
  flex: 0 0 auto;
}

.brand-mark {
  display: block;
  width: 172px;
  height: 60px;
  color: transparent;
  background: url("/assets/img/logo.jpg") center / contain no-repeat;
}

.brand-text {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.78rem, 1.4vw, 1.2rem);
  color: #0d2028;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 1rem 0;
  outline-offset: 0.35rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.56rem;
  height: 3px;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform 190ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  background: var(--white);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  display: block;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  border-radius: 6px;
  background: currentColor;
  transition: transform 190ms ease, opacity 190ms ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.site-header.is-menu-open .nav-toggle span {
  background: transparent;
}

.site-header.is-menu-open .nav-toggle span::before {
  background: var(--teal);
  transform: translateY(1px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle span::after {
  background: var(--teal);
  transform: translateY(-1px) rotate(-45deg);
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 63, 66, 0.28);
  box-shadow: 0 12px 28px rgba(8, 49, 65, 0.12);
}

.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.brand:focus-visible,
.nav-cta .btn:focus-visible {
  outline: 3px solid rgba(247, 65, 65, 0.35);
  outline-offset: 4px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.9rem 2.15rem;
  border: 0;
  border-radius: 32px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(247, 65, 65, 0.22);
  cursor: pointer;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -120% -30%;
  transform: translateX(-80%) rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transition: transform 560ms ease;
}

.btn:hover {
  transform: translateY(-3px);
  background: #ff5656;
  box-shadow: 0 18px 46px rgba(247, 65, 65, 0.32);
}

.btn:hover::before {
  transform: translateX(80%) rotate(18deg);
}

.btn.green {
  background: var(--green);
  box-shadow: 0 14px 30px rgba(0, 175, 31, 0.2);
}

.btn.green:hover {
  background: #06c529;
  box-shadow: 0 18px 46px rgba(0, 175, 31, 0.3);
}

.btn.secondary {
  color: var(--red);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(8, 49, 65, 0.1);
}

.btn.small {
  min-height: 48px;
  padding: 0.75rem 1.65rem;
}

.home-hero,
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 82px 0 112px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 49, 65, 0.96), rgba(17, 63, 66, 0.98)),
    var(--teal);
}

.home-hero::before,
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -4%;
  width: min(760px, 58vw);
  height: 680px;
  background: url("/assets/img/pattern-hero.png") center / contain no-repeat;
  opacity: 0.28;
}

.home-hero::after,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  background: var(--white);
}

.hero-grid,
.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(610px, 1.15fr) minmax(320px, 0.75fr);
  gap: clamp(2rem, 3.8vw, 3.5rem);
  align-items: center;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.2rem;
  color: var(--orange);
  font-weight: 700;
}

.home-hero .eyebrow,
.hero .eyebrow {
  white-space: nowrap;
  color: var(--white);
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.2;
  border-bottom: 2px solid rgba(255, 255, 255, 0.86);
  padding-bottom: 0.5rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  color: inherit;
  font-size: clamp(2.2rem, 2.78vw, 2.78rem);
  font-weight: 700;
}

.home-hero h1,
.hero h1 {
  max-width: 660px;
  font-size: clamp(2.25rem, 2.65vw, 2.65rem);
  line-height: 1.08;
}

.hero-break {
  display: block;
}

h2 {
  color: #0e1c2d;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 700;
}

h3 {
  color: #3d454a;
  font-size: 1.45rem;
  font-weight: 700;
}

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

.home-hero p,
.hero p {
  color: rgba(255, 255, 255, 0.92);
}

.home-hero h1,
.hero h1 {
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.lead {
  max-width: 620px;
  margin-top: 1.7rem;
  color: inherit;
  font-size: 1.12rem;
  font-weight: 600;
}

.home-hero .lead,
.hero .lead {
  max-width: 660px;
  margin-top: 1.35rem;
  font-size: clamp(1.02rem, 1.15vw, 1.08rem);
  line-height: 1.62;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  margin-top: 1.8rem;
}

.certified {
  display: block;
  max-width: 660px;
  margin-top: 1.35rem;
  color: var(--white);
  font-weight: 800;
  text-align: left;
}

.hero-visual {
  position: relative;
  min-height: 360px;
}

.hero-nurse {
  position: absolute;
  right: 0;
  bottom: -118px;
  width: min(430px, 36vw);
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.18));
}

.section {
  position: relative;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
}

.section.compact {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.light-blue {
  background: var(--sky);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.52fr);
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.6rem;
}

.section-head p {
  font-size: 1.05rem;
}

.overlap-images {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.12fr 0.72fr;
  gap: 1.8rem;
  margin-top: -88px;
}

.photo-card,
.image-card,
.service-card,
.post-card,
.value-card,
.step-card,
.testimonial-card,
.contact-card,
.card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 210ms ease, box-shadow 210ms ease;
}

.photo-card,
.image-card {
  position: relative;
  overflow: hidden;
}

.photo-label {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 72px;
  padding: 1rem 1.15rem;
  color: var(--text);
  background: var(--white);
  border-top: 1px solid rgba(8, 49, 65, 0.08);
  font-family: "Manrope", sans-serif;
}

.photo-label strong {
  color: #102530;
  font-size: 1.08rem;
}

.photo-label small {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: right;
}

.photo-card::after,
.image-card::after,
.service-card::after,
.post-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 35%, rgba(17, 63, 66, 0.08));
  opacity: 0;
  transition: opacity 260ms ease;
}

.photo-card:hover,
.image-card:hover,
.service-card:hover,
.post-card:hover,
.value-card:hover,
.step-card:hover,
.testimonial-card:hover,
.contact-card:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(4, 24, 34, 0.22);
}

.photo-card:hover::after,
.image-card:hover::after,
.service-card:hover::after,
.post-card:hover::after {
  opacity: 1;
}

.photo-card img,
.image-card img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.about-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-copy {
  max-width: 560px;
}

.features-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2.4rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(8, 49, 65, 0.45);
}

.mini-feature {
  display: grid;
  gap: 0.55rem;
}

.mini-icon,
.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 4px;
  color: var(--white);
  background: var(--orange);
  font-weight: 800;
  box-shadow: 0 13px 28px rgba(253, 107, 27, 0.22);
}

.trust-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-icon svg path:first-child:last-child {
  fill: currentColor;
  stroke: none;
}

.about-image img {
  width: 100%;
  min-height: 460px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.trust-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.trust-image {
  background: url("/assets/img/holding-hands.jpg") center / cover no-repeat;
}

.trust-copy {
  display: grid;
  align-content: center;
  padding: clamp(3rem, 7vw, 6.5rem);
  color: var(--white);
  background: var(--navy);
}

.trust-copy h2,
.trust-copy h3 {
  color: var(--white);
}

.trust-copy p {
  color: rgba(255, 255, 255, 0.9);
}

.trust-grid,
.service-grid,
.blog-grid,
.glass-grid,
.values-grid,
.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.trust-card,
.service-card,
.post-card,
.value-card,
.decision-card,
.card {
  position: relative;
  padding: 2.35rem 2rem;
}

.trust-card {
  overflow: hidden;
}

.trust-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 78%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 175, 31, 0.16), transparent 62%);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.trust-card:hover {
  transform: translateY(-14px);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(8, 49, 65, 0.96), rgba(17, 63, 66, 0.9)),
    var(--teal);
}

.trust-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.trust-card:hover h3,
.trust-card:hover p {
  color: var(--white);
}

.trust-card:hover .trust-icon {
  transform: translateY(-7px);
  background: var(--green);
  box-shadow: 0 18px 38px rgba(0, 175, 31, 0.24);
}

.trust-icon {
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.trust-card {
  margin-top: -70px;
  min-height: 285px;
}

.trust-card p,
.service-card p,
.post-card p,
.value-card p,
.card p {
  margin-top: 0.75rem;
}

.kicker,
.card .kicker,
.service-card .kicker,
.post-card .kicker {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--orange);
  font-weight: 700;
}

.service-grid,
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-strip {
  padding-top: 1rem;
}

.local-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.45rem, 3vw, 2.2rem);
  border: 1px solid rgba(17, 63, 66, 0.12);
  border-radius: 10px;
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 175, 31, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef7fb);
  box-shadow: var(--shadow);
}

.local-proof h2 {
  max-width: 780px;
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
}

.local-proof p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

.decision-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 15%, rgba(0, 175, 31, 0.18), transparent 28%),
    linear-gradient(135deg, #071843, #083141 58%, #113f42);
}

.decision-section h2,
.decision-section h3,
.decision-section p {
  color: inherit;
}

.decision-section .section-head > p {
  color: rgba(255, 255, 255, 0.82);
}

.decision-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.decision-card {
  display: grid;
  align-content: start;
  min-height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.decision-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -40% -12%;
  height: 72%;
  background: radial-gradient(circle, rgba(0, 175, 31, 0.22), transparent 62%);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.decision-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(247, 65, 65, 0.26);
  font-weight: 800;
}

.decision-card h3,
.decision-card p,
.decision-card strong {
  position: relative;
  z-index: 1;
}

.decision-card p {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.76);
}

.decision-card strong {
  margin-top: 1.5rem;
  color: var(--white);
  font-family: "Manrope", sans-serif;
}

.decision-card:hover,
.decision-card.is-active {
  transform: translateY(-12px);
  border-color: rgba(0, 175, 31, 0.42);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.26);
}

.decision-card:hover::after,
.decision-card.is-active::after {
  opacity: 1;
  transform: translateY(-8px);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.faq-item {
  border: 1px solid rgba(17, 63, 66, 0.12);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 52px rgba(4, 24, 34, 0.08);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 1.2rem 3.5rem 1.2rem 1.3rem;
  color: #102530;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transform: translateY(-50%);
  color: var(--white);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(0, 175, 31, 0.22);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 1.3rem 1.25rem;
}

.service-card,
.post-card {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.service-card img,
.post-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 420ms ease, filter 420ms ease;
}

.photo-card img,
.image-card img {
  transition: transform 420ms ease, filter 420ms ease;
}

.photo-card:hover img,
.image-card:hover img,
.service-card:hover img,
.post-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.1) contrast(1.06);
}

.service-card-body,
.post-card-body {
  padding: 1.65rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--red);
  font-weight: 800;
}

.process {
  background:
    linear-gradient(rgba(7, 24, 67, 0.86), rgba(7, 24, 67, 0.86)),
    url("/assets/img/caregiver-patient.jpg") center / cover fixed;
  color: var(--white);
}

.process h2,
.process h3 {
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: 1.8rem;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  counter-increment: step;
}

.step-card::before {
  content: "0" counter(step);
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-weight: 800;
}

.step-card p {
  color: rgba(255, 255, 255, 0.86);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.testimonial-card {
  position: relative;
  padding: 2rem;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  right: 1.3rem;
  top: 0.3rem;
  color: rgba(247, 65, 65, 0.16);
  font-size: 7rem;
  line-height: 1;
}

.testimonial-card p {
  position: relative;
  color: #34434a;
  font-size: 1.15rem;
}

.reference-trust {
  background: var(--white);
  overflow: hidden;
}

.reference-head {
  max-width: 850px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.reference-head h2 {
  max-width: 760px;
  color: #151515;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.08;
}

.reference-head > p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 1.1rem;
  color: #5f6970;
  font-size: 1.08rem;
}

.reference-columns {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
  align-items: stretch;
}

.reference-columns .trust-card {
  min-height: 320px;
  margin-top: 0;
  padding: 32px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  overflow: visible;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.reference-columns .trust-card::after {
  display: none;
}

.reference-columns .trust-card:hover {
  color: inherit;
  background: var(--white);
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.15);
}

.reference-columns .trust-card h3 {
  max-width: 220px;
  margin-top: 32px;
  color: #1e293b;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

.reference-columns .trust-card p,
.reference-columns .trust-card:hover p,
.reference-columns .trust-card:hover h3 {
  color: #64748b;
}

.reference-columns .trust-card p {
  max-width: none;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.65;
}

.reference-columns .trust-icon,
.reference-columns .trust-card:hover .trust-icon {
  width: 56px;
  height: 56px;
  color: var(--white);
  background: #f97316;
  border-radius: 8px;
  box-shadow: none;
}

.reference-columns .trust-icon svg {
  width: 31px;
  height: 31px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

.reference-testimonials {
  overflow: hidden;
  background: #f6fbff;
}

.testimonials-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.testimonials-copy h2 {
  color: #151515;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.08;
}

.testimonial-carousel {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 600ms ease;
  will-change: transform;
}

.testimonial-track .testimonial-card {
  flex: 0 0 100%;
  min-height: 330px;
  padding: clamp(1.7rem, 3vw, 2.4rem);
  border: 0;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(8, 49, 65, 0.12);
}

.testimonial-track .testimonial-card::before {
  color: rgba(216, 116, 71, 0.16);
}

.person small {
  display: block;
  color: #8a949b;
  font-size: 0.9rem;
}

.reference-about {
  background: var(--white);
}

.about-reference-head {
  max-width: 1060px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about-reference-head h1 {
  max-width: 1060px;
  color: #111;
  font-size: clamp(2.35rem, 3.35vw, 4rem);
  line-height: 1.04;
}

.about-reference-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.about-reference-copy .lead {
  max-width: 720px;
  color: #4e5960;
  font-size: 1.2rem;
  font-weight: 500;
}

.about-reference-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3.4rem);
}

.about-reference-features article {
  display: grid;
  gap: 0.7rem;
}

.line-icon {
  color: #d87447;
  display: inline-flex;
  width: 42px;
  height: 42px;
  line-height: 1;
}

.line-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-reference-features h3 {
  color: #202020;
  font-size: 1.45rem;
}

.about-reference-features p {
  color: #5f6970;
  font-size: 1.05rem;
}

.about-reference-line {
  width: min(100%, 620px);
  height: 1px;
  margin: clamp(1.8rem, 4vw, 3rem) 0 1.8rem;
  background: rgba(17, 24, 28, 0.42);
}

.about-reference-image img {
  width: 100%;
  min-height: 430px;
  border-radius: 0;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(8, 49, 65, 0.14);
}

.person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
  color: var(--muted);
  font-weight: 700;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #62c7f2);
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 0.85fr;
  gap: 1.2rem;
}

.gallery figure {
  margin: 0;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
  filter: saturate(1.04) contrast(1.03);
}

.gallery figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-weight: 600;
}

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

.proof-split img {
  aspect-ratio: 4 / 5;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(247, 65, 65, 0.92), rgba(0, 175, 31, 0.78)),
    var(--red);
  box-shadow: var(--shadow-strong);
}

.cta-panel h2,
.cta-panel p,
.cta-panel .eyebrow {
  color: var(--white);
}

.page-hero {
  padding: clamp(4rem, 7vw, 6rem) 0;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(8, 49, 65, 0.96), rgba(17, 63, 66, 0.92)),
    url("/assets/img/pattern-hero.png") right center / 45% auto no-repeat,
    var(--teal);
}

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

.breadcrumbs {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

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

.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
}

.article-main,
.aside-card,
.contact-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-main {
  padding: clamp(1.25rem, 3vw, 2.2rem);
}

.article-main img {
  width: 100%;
  max-height: 420px;
  border-radius: var(--radius);
  object-fit: cover;
  margin-bottom: 1.4rem;
}

.article-main h2,
.article-main h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
}

.article-main p + p {
  margin-top: 1rem;
}

.article-main ul {
  margin: 1rem 0 0;
  color: var(--muted);
}

.aside-card {
  position: sticky;
  top: 6rem;
  padding: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-card {
  padding: 2rem;
}

.whatsapp-contact {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0.15rem 0.9rem;
  margin: 1.4rem 0 1.2rem;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 10px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.2), transparent 38%),
    linear-gradient(135deg, #00af1f, #078c27),
    var(--green);
  box-shadow: 0 18px 44px rgba(0, 175, 31, 0.22);
  font-family: "Manrope", sans-serif;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-contact::before {
  content: "";
  grid-row: 1 / span 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    url("/assets/img/whatsapp.png") center / 31px 31px no-repeat,
    rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.whatsapp-contact:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(0, 175, 31, 0.3);
}

.whatsapp-contact span {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.86;
}

.whatsapp-contact strong {
  font-size: clamp(1.28rem, 2.4vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.whatsapp-contact small {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  color: #25363e;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(8, 49, 65, 0.15);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: var(--text);
  background: #f9fcff;
  outline: none;
  transition: border-color 170ms ease, box-shadow 170ms ease;
}

.field textarea {
  min-height: 136px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(247, 65, 65, 0.52);
  box-shadow: 0 0 0 4px rgba(247, 65, 65, 0.1);
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.6rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--green);
}

.map-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: transparent;
  background: url("/assets/img/whatsapp.png") center / contain no-repeat;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(37, 211, 102, 0.34);
}

.floating-whatsapp::before {
  display: none;
}

.contact-page .floating-whatsapp {
  display: none;
}

.site-footer {
  padding: 3.5rem 0 1.4rem;
  color: rgba(255, 255, 255, 0.84);
  background: var(--teal-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 1.5rem;
}

.footer-grid h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid a + a,
.footer-grid p + p {
  margin-top: 0.45rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.js .reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .home-hero .reveal {
  opacity: 1;
  transform: none;
  animation: softIn 720ms ease both;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: softIn 680ms ease both;
}

@keyframes softIn {
  from {
    opacity: 0.78;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1040px) {
  .nav-wrap {
    min-height: 78px;
    gap: 0.8rem;
  }

  .brand {
    width: 172px;
    min-height: 58px;
  }

  .brand-mark {
    width: 172px;
    height: 58px;
  }

  .site-nav {
    gap: 0.9rem;
    font-size: 0.9rem;
  }

  .btn.small {
    min-height: 44px;
    padding: 0.7rem 1.25rem;
  }

  .home-hero,
  .hero {
    min-height: auto;
    padding: 64px 0 82px;
  }

  .hero-grid,
  .home-hero-grid,
  .about-grid,
  .split,
  .article,
  .contact-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-nurse {
    left: 50%;
    right: auto;
    bottom: -76px;
    width: min(340px, 56vw);
    transform: translateX(-50%);
    animation: none;
  }

  .trust-band,
  .overlap-images,
  .trust-grid,
  .service-grid,
  .blog-grid,
  .glass-grid,
  .values-grid,
  .steps,
  .gallery,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-card {
    margin-top: 0;
    min-height: 250px;
  }

  .aside-card {
    position: static;
  }
}

@media (min-width: 761px) and (max-width: 1040px) {
  .home-hero,
  .hero {
    padding: 56px 0 64px;
  }

  .home-hero-grid,
  .hero-grid {
    gap: 1.5rem;
  }

  .hero-copy {
    max-width: 690px;
    margin-inline: auto;
    text-align: center;
  }

  .home-hero .eyebrow,
  .hero .eyebrow {
    font-size: 1.24rem;
  }

  h1 {
    max-width: 660px;
    margin-inline: auto;
    font-size: clamp(2.34rem, 4.25vw, 2.72rem);
  }

  .home-hero h1,
  .hero h1 {
    max-width: 660px;
    font-size: clamp(2.34rem, 4.25vw, 2.72rem);
    line-height: 1.08;
  }

  .lead {
    max-width: 690px;
    margin-inline: auto;
    font-size: 1.05rem;
  }

  .home-hero .lead,
  .hero .lead {
    max-width: 640px;
    margin-inline: auto;
  }

  .hero-actions,
  .cta-row {
    justify-content: center;
  }

  .hero-actions .btn,
  .cta-row .btn {
    width: min(300px, 42%);
  }

  .certified {
    max-width: 520px;
    margin-inline: auto;
    text-align: center;
  }

  .hero-visual {
    min-height: 270px;
    margin-top: 0.5rem;
  }

  .hero-nurse {
    width: min(300px, 42vw);
    bottom: -62px;
  }

  .overlap-images {
    margin-top: -42px;
  }

  .trust-grid,
  .steps,
  .decision-grid {
    gap: 1.2rem;
  }

  .local-proof,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .local-proof .btn {
    width: fit-content;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }

  .topbar .container {
    min-height: auto;
    padding-block: 0.55rem;
    flex-direction: column;
    gap: 0.15rem;
    text-align: center;
    font-size: 0.92rem;
  }

  .topbar .container > span {
    display: block;
    padding-inline: 0.35rem;
    line-height: 1.35;
    word-break: break-word;
  }

  .topbar .container > span a {
    word-break: break-all;
  }

  .topbar .container > span a[href^="mailto"] {
    display: none;
  }

  .contact-separator,
  .header-email {
    display: none;
  }

  .site-header {
    overflow: visible;
  }

  .nav-wrap {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: center;
    justify-content: stretch;
    gap: 0.5rem;
    min-height: 74px;
    padding-block: 0.42rem;
  }

  .nav-wrap:has(.brand) {
    min-height: 74px;
  }

  .nav-wrap:not(:has(.brand)) {
    min-height: auto;
    padding-block: 0.45rem;
  }

  .nav-wrap:not(:has(.brand)) .nav-toggle {
    display: none;
  }

  .js .nav-wrap:not(:has(.brand)) .site-nav,
  .nav-wrap:not(:has(.brand)) .site-nav {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.25rem 0.72rem;
    padding: 0.25rem 0;
  }

  .nav-wrap:not(:has(.brand)) .site-nav a {
    padding: 0.3rem 0;
    font-size: 0.82rem;
  }

  .brand {
    width: 156px;
    min-height: 50px;
  }

  .brand-mark {
    width: 156px;
    height: 50px;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
    flex: 0 0 44px;
    margin-right: 0.35rem;
  }

  .js .site-nav {
    display: flex;
  }

  .site-nav,
  .js .site-nav.is-open {
    grid-column: 1 / -1;
    display: flex;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 260ms ease, opacity 220ms ease, transform 260ms ease, padding 220ms ease;
  }

  .js .site-nav.is-open,
  .site-nav.is-open {
    max-height: 430px;
    margin-top: 0.45rem;
    padding: 0.55rem;
    border: 1px solid rgba(17, 63, 66, 0.1);
    border-radius: 14px;
    opacity: 1;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 54px rgba(8, 49, 65, 0.16);
    backdrop-filter: blur(16px);
  }

  .site-nav a {
    min-height: 46px;
    padding: 0.72rem 0.8rem;
    border-radius: 10px;
    font-size: 0.96rem;
    line-height: 1.2;
  }

  .site-nav a::after {
    left: 0.8rem;
    right: auto;
    bottom: 0.44rem;
    width: 34px;
  }

  .nav-cta {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 260ms ease;
  }

  .site-header.is-menu-open .nav-cta {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-cta .btn {
    width: 100%;
    min-height: 48px;
  }

  .reference-columns,
  .about-reference-grid,
  .about-reference-features,
  .testimonials-shell {
    grid-template-columns: 1fr;
  }

  .reference-head h2,
  .testimonials-copy h2,
  .about-reference-head h1 {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .reference-columns {
    gap: 2.1rem;
  }

  .testimonial-track .testimonial-card {
    min-height: auto;
  }

  .about-reference-image img {
    min-height: 300px;
  }

  h1 {
    max-width: 390px;
    overflow-wrap: break-word;
    font-size: clamp(1.74rem, 6.55vw, 2rem);
    line-height: 1.08;
  }

  .home-hero h1,
  .hero h1 {
    max-width: 390px;
    font-size: clamp(1.74rem, 6.55vw, 2rem);
    line-height: 1.08;
  }

  .hero-break {
    display: none;
  }

  .hero-copy,
  .lead,
  .home-hero .eyebrow,
  .hero .eyebrow {
    max-width: 390px;
  }

  h2 {
    font-size: clamp(1.75rem, 7.4vw, 2.25rem);
    line-height: 1.08;
  }

  .home-hero,
  .hero {
    padding: 42px 0 48px;
  }

  .home-hero .eyebrow,
  .hero .eyebrow {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .lead {
    margin-top: 1.25rem;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .home-hero .lead,
  .hero .lead {
    margin-top: 1.15rem;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .hero-actions,
  .cta-row {
    margin-top: 1.55rem;
    gap: 0.75rem;
  }

  .hero-actions .btn,
  .cta-row .btn {
    width: 100%;
    min-height: 54px;
  }

  .local-proof {
    text-align: left;
  }

  .local-proof .btn {
    width: 100%;
  }

  .decision-card {
    min-height: 250px;
    padding: 1.65rem;
  }

  .certified {
    text-align: left;
    font-size: 0.95rem;
  }

  .hero-visual {
    display: none;
  }

  .page-hero {
    padding: 3.6rem 0;
  }

  .page-hero .lead {
    max-width: 390px;
  }

  .overlap-images,
  .trust-band,
  .trust-grid,
  .service-grid,
  .blog-grid,
  .glass-grid,
  .values-grid,
  .steps,
  .gallery,
  .testimonials,
  .footer-grid,
  .features-inline {
    grid-template-columns: 1fr;
  }

  .photo-card img,
  .image-card img,
  .about-image img {
    min-height: 290px;
  }

  .photo-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .photo-label small {
    text-align: left;
    font-size: 0.82rem;
  }

  .trust-copy {
    padding: 2.4rem 1rem;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 58px;
    height: 58px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (min-width: 560px) and (max-width: 900px) {
  .home-hero,
  .hero {
    padding: 64px 0 78px;
  }

  .hero-copy {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
  }

  .home-hero .eyebrow,
  .hero .eyebrow {
    font-size: 1.22rem;
  }

  h1 {
    max-width: 660px;
    margin-inline: auto;
    font-size: clamp(2.28rem, 4.1vw, 2.65rem);
  }

  .home-hero h1,
  .hero h1 {
    max-width: 660px;
    font-size: clamp(2.28rem, 4.1vw, 2.65rem);
  }

  .lead {
    max-width: 640px;
    margin-inline: auto;
    font-size: 1.05rem;
  }

  .hero-actions,
  .cta-row {
    justify-content: center;
  }

  .hero-actions .btn,
  .cta-row .btn {
    width: min(280px, 44%);
    min-height: 52px;
  }

  .certified {
    text-align: center;
  }

  .hero-visual {
    min-height: 300px;
    margin-top: 1rem;
  }

  .hero-nurse {
    width: min(300px, 42vw);
    margin-bottom: -58px;
  }

  .overlap-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: -44px;
  }

  .photo-card img,
  .image-card img {
    min-height: 350px;
  }

  .trust-grid,
  .service-grid,
  .blog-grid,
  .steps,
  .gallery,
  .testimonials,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-reference-grid,
  .testimonials-shell {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .reference-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .about-reference-features {
    grid-template-columns: 1fr;
  }
}
