.cdl-home-template {
  background: #f4faff;
}

.cdl-home {
  color: #414750;
}

.cdl-shell {
  width: min(100% - 4rem, 1280px);
  margin-inline: auto;
}

.cdl-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 250, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(193, 199, 209, 0.12);
}

.cdl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 84px;
}

.cdl-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(193, 199, 209, 0.24);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(0, 31, 42, 0.06);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cdl-nav-toggle:hover,
.cdl-nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 86, 145, 0.18);
  box-shadow: 0 16px 34px rgba(26, 97, 157, 0.1);
}

.cdl-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #003e6b;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cdl-header.is-menu-open .cdl-nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.cdl-header.is-menu-open .cdl-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.cdl-header.is-menu-open .cdl-nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cdl-brand {
  color: #001f2a;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.cdl-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cdl-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.cdl-nav a,
.cdl-nav__link {
  color: #414750;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cdl-nav__link {
  display: inline-flex;
  align-items: center;
}

.cdl-nav__link--services {
  gap: 0.45rem;
}

.cdl-nav__link--services::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-top: -0.15rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.cdl-nav__item--services:hover .cdl-nav__link--services::after,
.cdl-nav__item--services:focus-within .cdl-nav__link--services::after {
  transform: rotate(225deg);
}

.cdl-nav a:hover,
.cdl-nav a.is-current,
.cdl-nav__link:hover,
.cdl-nav__link.is-current {
  color: #005691;
}

.cdl-nav a.is-current,
.cdl-nav__link.is-current {
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #005691;
}

.cdl-nav__dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  z-index: 20;
  width: min(34rem, 72vw);
  padding: 0.75rem;
  border: 1px solid rgba(193, 199, 209, 0.24);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  box-shadow: 0 28px 56px rgba(0, 31, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 0.85rem);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.cdl-nav__dropdown::before {
  content: "";
  position: absolute;
  inset: -1rem 0 auto;
  height: 1rem;
}

.cdl-nav__item--services:hover .cdl-nav__dropdown,
.cdl-nav__item--services:focus-within .cdl-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

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

.cdl-nav__service-link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(244, 250, 255, 0.76);
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cdl-nav__service-link:hover,
.cdl-nav__service-link:focus-visible {
  color: #005691;
  background: rgba(230, 246, 255, 0.92);
  border-color: rgba(0, 86, 145, 0.12);
  box-shadow: 0 16px 32px rgba(26, 97, 157, 0.08);
  transform: translateY(-1px);
}

.cdl-nav__service-title {
  color: #001f2a;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
}

.cdl-nav__service-text {
  color: #58616b;
  font-size: 0.84rem;
  line-height: 1.5;
}

.cdl-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cdl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border-radius: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.cdl-btn:hover {
  transform: translateY(-1px);
}

.cdl-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #003e6b 0%, #005691 100%);
  box-shadow: 0 18px 48px rgba(26, 97, 157, 0.14);
}

.cdl-btn--primary:hover,
.cdl-btn--primary:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #00365c 0%, #004d82 100%);
  box-shadow: 0 22px 52px rgba(26, 97, 157, 0.18);
}

.cdl-btn--secondary {
  color: #003e6b;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(193, 199, 209, 0.3);
}

.cdl-btn--white {
  color: #003e6b;
  background: #fff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.cdl-btn--ghost {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}

.cdl-btn--large {
  min-height: 72px;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.cdl-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 921px;
  overflow: hidden;
  background: #f4faff;
}

.cdl-hero__bg,
.cdl-hero__bg::after {
  position: absolute;
  inset: 0;
}

.cdl-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.cdl-hero__bg::after {
  content: "";
  background: linear-gradient(90deg, #f4faff 0%, rgba(244, 250, 255, 0.92) 50%, rgba(244, 250, 255, 0) 100%);
}

.cdl-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 6.25rem 5.5rem;
}

.cdl-shell--hero {
  width: min(100% - 4rem, 76rem);
}

.cdl-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: 4rem;
  align-items: center;
}

