:root {
  --teal: #00c2b3;
  --teal-700: #089e92;
  --pink: #ff2daa;
  --yellow: #fdba12;
  --slate: #0f172a;
  --muted: #667085;
  --line: #e5e7eb;
  --bg: #ffffff;
  --card: #ffffff;
  --shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  --radius: 20px;
  --container: 1200px;
  --s1: 8px;
  --s2: 12px;
  --s3: 16px;
  --s4: 20px;
  --s5: 24px;
  --s6: 32px;
  --s7: 40px;
  --s8: 56px;
  --s9: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--slate);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--teal-700);
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", "DM Sans", sans-serif;
  margin: 0 0 10px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
}

small {
  font-size: 14px;
}

::selection {
  background: rgba(0, 194, 179, 0.18);
}

:focus-visible {
  outline: 3px solid rgba(255, 45, 170, 0.4);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  color: var(--slate);
  border: 2px solid var(--pink);
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 2000;
}

.skip-link:focus {
  left: 12px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--s9) 0;
}

.section-alt {
  background: #f6f8fb;
}

.section-header {
  display: grid;
  gap: 12px;
  margin-bottom: var(--s6);
}

.section-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-700);
}

.section-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 70ch;
}

.section-sm {
  padding: var(--s7) 0;
}

.section-tight {
  padding: var(--s6) 0;
}

.grid {
  display: grid;
  gap: var(--s6);
}

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

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

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--slate);
  font-weight: 800;
}

.brand-logo {
  height: 92px;
  width: auto;
  max-width: 320px;
  display: block;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-right: 0;
  justify-self: end;
}

.nav-links a {
  color: var(--slate);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 4px;
  border-radius: 999px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}


.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  justify-self: end;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 14px 0 20px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: var(--slate);
  font-weight: 700;
  text-decoration: none;
}


.btn,
.hcp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, transform 0.15s;
  font: inherit;
}

.btn:active,
.hcp-button:active {
  transform: translateY(1px);
}

.btn-book,
.hcp-button {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 194, 179, 0.18);
}

.btn-book:hover,
.hcp-button:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 45, 170, 0.2);
}

.btn-nav {
  background: var(--pink);
  box-shadow: 0 10px 24px rgba(255, 45, 170, 0.25);
}

.btn-nav:hover {
  background: #ff44b8;
  box-shadow: 0 10px 24px rgba(255, 45, 170, 0.3);
}

.btn-ghost {
  background: #fff;
  border: 1.5px solid rgba(15, 23, 42, 0.14);
  color: var(--slate);
}

.btn-ghost:hover {
  border-color: transparent;
  color: #fff;
  background: var(--pink);
}

.btn-inverse {
  background: #fff;
  color: var(--slate);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-inverse:hover {
  background: var(--pink);
  color: #fff;
}

.hero {
  padding: var(--s9) 0 var(--s8);
  background: #fff;
}

.hero-legacy .hero-grid {
  grid-template-columns: 1.35fr 0.65fr;
  gap: 40px;
}

.hero-legacy .hero-copy {
  gap: 26px;
  padding-right: 0;
}

.hero-legacy h1 {
  font-size: clamp(2.6rem, 2.1vw + 1.5rem, 3.25rem);
  letter-spacing: -0.015em;
  line-height: 1.08;
}

.hero-legacy .lede {
  font-size: 18px;
  max-width: 48ch;
}

.carousel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #f1f5f9;
  aspect-ratio: 4 / 3;
}

.track {
  display: flex;
  width: 100%;
  transition: transform 0.4s ease;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.caro-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 26px;
  line-height: 48px;
  text-align: center;
  z-index: 2;
}

.caro-btn.left {
  left: 14px;
}

.caro-btn.right {
  right: 14px;
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 0;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s7);
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

.lede {
  font-size: 18px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  display: grid;
  gap: 16px;
}

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

.media-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 12px;
  background: rgba(15, 23, 42, 0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
}

.media-large {
  min-height: 320px;
}


.hero-panel {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: var(--s6);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--s4);
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--s6);
}


.card-media {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body {
  display: grid;
  gap: 12px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.service-card--media {
  padding: 0;
}

.service-card--media .card-media {
  margin: 0;
  border-radius: var(--radius) var(--radius) 16px 16px;
}

.service-card--media .card-media img {
  height: 210px;
  object-fit: cover;
}

.service-card--media .card-content {
  padding: var(--s6);
  display: grid;
  gap: var(--s4);
}

.service-card--media .card-content > p {
  margin: 0;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), #49e8da);
}

.service-icon.pink {
  background: linear-gradient(135deg, var(--pink), #ff7cc9);
}

.muted {
  color: var(--muted);
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.list-clean li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.contact-list a {
  color: var(--slate);
  text-decoration: none;
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--pink);
}

.check {
  color: #16a34a;
  font-weight: 800;
  margin-top: 2px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--yellow);
  color: #111827;
  font-size: 12px;
  font-weight: 800;
}

.step-card {
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 194, 179, 0.12) 0%, #ffffff 60%);
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--pink));
}

.step-card::after {
  content: attr(data-step);
  position: absolute;
  right: 18px;
  top: 10px;
  font-size: 42px;
  font-weight: 800;
  color: rgba(0, 194, 179, 0.12);
}

.step-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-700);
}

.step-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal), #6ef1e4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 194, 179, 0.12);
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.review-card {
  display: grid;
  gap: 8px;
}

.review-stars {
  color: #f59e0b;
  letter-spacing: 1px;
}

.cta-band {
  background: var(--teal);
  color: #fff;
  padding: 22px 0;
}

.cta-band h3 {
  margin: 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: var(--s7) 0 var(--s5);
  background: #fff;
}

.footer .brand-logo {
  height: 80px;
  max-width: 260px;
}

.align-center {
  align-items: center;
}

.footer-main {
  display: grid;
  gap: var(--s6);
  grid-template-columns: 1.6fr 1fr;
  align-items: start;
}

.footer-right {
  display: grid;
  gap: 10px;
}

.footer-right .footer-meta {
  margin: 0;
}

.footer-right .social {
  margin-top: 4px;
}

.footer-meta {
  color: var(--muted);
  font-size: 15px;
}

.footer a {
  color: var(--slate);
  text-decoration: none;
}

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

.social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.footer-bottom {
  margin-top: var(--s6);
  padding-top: var(--s4);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  color: #64748b;
  font-size: 14px;
}

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

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    padding: var(--s8) 0 var(--s7);
  }

  .btn,
  .hcp-button {
    min-width: 0;
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .caro-btn {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .service-card--media .card-media img {
    height: 180px;
  }
}

@media (max-width: 1100px) {
  .hero-legacy .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-legacy .carousel {
    margin-top: 24px;
  }

  .hero-legacy .hero-copy {
    order: 1;
  }

  .hero-legacy .carousel {
    order: 2;
  }
}

@media (max-width: 768px) {
  .brand-logo {
    height: 72px;
  }

  .hero-legacy h1 {
    font-size: clamp(2.2rem, 6vw + 1rem, 2.8rem);
  }

  .carousel {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: var(--s8) 0 var(--s6);
  }
}

@media (min-width: 1200px) {
  .hero-legacy h1 {
    white-space: nowrap;
  }
}
.service-logo {
  height: 42px;
  width: auto;
  max-width: 200px;
  display: block;
}

.service-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