.cdl-hero__text {
  max-width: 52rem;
}

.cdl-hero__media {
  position: relative;
}

.cdl-hero__image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 30px 60px rgba(26, 97, 157, 0.15);
}

.cdl-hero__image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.cdl-hero__glow {
  position: absolute;
  left: -2rem;
  bottom: -2rem;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: rgba(0, 86, 145, 0.1);
  filter: blur(48px);
  z-index: -1;
}

.cdl-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: #99efe8;
  color: #006f6a;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cdl-hero h1 {
  margin: 1.5rem 0 2rem;
  max-width: 52rem;
  color: #001f2a;
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cdl-accent {
  color: #003e6b;
  font-style: italic;
}

.cdl-accent-solid {
  color: #003e6b;
}

.cdl-hero__lead {
  max-width: 42rem;
  margin: 0 0 2.5rem;
  color: #414750;
  font-size: 1.2rem;
  line-height: 1.7;
}

.cdl-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.cdl-hero__trust {
  display: flex;
  flex-wrap: wrap;
  max-width: 46rem;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.75rem;
  border-top: 1px solid rgba(193, 199, 209, 0.12);
}

.cdl-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #001f2a;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cdl-trust-item .material-symbols-outlined {
  color: #003e6b;
  font-size: 2rem;
}

@media (max-width: 1100px) {
  .cdl-hero {
    min-height: auto;
  }

  .cdl-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.75rem;
  }

  .cdl-hero__text {
    max-width: 46rem;
  }

  .cdl-hero__media {
    max-width: 34rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .cdl-hero__content {
    padding-block: 4.75rem 4rem;
  }

  .cdl-hero__grid {
    gap: 2.25rem;
  }

  .cdl-hero__image-frame {
    border-radius: 1.5rem;
  }

  .cdl-hero__trust {
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
  }
}

.cdl-section {
  padding-block: 8rem;
}

.cdl-section--compact {
  padding-top: 6rem;
  padding-bottom: 7rem;
}

.cdl-section--tinted {
  background: #e6f6ff;
}

.cdl-section-heading {
  margin-bottom: 4rem;
}

.cdl-section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.75rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.cdl-section-heading p {
  max-width: 42rem;
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.75;
}

.cdl-section-heading--spread {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.cdl-section-heading--center {
  text-align: center;
}

.cdl-section-heading--center p {
  margin-inline: auto;
}

.cdl-section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #003e6b;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.cdl-section-link .material-symbols-outlined {
  transition: transform 0.2s ease;
}

.cdl-section-link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.cdl-services-grid {
  max-width: 76rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}

.cdl-service-card {
  position: relative;
  display: flex;
  min-height: 18rem;
  padding: 2.5rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 2rem;
  text-decoration: none;
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.cdl-service-card:hover {
  transform: translateY(-3px);
}

.cdl-service-card--wide-light,
.cdl-service-card--wide-light-bottom {
  grid-column: span 8;
  background: #fff;
}

.cdl-service-card--cardiology,
.cdl-service-card--teal {
  grid-column: span 4;
}

.cdl-service-card--cardiology {
  background: #003e6b;
  color: #fff;
}

.cdl-service-card--cardiology:hover {
  background: #005691;
}

.cdl-service-card--teal {
  background: #99efe8;
  color: #001f2a;
}

.cdl-service-card--wide-light:hover,
.cdl-service-card--wide-light-bottom:hover {
  border-color: rgba(0, 62, 107, 0.1);
}

.cdl-service-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 24rem;
}

.cdl-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
}

.cdl-service-card__icon--primary-fixed {
  background: #d1e4ff;
  color: #003e6b;
}

.cdl-service-card__icon--tertiary-fixed {
  background: #bee9ff;
  color: #004156;
}

.cdl-service-card__icon--white {
  background: #fff;
  color: #006a65;
}

.cdl-service-card--cardiology .cdl-service-card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cdl-service-card h3 {
  margin: 0 0 1rem;
  color: inherit;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cdl-service-card--cardiology h3,
.cdl-service-card--teal h3 {
  font-size: 1.75rem;
}

.cdl-service-card p {
  margin: 0;
  color: inherit;
  opacity: 0.85;
  line-height: 1.7;
}

.cdl-service-card__image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 50%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cdl-service-card:hover .cdl-service-card__image {
  opacity: 0.2;
  transform: scale(1.05);
}

.cdl-service-card__decor {
  position: absolute;
  right: 2.5rem;
  bottom: 2rem;
  color: rgba(193, 199, 209, 0.18);
  font-size: 5rem;
}

.cdl-why {
  max-width: 76rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6rem;
  align-items: center;
}

.cdl-why__media {
  position: relative;
}

.cdl-why__image-frame {
  overflow: hidden;
  border-radius: 4rem;
  background: #ceedfd;
  transform: rotate(3deg);
}

.cdl-why__image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: rotate(-3deg) scale(1.08);
}

.cdl-why__badge {
  position: absolute;
  left: -2rem;
  bottom: -2rem;
  max-width: 18rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 48px rgba(26, 97, 157, 0.1);
  backdrop-filter: blur(20px);
}

.cdl-why__badge strong {
  display: block;
  margin-bottom: 0.6rem;
  color: #003e6b;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.cdl-why__badge p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.cdl-why__content h2 {
  margin: 0 0 3rem;
  font-size: clamp(2.75rem, 4vw, 4rem);
}

.cdl-highlights {
  display: grid;
  gap: 2.5rem;
}

.cdl-highlight {
  display: flex;
  gap: 1.5rem;
}

.cdl-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 4rem;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: #d1e4ff;
  color: #003e6b;
}

.cdl-highlight:nth-child(2) .cdl-highlight__icon {
  background: #99efe8;
  color: #006a65;
}

.cdl-highlight:nth-child(3) .cdl-highlight__icon {
  background: #bee9ff;
  color: #004156;
}

.cdl-highlight h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.cdl-highlight p {
  margin: 0;
  line-height: 1.75;
}

.cdl-process-section {
  position: relative;
}

.cdl-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.cdl-process__line {
  position: absolute;
  top: 6rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(193, 199, 209, 0.65) 50%, transparent 100%);
}

.cdl-step-card {
  position: relative;
  z-index: 1;
  padding: 2rem;
  text-align: center;
  border-radius: 2rem;
  background: #fff;
}

.cdl-step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  margin-bottom: 2rem;
  border-radius: 999px;
  background: #003e6b;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.cdl-step-card h3 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
}

.cdl-step-card p {
  margin: 0;
  line-height: 1.75;
}

.cdl-reviews {
  max-width: 76rem;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.cdl-review-card {
  position: relative;
  flex: 1 1 22rem;
  max-width: 32rem;
  padding: 2.5rem;
  border-radius: 2rem;
  background: #e6f6ff;
}

.cdl-review-card__quote {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: rgba(0, 62, 107, 0.1);
  font-size: 3.2rem;
}

.cdl-review-card__stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1.5rem;
  color: #006a65;
}

.cdl-review-card__stars .material-symbols-outlined {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 1rem;
}

.cdl-review-card__text {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
}

.cdl-review-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cdl-review-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #d1e4ff;
  color: #003e6b;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.cdl-review-card--secondary .cdl-review-card__avatar {
  background: #99efe8;
  color: #006a65;
}

.cdl-review-card__author strong,
.cdl-review-card__author span {
  display: block;
}

.cdl-review-card__author span {
  margin-top: 0.15rem;
  font-size: 0.75rem;
}

.cdl-final-cta {
  max-width: 72rem;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  border-radius: 3rem;
  background: #005691;
}

.cdl-final-cta__bg,
.cdl-final-cta__bg::after {
  position: absolute;
  inset: 0;
}

.cdl-final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.cdl-final-cta__bg::after {
  content: "";
  background: linear-gradient(135deg, rgba(0, 62, 107, 0.8) 0%, rgba(0, 86, 145, 0.92) 100%);
}

.cdl-final-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
  padding: 4rem 5rem;
}

.cdl-final-cta h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.cdl-final-cta p {
  margin: 0;
  max-width: 34rem;
  color: #d1e4ff;
  font-size: 1.25rem;
  line-height: 1.75;
}

.cdl-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

.cdl-footer {
  padding: 3rem 0 2rem;
  background: #e6f6ff;
}

.cdl-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.8fr 1fr;
  gap: 3rem;
}

.cdl-footer__brand {
  margin-bottom: 1.5rem;
  color: #001f2a;
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.cdl-footer h3 {
  margin: 0 0 1.5rem;
  color: #001f2a;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cdl-footer p,
.cdl-footer li,
.cdl-footer a {
  color: #414750;
  font-size: 0.95rem;
  line-height: 1.8;
}

.cdl-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cdl-footer a {
  text-decoration: none;
}

.cdl-footer a:hover {
  color: #001f2a;
  text-decoration: underline;
  text-decoration-color: #005691;
  text-underline-offset: 0.25rem;
}

.cdl-footer__location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cdl-footer__location .material-symbols-outlined {
  color: #003e6b;
}

.cdl-footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(193, 199, 209, 0.2);
}

@media (max-width: 1100px) {
  .cdl-shell {
    width: min(100% - 2.5rem, 1280px);
  }

  .cdl-why,
  .cdl-final-cta__content,
  .cdl-footer__grid {
    grid-template-columns: 1fr;
  }

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

  .cdl-process__line {
    display: none;
  }
}

@media (max-width: 900px) {
  .cdl-nav-toggle {
    display: inline-flex;
  }

  .cdl-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.5rem;
    padding-top: 0.25rem;
  }

  .cdl-header.is-menu-open .cdl-nav {
    display: flex;
  }

  .cdl-nav__item {
    display: block;
  }

  .cdl-nav__link {
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(193, 199, 209, 0.2);
  }

  .cdl-nav a.is-current,
  .cdl-nav__link.is-current {
    padding-bottom: 0.9rem;
  }

  .cdl-nav__dropdown {
    position: static;
    width: 100%;
    margin-top: 0.55rem;
    padding: 0.55rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.6);
  }

  .cdl-nav__dropdown::before {
    display: none;
  }

  .cdl-nav__dropdown-grid {
    grid-template-columns: 1fr;
  }

  .cdl-nav__service-link {
    padding: 0.9rem 1rem;
  }

  .cdl-header__actions {
    display: none;
    width: 100%;
  }

  .cdl-header.is-menu-open .cdl-header__actions {
    display: flex;
  }

  .cdl-services-grid {
    grid-template-columns: 1fr;
  }

  .cdl-service-card--wide-light,
  .cdl-service-card--wide-light-bottom,
  .cdl-service-card--cardiology,
  .cdl-service-card--teal {
    grid-column: auto;
  }

  .cdl-service-card__image {
    width: 100%;
  }

  .cdl-section-heading--spread {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .cdl-shell {
    width: min(100% - 1.5rem, 100%);
  }

  .cdl-shell--hero {
    width: min(100% - 1.5rem, 100%);
  }

  .cdl-header__inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 0;
  }

  .cdl-header__actions {
    width: 100%;
  }

  .cdl-header__actions .cdl-btn {
    flex: 1 1 0;
  }

  .cdl-hero {
    min-height: auto;
  }

  .cdl-hero__content {
    padding-block: 5rem 4rem;
  }

  .cdl-hero h1 {
    font-size: 3rem;
  }

  .cdl-hero__lead,
  .cdl-section-heading p,
  .cdl-final-cta p {
    font-size: 1rem;
  }

  .cdl-btn--large {
    width: 100%;
  }

  .cdl-why__badge {
    left: 1rem;
    right: 1rem;
    bottom: -1.5rem;
    max-width: none;
  }

  .cdl-final-cta__content {
    padding: 3rem 1.5rem;
  }

  .cdl-final-cta__actions {
    justify-content: stretch;
  }

  .cdl-final-cta__actions .cdl-btn {
    width: 100%;
  }
}
