* {
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .site-footer {
    padding: 2.25rem 0 1.75rem;
  }

  .footer-bottom .container {
    padding: 0 1.1rem;
  }
}

@media (min-width: 901px) {
  .why h2 {
    white-space: nowrap;
  }
}

:root {
  --hh-primary: #008b72;
  --hh-primary-dark: #006954;
  --hh-primary-soft: #e0f7f2;
  --hh-amber: #f59e0b;
  --hh-amber-dark: #d97706;
  --hh-amber-soft: #fef3c7;
  --hh-amber-glow: rgba(245, 158, 11, 0.15);
  --hh-accent-soft: #e0f3ff;
  --hh-hero-start: #e8fff7; /* very light mint at top-left */
  --hh-hero-middle: #b6f2df; /* soft aqua-green in middle */
  --hh-hero-end: #3bb89a;   /* gentle teal-green at edges */
  --hh-text-main: #0f172a;
  --hh-text-muted: #4b5563;
  --hh-surface: #ffffff;
  --hh-surface-alt: #f8fafc;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--hh-text-main);
  background-color: #ffffff;
  overflow-anchor: none;
}

body {
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

p {
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header .container {
  max-width: 100%;
  padding: 0 2.5rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0;
}

.tm {
  font-size: 0.65em;
  vertical-align: super;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 98px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.35rem;
  color: #0f172a;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
}

@media (max-width: 520px) {
  .logo-img {
    height: 44px;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-cta {
  margin-left: 2.5rem;
}

.nav-links a,
.nav-link {
  font-size: 1rem;
  color: #0f172a;
}

.nav-links a.active,
.nav-links a[aria-current="page"],
.nav-link.active {
  position: relative;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--hh-primary-dark);
}

.nav-links a.active::after,
.nav-links a[aria-current="page"]::after,
.nav-link.active::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: -0.25rem;
  height: 1px;
  border-radius: 999px;
  background: var(--hh-primary-dark);
  box-shadow: 0 2px 6px rgba(15, 118, 110, 0.45);
}

.nav-links a:hover,
.nav-link:hover {
  color: #0f766e;
}

.nav-has-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "\25BE"; /* down caret */
  margin-left: 0.4rem;
  font-size: 0.9rem;
}

.nav-dropdown {
  position: absolute;
  top: 115%;
  left: 0;
  min-width: 220px;
  background-color: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border-radius: 0.75rem;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.18s ease;
  z-index: 1100;
}

.nav-dropdown li a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  border-radius: 0;
  margin: 0;
  color: #0f172a;
}

.nav-dropdown li a:hover {
  background-color: #f1f5f9;
  color: #0f766e;
}

.nav-dropdown li a.active,
.nav-dropdown li a[aria-current="page"] {
  background-color: #f1f5f9;
  color: #0f766e;
  font-weight: 700;
}

.nav-dropdown li a::after {
  content: none !important;
}

.nav-has-dropdown.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 1025px) {
  .nav-has-dropdown:hover .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.header-cta {
  font-size: 0.95rem;
}

.nav-cta .header-cta {
  box-shadow: none;
  color: #ffffff;
}

.nav-cta .header-cta:hover {
  transform: none;
  box-shadow: none;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

.btn-primary {
  background-color: var(--hh-primary);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 139, 114, 0.35);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--hh-primary-dark);
  border-color: var(--hh-primary);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0, 105, 84, 0.35);
}

.btn-light {
  background-color: #ffffff;
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.btn-light:hover {
  background-color: transparent;
  color: #ffffff; /* white text */
  border-color: #ffffff; /* white outline */
  transform: translateY(-1px);
  box-shadow: none;
}

.btn-fullwidth {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  color: #ffffff;
  padding: 5rem 0 6rem;
  background-image:
    linear-gradient(120deg, rgba(0, 139, 114, 0.2), rgba(59, 184, 154, 0.12)),
    url("images/hero-grandparents-garden.webp");
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 380px;
}

.hero-text-card {
  position: relative;
  max-width: 520px;
  padding-left: 2.5rem;
}

.hero-text-card h1 {
  font-size: 3.25rem;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.hero-tagline {
  font-size: 1.05rem;
  opacity: 0.98;
  margin-bottom: 2rem;
}

.hero-subtitle,
.hero-tagline {
  color: rgba(240, 253, 250, 0.9);
}

.hero-text-card::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12);
}

.hero-cta {
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.4);
}

.hero-image-wrapper {
  display: none;
}

.hero-image {
  display: none;
}

/* Evidence section */

.evidence {
  padding: 4.5rem 0 3.5rem;
}

.evidence-inner {
  text-align: left;
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 2.5rem;
}

.evidence-image-wrapper {
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.25);
}

.evidence-image-wrapper,
.why-image-wrapper {
  max-width: 480px;
}

.evidence-image {
  width: 100%;
  height: auto;
  display: block;
}

.evidence-content h2 {
  font-size: 2.1rem;
  max-width: 560px;
  margin: 0 0 1rem;
}

.evidence-meta {
  font-size: 1rem;
  font-weight: 600;
  color: #0f766e;
  margin-bottom: 0.75rem;
}

.evidence-lead {
  font-size: 1rem;
  max-width: 640px;
  margin: 0 0 2rem;
  color: var(--hh-text-muted);
}

.appointments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.appointment-card {
  border-radius: 0.9rem;
  border: 1.5px solid var(--hh-primary);
  background-color: var(--hh-primary-soft);
  padding: 1.1rem 1.45rem 1.35rem;
  text-align: left;
}

.appointment-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.4rem;
}

.appointment-card-header h3 {
  font-size: 1rem;
}

.appointment-location {
  font-size: 0.95rem;
  color: var(--hh-text-muted);
}

.appointment-icon {
  width: 32px;
  height: 32px;
  border-radius: 0.6rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.appointment-icon-svg {
  width: 22px;
  height: 22px;
  color: var(--hh-primary);
}

.evidence-cta-wrapper {
  margin-top: 0.5rem;
}

.evidence-cta-wrapper .btn-primary {
  box-shadow: none;
}

.evidence-cta-wrapper .btn-primary:hover {
  transform: none;
  box-shadow: none;
}

/* Why Choose */

.why {
  padding: 4rem 0 4.5rem;
  background-color: var(--hh-surface-alt);
}

.why h2 {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 2.5rem;
}

.why-text {
  max-width: 720px;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 0.85rem;
}

.why-card {
  background-color: transparent;
  border-radius: 0;
  padding: 0.25rem 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.why-card h3 {
  font-size: 1.05rem;
  margin: 0;
  font-weight: 400;
}

.why-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background-color: var(--hh-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-image-wrapper {
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.25);
}

.why-image {
  display: block;
  width: 100%;
  height: auto;
}

/* Testimonials */

.testimonials {
  padding: 4rem 0 4.5rem;
}

.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.25rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 1.75rem 2rem 2rem;
  background: rgba(224, 247, 242, 0.7); /* more transparent for stronger glassy feel */
  border: 1px solid rgba(148, 163, 184, 0.45); /* softer, glass-like border */
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12); /* a bit lighter shadow */
  backdrop-filter: blur(14px); /* stronger glass blur on supported browsers */
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
}

.star-border-container {
  display: block;
}

/* StarBorder utility classes are kept only to avoid HTML changes;
   gradient layers are disabled so testimonials are simple static cards. */
.border-gradient-bottom,
.border-gradient-top {
  display: none;
}

.testimonial-inner {
  position: static;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

.testimonial-stars span {
  color: #facc15;
  font-size: 1.1rem;
}

.testimonial-text {
  margin-top: 0.75rem;
  font-size: 0.98rem;
  color: #1f2937;
}

.testimonial-name {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

/* About page */

.about-hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(to bottom, #f0fdf9, #ffffff);
}

.about-hero-inner {
  text-align: center;
}

.about-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.about-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
  color: var(--hh-text-muted);
}

.about-doctor {
  padding: 0 0 4.5rem;
}

.about-doctor-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.about-doctor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: center;
}

.about-doctor-photo {
  position: relative;
  border-radius: 1.75rem;
  padding: 0; /* no thick colored frame */
  max-width: 460px;
  background: transparent;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.22);
}

.about-doctor-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1; /* uniform square like mockup */
  border-radius: 1.75rem;
  object-fit: cover;
}

.about-doctor-badge {
  position: absolute;
  right: -0.6rem;  /* slightly outside corner */
  bottom: -0.6rem;
  background: var(--hh-primary);
  color: #ffffff;
  padding: 0.9rem 1.2rem;
  border-radius: 0.9rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.about-doctor-badge-years {
  font-size: 1.3rem;
  font-weight: 700;
}

.about-doctor-badge-text {
  font-size: 0.8rem;
}

.about-doctor-header h2 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.about-doctor-title {
  font-size: 1.05rem;
  color: #0f766e;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.about-doctor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background-color: #e0f7f2;
  color: #047857;
  font-size: 0.85rem;
  font-weight: 500;
}

.about-doctor-intro {
  font-size: 0.98rem;
  color: var(--hh-text-muted);
  margin-bottom: 1.5rem;
}

.about-doctor-columns {
  display: block;
}

.about-doctor-experience h3 {
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}

.about-doctor-experience ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-doctor-experience {
  background-color: #f8fafc; /* very light grey box */
  border-radius: 1.25rem;
  padding: 1.5rem 1.8rem 1.8rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.about-doctor-experience li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.96rem;
  color: var(--hh-text-muted);
  margin-bottom: 0.55rem;
}

.about-bullet {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  margin-top: 0.15rem;
  background: linear-gradient(135deg, #f97316, #fb923c); /* warm amber accent for contrast with green */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.about-bullet::before {
  content: "✓";
}

.about-doctor-bio p {
  font-size: 0.96rem;
  color: var(--hh-text-muted);
  margin-bottom: 0.75rem;
}

.about-recognition {
  padding: 4rem 0 4.5rem;
  background: linear-gradient(to bottom, #f0fdf9, #ffffff);
}

.about-recognition h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.25rem;
}

.about-recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-recognition-card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 1.6rem 1.7rem 1.8rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.about-recognition-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: var(--hh-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.about-recognition-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.about-recognition-card p {
  font-size: 0.95rem;
  color: var(--hh-text-muted);
}

.icon-trophy::before {
  content: "🏆";
}

.icon-research::before {
  content: "📚";
}

.icon-award::before {
  content: "🎖️";
}

.about-care-band {
  padding: 4rem 0 4.5rem;
}

.about-care-inner {
  max-width: 720px;
  margin: 0 auto;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.35), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(135deg, #006954, #0ea57a, #14b8a6);
  color: #ffffff;
  border-radius: 1.5rem;
  padding: 2.4rem 2.6rem 2.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-care-inner h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.about-care-inner p {
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}

.about-care-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.icon-heart-amber::before {
  content: "❤";
  font-size: 2rem;
  color: #f97316; /* amber accent */
}

.about-bottom-cta {
  margin-top: 0;
}

.about-bottom-cta {
  margin-top: 0;
}

/* Patient Resources full page */

.svc-hero {
  padding: 4.5rem 0 2.75rem;
  background: linear-gradient(to bottom, #f0fdf9, #ffffff);
}

.svc-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.svc-hero-image {
  margin: 0 auto 1.75rem;
  width: fit-content;
  max-width: 100%;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  background: transparent;
}

.svc-hero-image img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 340px;
  display: block;
  border-radius: 22% 78% 68% 32% / 26% 28% 72% 74%;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
}

@media (max-width: 600px) {
  .svc-hero-image img {
    max-height: 280px;
  }
}

.svc-kicker {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--hh-primary-dark);
  margin-bottom: 0.75rem;
}

.svc-hero-copy h1 {
  font-size: 2.45rem;
  margin-bottom: 0.9rem;
}

.svc-lead {
  font-size: 1.02rem;
  font-weight: 600;
  color: #0f766e;
  margin-bottom: 0.75rem;
}

.svc-sublead {
  font-size: 1rem;
  color: var(--hh-text-muted);
  max-width: 820px;
  margin: 0 auto;
}

.svc-cards {
  padding: 0 0 4.25rem;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

.svc-flip {
  perspective: 1400px;
}

.svc-flip-card {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.svc-flip-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  border-color: rgba(16, 185, 129, 0.65);
}

.svc-flip-card:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.35);
  outline-offset: 3px;
}

.svc-flip-inner {
  position: relative;
  width: 100%;
  min-height: 380px;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.svc-flip-card.is-flipped .svc-flip-inner {
  transform: rotateY(180deg);
}

.svc-flip-front,
.svc-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.svc-flip-front {
  display: flex;
  align-items: flex-end;
}

.svc-flip-front::after {
  content: "i";
  position: absolute;
  right: 1.05rem;
  top: 1.05rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
  transition: transform 0.18s ease, opacity 0.18s ease;
  pointer-events: none;
}

.svc-flip-card:hover .svc-flip-front::after {
  transform: translateY(-2px);
}

.svc-flip-card.is-flipped .svc-flip-front::after {
  opacity: 0;
}

.svc-flip-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-flip-image--general {
  object-position: center 18%;
}

.svc-flip-title {
  position: relative;
  width: 100%;
  padding: 1.25rem 1.25rem 1.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.08));
}

.svc-flip-back {
  transform: rotateY(180deg);
  background: rgba(255, 255, 255, 0.98);
}

.svc-flip-back-inner {
  height: auto;
  min-height: 100%;
  padding: 1.15rem 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: visible;
  position: relative;
  text-align: left;
}

.svc-flip-back-title {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.25;
  padding-right: 2.75rem;
}

.svc-flip-close {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: #0f172a;
  font-size: 0;
  cursor: pointer;
}

.svc-flip-close::before,
.svc-flip-close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  opacity: 0.95;
}

.svc-flip-close::before {
  transform: rotate(45deg);
}

.svc-flip-close::after {
  transform: rotate(-45deg);
}

.svc-flip-close:hover {
  color: #0f766e;
  background: rgba(15, 118, 110, 0.08);
}

.svc-flip-close:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.35);
  outline-offset: 3px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.svc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  border-color: rgba(16, 185, 129, 0.65);
}

.svc-card-image {
  margin: 0;
  height: 220px;
  background: #f8fafc;
}

.svc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-card-body {
  padding: 1.35rem 1.5rem 1.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.svc-card-title {
  font-size: 1.25rem;
  margin: 0;
}

.svc-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--hh-text-muted);
  font-size: 1.05rem;
  display: block;
}

.svc-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}

.svc-bullets li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
  background: rgba(255, 237, 213, 0.95);
  border: 1px solid rgba(249, 115, 22, 0.55);
  color: #f97316;
  font-size: 0.75rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .svc-flip-inner {
    min-height: 360px;
  }
}

.svc-paragraph {
  font-size: 1.02rem;
  color: var(--hh-text-muted);
  margin-bottom: 0.65rem;
}

.svc-link {
  color: #f97316;
  font-weight: 700;
}

.svc-link:hover {
  color: #ea580c;
}

.svc-cta {
  margin-top: 0.6rem;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .svc-card-image {
    height: 200px;
  }
}

.svc-cta .btn-primary {
  box-shadow: none;
}

.svc-cta .btn-primary:hover {
  transform: none;
  box-shadow: none;
}

.svc-benefits {
  padding: 0 0 4.5rem;
}

.svc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(240, 253, 250, 0.82), rgba(255, 255, 255, 0.74));
  border: 1px solid rgba(16, 185, 129, 0.28);
  box-shadow:
    0 22px 58px rgba(15, 23, 42, 0.12),
    0 0 0 6px rgba(16, 185, 129, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.svc-benefit {
  text-align: center;
  padding: 0.25rem 0.25rem 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.svc-benefit-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline-block;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.svc-benefit-title {
  font-weight: 700;
  color: #0f172a;
}

@media (max-width: 700px) {
  .svc-benefits-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.1rem;
  }
}

.pr-page-hero {
  padding: 3.75rem 0 2.25rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.pr-page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: left;
}

.pr-page-hero-inner h1 {
  font-size: clamp(2.2rem, 4.6vw, 3rem);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.pr-page-hero-inner h1::after {
  content: "";
  display: block;
  height: 3px;
  width: 72px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--hh-primary), rgba(45, 212, 191, 0.9));
}

.pr-page-hero-inner p {
  font-size: 1.05rem;
  color: var(--hh-text-muted);
  max-width: 60ch;
}

@media (max-width: 700px) {
  .pr-page-hero-inner {
    text-align: center;
  }

  .pr-page-hero-inner h1::after {
    margin-left: auto;
    margin-right: auto;
  }

  .pr-page-hero-inner p {
    margin-left: auto;
    margin-right: auto;
  }
}

.pr-page-faq {
  padding: 0 0 3.5rem;
}

.pr-page-faq-inner {
  max-width: 860px;
  margin: 0 auto;
}

.pr-page-faq-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.pr-page-faq-header-row::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 0.75rem;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0));
}

.pr-page-faq-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
  color: var(--hh-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.pr-page-faq-header-row h2 {
  font-size: 1.35rem;
  margin: 0;
}

.pr-page-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pr-page-faq-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  border-radius: 1.05rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.pr-page-faq-card.open {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
}

.pr-page-faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.14);
  border-color: rgba(16, 185, 129, 0.35);
}

.pr-page-faq-header {
  width: 100%;
  padding: 1rem 1.1rem;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.pr-page-faq-header:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.35);
  outline-offset: 3px;
  border-radius: 0.95rem;
}

.pr-page-faq-q {
  font-weight: 650;
  font-size: 1rem;
  margin: 0;
}

.pr-page-faq-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 0;
  background: transparent;
  color: #f97316;
  flex-shrink: 0;
}

.pr-page-faq-toggle::before {
  content: "+";
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 800;
  transform: translateY(-1px);
}

.pr-page-faq-card.open .pr-page-faq-toggle::before {
  content: "−";
}

.pr-page-faq-toggle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.pr-page-faq-body {
  padding: 0 1rem;
  font-size: 0.92rem;
  color: var(--hh-text-muted);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 0.22s ease, opacity 0.22s ease, transform 0.22s ease, padding-top 0.22s ease, padding-bottom 0.22s ease;
}

.pr-page-faq-card.open .pr-page-faq-body {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 0.35rem;
  padding-bottom: 1rem;
}

.pr-page-faq-a ul {
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
}

.pr-page-faq-a li {
  margin-bottom: 0.25rem;
}

.pr-page-education {
  padding: 0 0 3.5rem;
}

.pr-page-education-card {
  max-width: 820px;
  margin: 0 auto;
  border-radius: 1.25rem;
  padding: 2.1rem 2.2rem 2.2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.52));
  color: #0f172a;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pr-page-education-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 18% 22%, rgba(16, 185, 129, 0.22), transparent 55%),
    radial-gradient(circle at 82% 70%, rgba(45, 212, 191, 0.18), transparent 60%),
    radial-gradient(circle at 65% 18%, rgba(251, 146, 60, 0.14), transparent 50%);
  pointer-events: none;
}

.pr-page-education-card > * {
  position: relative;
  z-index: 1;
}

.pr-page-education-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.icon-book-mini::before {
  content: "📚";
}

.pr-page-education-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.pr-page-education-card p {
  font-size: 0.96rem;
  margin-bottom: 1.2rem;
  color: #0f172a;
}

.pr-page-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.35);
  background: rgba(255, 255, 255, 0.55);
  color: #ea580c;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: default;
}

.pr-page-bottom-cta {
  padding: 0 0 4rem;
}

.pr-page-bottom-inner {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  border-radius: 1rem;
  padding: 1.3rem 1.6rem;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.pr-page-bottom-text h2 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.pr-page-bottom-text p {
  font-size: 0.9rem;
  color: var(--hh-text-muted);
}

.pr-page-bottom-actions {
  display: flex;
  gap: 0.75rem;
}

.pr-page-bottom-btn {
  padding-inline: 1.5rem;
}

.pr-page-bottom-actions .btn {
  box-shadow: none;
  transform: none;
}

.pr-page-bottom-actions .btn-light {
  background: rgba(255, 255, 255, 0.6);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.pr-page-bottom-actions .btn-primary {
  background: rgba(255, 255, 255, 0.6);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.pr-page-bottom-actions .btn:hover {
  background-color: var(--hh-primary);
  color: #ffffff;
  border-color: var(--hh-primary);
}

@media (max-width: 900px) {
  .pr-page-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pr-page-bottom-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .pr-page-bottom-cta {
    padding-bottom: 2.5rem;
  }

  .pr-page-bottom-inner {
    padding: 1.35rem 1.3rem;
    gap: 1rem;
  }

  .pr-page-bottom-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
  }

  .pr-page-bottom-btn {
    width: 100%;
    padding-inline: 1.25rem;
  }

  .pr-page-bottom-actions .pr-page-bottom-btn:last-child {
    margin-bottom: 0.35rem;
  }

  .pr-page-bottom-text p {
    margin-top: 0.35rem;
  }

  .site-footer {
    padding-bottom: 7.25rem;
  }
}

/* ===================================================================
   Sports Cardiology Page — Premium Redesign
   =================================================================== */

/* --- Hero: immersive full-bleed with text overlay --- */
.sc-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0f172a;
}

.sc-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.sc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}

.sc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.12) 0%,
    rgba(15, 23, 42, 0.38) 45%,
    rgba(15, 23, 42, 0.82) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.sc-hero-inner {
  position: relative;
  z-index: 2;
  padding: 6rem 0 3.5rem;
  max-width: 680px;
}

.sc-hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sc-hero-inner h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #ffffff;
}

.sc-hero-lead {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
}


/* --- Shared section header --- */
.sc-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.sc-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--hh-amber-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.sc-section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  color: var(--hh-text-main);
}

.sc-section-desc {
  margin: 0;
  color: var(--hh-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* --- Services section --- */
.sc-services {
  padding: 5rem 0 4.5rem;
  background: linear-gradient(180deg, #ffffff, var(--hh-surface-alt));
}

.sc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.sc-service-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.sc-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.12);
  border-color: rgba(0, 139, 114, 0.25);
}

.sc-service-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 0.65rem;
  background: var(--hh-amber-soft);
  color: var(--hh-amber-dark);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.sc-service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  font-weight: 650;
  color: var(--hh-text-main);
}

.sc-service-card p {
  margin: 0;
  color: var(--hh-text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* --- Prescription section --- */
.sc-prescription {
  padding: 4.5rem 0 5rem;
  background: var(--hh-surface-alt);
  position: relative;
  overflow: hidden;
}

.sc-prescription::after {
  content: "";
  position: absolute;
  bottom: -25%;
  right: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--hh-amber-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sc-rx-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.sc-rx-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.sc-rx-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
  border-color: rgba(0, 139, 114, 0.2);
}

.sc-rx-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--hh-primary), #2dd4bf);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 139, 114, 0.2);
  flex-shrink: 0;
}

.sc-rx-card:nth-child(2) .sc-rx-icon,
.sc-rx-card:nth-child(3) .sc-rx-icon {
  background: linear-gradient(135deg, var(--hh-amber), var(--hh-amber-dark));
  box-shadow: 0 4px 14px var(--hh-amber-glow);
}

.sc-rx-content h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--hh-text-main);
}

.sc-rx-content p {
  margin: 0;
  color: var(--hh-text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* --- Bottom CTA --- */
.sc-bottom {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, var(--hh-hero-start) 0%, var(--hh-hero-middle) 50%, var(--hh-hero-end) 100%);
  position: relative;
  overflow: hidden;
}

.sc-bottom::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sc-bottom-inner {
  position: relative;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 2.75rem 2.25rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sc-bottom-inner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  letter-spacing: -0.02em;
  color: var(--hh-text-main);
}

.sc-bottom-inner > p {
  margin: 0 0 1.75rem;
  color: var(--hh-text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.sc-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.sc-bottom-btn {
  min-width: 180px;
}

/* --- SC outline buttons (bottom CTA) --- */
.sc-outline-btn {
  background: transparent;
  color: var(--hh-primary-dark);
  border: 1.5px solid var(--hh-primary);
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.sc-outline-btn:hover {
  background: var(--hh-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 139, 114, 0.3);
}

/* --- Mobile responsive --- */
@media (max-width: 900px) {
  .sc-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .sc-hero {
    min-height: 480px;
  }

  .sc-hero-inner {
    padding: 5rem 0 2.5rem;
  }

  .sc-services {
    padding: 3.5rem 0 3rem;
  }

  .sc-services-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .sc-prescription {
    padding: 3.5rem 0 4rem;
  }

  .sc-rx-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .sc-bottom {
    padding: 3rem 0 5.5rem;
  }

  .sc-bottom-inner {
    padding: 2rem 1.5rem;
  }

  .sc-bottom-actions {
    flex-direction: column;
  }

  .sc-bottom-btn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .about-doctor-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-doctor-photo {
    max-width: 420px;
    margin: 0 auto 2rem;
  }

  .about-doctor-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-recognition-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Latest */

.latest {
  padding: 4rem 0 5rem;
  background-color: var(--hh-surface);
}

.latest h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.25rem;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Latest Slider */
.latest-slider-wrap {
  position: relative;
}

.latest-slider {
  overflow: hidden;
  border-radius: 1.25rem;
}

.latest-track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.25, 0.8, 0.25, 1);
  gap: 1.5rem;
}

.latest-track .latest-card {
  min-width: calc(50% - 0.75rem);
  flex: 0 0 calc(50% - 0.75rem);
}

.latest-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.latest-slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(0, 139, 114, 0.2);
  background: var(--hh-surface-alt);
  color: var(--hh-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms ease;
}

.latest-slider-btn:hover {
  background: var(--hh-primary);
  border-color: var(--hh-primary);
  color: #fff;
}

.latest-slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.latest-slider-btn:disabled:hover {
  background: var(--hh-surface-alt);
  color: var(--hh-primary);
  border-color: rgba(0, 139, 114, 0.2);
}

.latest-slider-btn svg {
  width: 20px;
  height: 20px;
}

.latest-slider-dots {
  display: flex;
  gap: 0.5rem;
}

.latest-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 139, 114, 0.18);
  cursor: pointer;
  padding: 0;
  transition: all 200ms ease;
}

.latest-slider-dot.is-active {
  background: var(--hh-primary);
  width: 28px;
}

.latest-card {
  background-color: var(--hh-surface-alt);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.latest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.latest-image-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.latest-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.latest-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 139, 114, 0.1);
  color: var(--hh-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.latest-content {
  padding: 1.5rem 1.75rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.latest-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.latest-content p {
  font-size: 0.95rem;
  color: var(--hh-text-muted);
  margin-bottom: 0.75rem;
}

.latest-content p {
  flex: 1;
}

.latest-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f97316; /* amber */
}

.latest-link:hover {
  color: #ea580c; /* deeper amber on hover */
}

/* ═══════════════════════════════════════════════
   BLOG POST PAGE
   ═══════════════════════════════════════════════ */

/* Hero */
.blog-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.blog-hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.blog-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.blog-hero-inner {
  position: relative;
  z-index: 2;
  padding: 3rem 0 2.5rem;
  width: 100%;
}

.blog-hero-content {
  max-width: 680px;
}

.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-category-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: var(--hh-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 180ms ease;
}

.blog-category-badge:hover {
  background: #006b58;
}

.blog-date {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 500;
}

.blog-hero-title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
}

.blog-hero-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
}

/* Article layout */
.blog-article {
  padding: 3rem 0 2rem;
  background: var(--hh-bg);
}

.blog-article-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* Author card */
.blog-author-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 2.5rem;
}

.blog-author-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.blog-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hh-primary), #2dd4bf);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blog-author-icon {
  display: flex;
  width: 22px;
  height: 22px;
  color: #fff;
}

.blog-author-icon svg {
  width: 100%;
  height: 100%;
}

.blog-author-name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hh-heading);
}

.blog-author-role {
  margin: 0.1rem 0 0;
  font-size: 0.82rem;
  color: var(--hh-text-muted);
}

.blog-reading-time {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hh-text-muted);
  flex-shrink: 0;
}

.blog-reading-time svg {
  width: 16px;
  height: 16px;
  color: var(--hh-primary);
}

/* Content typography */
.blog-content h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--hh-heading);
  letter-spacing: -0.015em;
  margin: 0 0 0.75rem;
}

.blog-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--hh-text);
  margin: 0 0 1.25rem;
}

.blog-intro {
  font-size: 1.1rem !important;
  line-height: 1.8 !important;
}

/* Callout boxes */
.blog-callout {
  display: flex;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-radius: 0.85rem;
  margin: 2rem 0;
  border-left: 4px solid;
}

.blog-callout--info {
  background: rgba(0, 139, 114, 0.06);
  border-left-color: var(--hh-primary);
}

.blog-callout--warning {
  background: rgba(245, 158, 11, 0.08);
  border-left-color: #f59e0b;
}

.blog-callout-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 0.1rem;
}

.blog-callout--info .blog-callout-icon {
  color: var(--hh-primary);
}

.blog-callout--warning .blog-callout-icon {
  color: #f59e0b;
}

.blog-callout-icon svg {
  width: 100%;
  height: 100%;
}

.blog-callout-title {
  font-weight: 700;
  color: var(--hh-heading);
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.blog-callout p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--hh-text);
  margin: 0;
}

.blog-callout p + p {
  margin-top: 0.5rem;
}

/* Tip cards */
.blog-tip {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.blog-tip:first-of-type {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.blog-tip-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hh-primary), #2dd4bf);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

.blog-tip-body {
  min-width: 0;
}

.blog-tip-body h2 {
  margin-bottom: 0.6rem;
}

.blog-tip-body p:last-child {
  margin-bottom: 0;
}

/* Fix box */
.blog-fix {
  margin-top: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(0, 139, 114, 0.05);
  border: 1px solid rgba(0, 139, 114, 0.12);
}

.blog-fix-label {
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hh-primary);
  margin: 0 0 0.35rem !important;
}

.blog-fix p:last-child {
  margin-bottom: 0;
}

/* Infographic */
.blog-infographic {
  margin: 2.5rem 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.blog-infographic img {
  width: 100%;
  height: auto;
  display: block;
}

/* Summary */
.blog-summary {
  margin: 2rem 0;
  padding: 1.75rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(0, 139, 114, 0.06), rgba(45, 212, 191, 0.06));
  border: 1px solid rgba(0, 139, 114, 0.12);
}

.blog-summary h2 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.blog-summary p {
  margin-bottom: 0;
}

/* Review badge */
.blog-review {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.18);
  margin: 2rem 0;
}

.blog-review svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--hh-primary);
  margin-top: 0.1rem;
}

.blog-review p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--hh-text-muted);
}

/* References */
.blog-references {
  margin: 2rem 0 0;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

.blog-references summary {
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--hh-heading);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.6);
  transition: background 180ms ease;
}

.blog-references summary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.blog-references ol {
  padding: 0.75rem 1.25rem 1.25rem 2.5rem;
  margin: 0;
}

.blog-references li {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--hh-text-muted);
  margin-bottom: 0.6rem;
}

.blog-references li:last-child {
  margin-bottom: 0;
}

/* Bottom CTA */
.blog-bottom-cta {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(120deg, var(--hh-primary-soft), var(--hh-primary));
  color: #f9fafb;
  text-align: center;
}

.blog-bottom-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.blog-bottom-cta h2 {
  font-size: 1.65rem;
  font-weight: 800;
  margin: 0 0 0.6rem;
  color: #fff;
}

.blog-bottom-cta p {
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

/* ═══ Blog Responsive ═══ */
@media (max-width: 768px) {
  .blog-hero {
    min-height: 340px;
  }

  .blog-hero-title {
    font-size: 1.65rem;
  }

  .blog-hero-lead {
    font-size: 0.98rem;
  }

  .blog-author-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .blog-tip {
    flex-direction: column;
    gap: 0.75rem;
  }

  .blog-tip-number {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .blog-callout {
    flex-direction: column;
    gap: 0.6rem;
  }

  .blog-content h2 {
    font-size: 1.18rem;
  }

  .blog-plan-grid {
    grid-template-columns: 1fr;
  }

  .blog-pro-header h2 {
    font-size: 1.2rem;
  }
}

/* Blog inline images */
.blog-inline-image {
  margin: 1.75rem 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.07);
}

.blog-inline-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.blog-inline-image figcaption,
.blog-infographic figcaption {
  font-size: 0.82rem;
  color: var(--hh-text);
  opacity: 0.65;
  text-align: center;
  padding: 0.6rem 1rem 0.75rem;
  line-height: 1.45;
  font-style: italic;
}

/* Blog plan grid */
.blog-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0 2rem;
}

.blog-plan-card {
  padding: 1.35rem 1.4rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.blog-plan-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.6rem;
  background: rgba(0, 139, 114, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.blog-plan-icon svg {
  width: 18px;
  height: 18px;
  color: var(--hh-primary);
}

.blog-plan-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--hh-heading);
  margin: 0 0 0.45rem;
}

.blog-plan-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--hh-text);
  margin: 0;
}

/* Blog pro tips section */
.blog-pro-section {
  margin: 2.5rem 0 2rem;
  padding: 2rem 1.75rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.06), rgba(251, 191, 36, 0.08));
  border: 1px solid rgba(245, 158, 11, 0.18);
}

.blog-pro-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.blog-pro-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  margin-bottom: 0.75rem;
}

.blog-pro-badge svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.blog-pro-header h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--hh-heading);
  margin: 0 0 0.5rem;
}

.blog-pro-header p {
  font-size: 0.98rem;
  color: var(--hh-text-muted);
  margin: 0;
}

.blog-pro-tip {
  padding: 1.15rem 0;
  border-top: 1px solid rgba(245, 158, 11, 0.15);
}

.blog-pro-tip:last-child {
  padding-bottom: 0;
}

.blog-pro-tip h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hh-heading);
  margin: 0 0 0.4rem;
}

.blog-pro-tip p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--hh-text);
  margin: 0;
}

/* Bottom CTA */

.bottom-cta {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(120deg, var(--hh-primary-soft), var(--hh-primary));
  color: #f9fafb;
  text-align: center;
}

.bottom-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.bottom-cta h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.bottom-cta-text {
  font-size: 1rem;
  margin-bottom: 1.75rem;
  color: rgba(241, 245, 249, 0.92);
}

.bottom-cta-button {
  padding-inline: 2.25rem;
}

/* Footer */

.site-footer {
  background-color: #020617;
  color: #e5e7eb;
  padding: 3rem 0 2.25rem;
}

.site-footer .footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.35fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  gap: 2.1rem;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #f9fafb;
  line-height: 1;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
}

@media (max-width: 520px) {
  .footer-logo-img {
    height: 60px;
  }
}

.footer-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.28);
}

.footer-logo-mark svg {
  width: 18px;
  height: 18px;
  stroke: #d1fae5;
}

.footer-brand .footer-cta {
  align-self: center;
}

.footer-column h3,
.footer-column h4 {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #f9fafb;
}

.footer-column h4 {
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.65rem;
}

.site-footer .footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.26);
}

.footer-brand h3 {
  font-size: 1.1rem;
}

.footer-column p {
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-column ul li {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 0;
}

.footer-column ul li:last-child {
  margin-bottom: 0;
}

.footer-contact ul li {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 0.7rem;
  align-items: start;
}

.footer-contact ul li {
  row-gap: 0.15rem;
  color: #cbd5e1;
}

.footer-contact ul li a {
  display: inline-block;
  color: inherit;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  margin-right: 0;
  font-size: 0.9rem;
}

.site-footer .footer-icon::before {
  content: "";
}

.site-footer .footer-icon.icon-location,
.site-footer .footer-icon.icon-phone,
.site-footer .footer-icon.icon-mail {
  width: 18px;
  height: 18px;
  background-color: var(--hh-primary);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.site-footer .footer-icon.icon-location {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4.5 8-12a8 8 0 1 0-16 0c0 7.5 8 12 8 12z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4.5 8-12a8 8 0 1 0-16 0c0 7.5 8 12 8 12z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.site-footer .footer-icon.icon-phone {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.18 2A19.8 19.8 0 0 1 3.1 5.18 2 2 0 0 1 5.1 3h3a2 2 0 0 1 2 1.72c.12.86.3 1.7.54 2.5a2 2 0 0 1-.45 2.11L9 10.9a16 16 0 0 0 4.1 4.1l1.57-1.18a2 2 0 0 1 2.11-.45c.8.24 1.64.42 2.5.54A2 2 0 0 1 22 16.9z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.18 2A19.8 19.8 0 0 1 3.1 5.18 2 2 0 0 1 5.1 3h3a2 2 0 0 1 2 1.72c.12.86.3 1.7.54 2.5a2 2 0 0 1-.45 2.11L9 10.9a16 16 0 0 0 4.1 4.1l1.57-1.18a2 2 0 0 1 2.11-.45c.8.24 1.64.42 2.5.54A2 2 0 0 1 22 16.9z'/%3E%3C/svg%3E");
}

.site-footer .footer-icon.icon-mail {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E");
}

.footer-column ul li a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.18s ease, color 0.18s ease;
}

.footer-column ul li a:hover {
  color: #e5e7eb;
  background-size: 100% 1px;
}

.footer-column ul li a:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.35);
  outline-offset: 3px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(148, 163, 184, 0.28);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.footer-social-link:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.35);
  outline-offset: 3px;
}

.footer-social-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(148, 163, 184, 0.45);
}

.footer-social-link:active {
  transform: translateY(0);
}

.footer-social-link svg {
  width: 19px;
  height: 19px;
  display: block;
}

.footer-social-link svg {
  opacity: 0.95;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  margin-top: 2.5rem;
  padding-top: 1.25rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: flex-end;
  max-width: 100%;
  padding: 0 2.5rem;
}

.footer-bottom {
  padding-bottom: 0.25rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #9ca3af;
  text-align: right;
}

@media (max-width: 900px) {
  .evidence-layout,
  .why-layout {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
  }

  .evidence-image-wrapper,
  .why-image-wrapper {
    max-width: 100%;
    width: 100%;
    justify-self: center;
  }

  .evidence-content h2 {
    font-size: 1.8rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer .footer-inner {
    padding: 0 1.5rem;
  }

  .footer-bottom .container {
    padding: 0 1.5rem;
  }
}

/* Icons (simple shapes approximating the design) */

.icon {
  display: inline-block;
}

.icon-clock::before {
  content: "\1F552";
}

.icon-testing::before {
  content: "\1F9EC";
}

.icon-globe::before {
  content: "\1F310";
}

.icon-doctor::before {
  content: "👨‍⚕️";
}

.icon-apple::before {
  content: "🍎";
}

.icon-run::before {
  content: "🏃";
}

.icon-support::before {
  content: "🤝";
}

.icon-hormone::before {
  content: "🧬";
}

.icon-appetite::before {
  content: "🍽️";
}

.icon-blood::before {
  content: "🩸";
}

.icon-rupee::before {
  content: "\20B9";
}

.icon-calendar::before {
  content: "\1F4C5";
}

.icon-no-conflicts::before {
  content: "\2713";
}

.icon-no-testing::before {
  content: "\26A0";
}

.icon-inperson::before {
  content: "\1F3E5";
}

.icon-online::before {
  content: "\1F4F1";
}

.icon-arrow::before {
  content: "\2192";
}

.icon-location::before {
  content: "\1F4CD";
}

.icon-phone::before {
  content: "\1F4DE";
}

.icon-mail::before {
  content: "\2709";
}

/* Sticky CTA for mobile */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.6));
  backdrop-filter: blur(14px);
  z-index: 30;
}

/* Navigation toggle (mobile) */

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  background-color: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background-color: #0f172a;
  border-radius: 999px;
}

.mwl-page {
  background: #ffffff;
}

.mwl-first {
  padding: 3.25rem 0 4.25rem;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 139, 114, 0.02), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 255, 252, 0.82));
}

.mwl-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 901px) {
  .mwl-hero-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

.mwl-hero-copy {
  padding-left: 0.35rem;
  display: grid;
  gap: 0.28rem;
  align-content: start;
}

.mwl-heading {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mwl-tagline {
  margin: 0;
  margin-top: -0.1rem;
  font-size: 0.95rem;
  color: #008b72;
}

.mwl-hero-copy .mwl-info {
  margin-top: 0.7rem;
}

.mwl-hero-actions {
  margin-top: 1.15rem;
}

.mwl-hero-actions .btn {
  border-radius: 999px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.mwl-hero-photo {
  margin: 0;
  justify-self: end;
  width: min(520px, 100%);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  background: #ffffff;
}

.mwl-hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.mwl-info {
  margin: 0;
  width: 100%;
  max-width: 640px;
  border-radius: 0.75rem;
  background: #ffffff;
  padding: 1.75rem 1.85rem 1.7rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 22px 55px rgba(15, 23, 42, 0.09),
    0 0 0 6px rgba(0, 139, 114, 0.04);
}

.mwl-info-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  justify-items: center;
  margin-bottom: 1.25rem;
}

.mwl-feature {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  text-align: center;
}

.mwl-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.9));
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
  font-size: 1.05rem;
}

.mwl-feature-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.mwl-feature-icon .icon {
  font-size: 22px;
  line-height: 1;
  display: inline-block;
}

.mwl-feature:nth-child(1) .mwl-feature-icon {
  color: #008b72;
}

.mwl-feature:nth-child(2) .mwl-feature-icon {
  color: #f59e0b;
}

.mwl-feature:nth-child(3) .mwl-feature-icon {
  color: #008b72;
}

.mwl-feature-text {
  font-size: 0.76rem;
  font-weight: 700;
  color: #0f172a;
}

.mwl-info-body {
  color: var(--hh-text-muted);
  font-size: 0.95rem;
  display: grid;
  gap: 0.95rem;
  max-width: 94ch;
  margin: 0 auto;
  line-height: 1.65;
}

.mwl-emphasis {
  font-weight: 700;
  color: #0f172a;
}

.mwl-how {
  padding: 3.25rem 0 4rem;
  background:
    radial-gradient(circle at 14% 10%, rgba(0, 139, 114, 0.08), transparent 62%),
    radial-gradient(circle at 86% 28%, rgba(245, 158, 11, 0.06), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 253, 249, 0.6));
}

.mwl-how-heading {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

.mwl-how-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

@media (min-width: 760px) {
  .mwl-how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.mwl-how-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  padding: 0;
  display: grid;
  grid-template-rows: auto auto 1fr;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mwl-how-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.11);
}

.mwl-how-media {
  margin: 0;
  height: 220px;
  display: block;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.mwl-how-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.mwl-how-media--contain {
  background: #ffffff;
}

.mwl-how-media--contain img {
  object-fit: contain;
  padding: 0;
}

.mwl-how-media--crop img {
  object-fit: cover;
  padding: 0;
}

.mwl-how-media--contain-shrink img {
  transform: scale(0.9);
  transform-origin: center;
}

.mwl-how-media--contain-shrink-more img {
  transform: scale(0.9);
  transform-origin: center;
}

.mwl-how-media--contain-boost-lite img {
  transform: scale(1.55);
  transform-origin: center;
}

.mwl-how-media--contain-boost img {
  transform: scale(1.45);
  transform-origin: center;
}

.mwl-how-media--double {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mwl-how-media--double img {
  height: 100%;
}

.mwl-how-title {
  margin: 0.95rem 1.05rem 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: normal;
  position: relative;
  z-index: 2;
}

.mwl-how-text {
  margin: 0.5rem 1.05rem 1.15rem;
  color: var(--hh-text-muted);
  font-size: 0.93rem;
  line-height: 1.5;
  white-space: normal;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.mwl-how-cta {
  margin-top: 1.65rem;
  display: flex;
  justify-content: center;
}

.mwl-how-cta .btn {
  border-radius: 999px;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.mwl-candidate {
  padding: 3.25rem 0 3.35rem;
  background: #ffffff;
}

.mwl-candidate-heading {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin: 0;
}

.mwl-candidate-grid {
  margin: 1.6rem auto 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.mwl-candidate-card {
  border-radius: 0.95rem;
  padding: 1.35rem 1.4rem 1.25rem;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mwl-candidate-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.11);
}

.mwl-candidate-card--yes {
  border: 1px solid rgba(34, 197, 94, 0.55);
  background: rgba(34, 197, 94, 0.06);
}

.mwl-candidate-card--no {
  border: 1px solid rgba(239, 68, 68, 0.55);
  background: rgba(239, 68, 68, 0.06);
}

.mwl-candidate-card-head {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.85rem;
}

.mwl-candidate-badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.mwl-candidate-badge svg {
  width: 16px;
  height: 16px;
  display: block;
}

.mwl-candidate-badge--yes {
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.28);
  color: #15803d;
}

.mwl-candidate-badge--no {
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.28);
  color: #b91c1c;
}

.mwl-candidate-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  color: #0f172a;
}

.mwl-candidate-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.mwl-candidate-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.65rem;
  align-items: start;
  color: #0f172a;
  font-size: 0.93rem;
  line-height: 1.45;
}

.mwl-candidate-bullet {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.12rem;
  border: 1px solid transparent;
}

.mwl-candidate-bullet svg {
  width: 12px;
  height: 12px;
  display: block;
}

.mwl-candidate-bullet--yes {
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(34, 197, 94, 0.26);
  color: #15803d;
}

.mwl-candidate-bullet--no {
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.26);
  color: #b91c1c;
}

.mwl-candidate-cta {
  margin-top: 1.8rem;
  display: flex;
  justify-content: center;
}

.mwl-candidate-cta .btn {
  border-radius: 999px;
  padding-left: 1.45rem;
  padding-right: 1.45rem;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
}

.mwl-sidefx {
  padding: 3.35rem 0 4rem;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 139, 114, 0.06), transparent 55%),
    radial-gradient(circle at 85% 24%, rgba(245, 158, 11, 0.08), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 255, 252, 0.7));
}

.mwl-sidefx-heading {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin: 0;
}

.mwl-sidefx-lead {
  margin: 0.85rem auto 0;
  max-width: 980px;
  text-align: center;
  color: var(--hh-text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.mwl-sidefx-accordion {
  margin: 1.6rem auto 0;
  max-width: 980px;
  display: grid;
  gap: 1rem;
}

.mwl-sidefx-item {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.mwl-sidefx-item--common {
  border-color: rgba(0, 139, 114, 0.22);
}

.mwl-sidefx-item--rare {
  border-color: rgba(0, 139, 114, 0.22);
}

.mwl-sidefx-summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
}

.mwl-sidefx-summary::-webkit-details-marker {
  display: none;
}

.mwl-sidefx-summary-title {
  font-weight: 900;
  color: #0f172a;
  font-size: 1rem;
}

.mwl-sidefx-summary-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(15, 23, 42, 0.03);
  flex: 0 0 auto;
  position: relative;
}

.mwl-sidefx-summary-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
  display: block;
}

.mwl-sidefx-item--common .mwl-sidefx-summary-icon {
  color: #008b72;
  border-color: rgba(0, 139, 114, 0.22);
  background: rgba(0, 139, 114, 0.08);
}

.mwl-sidefx-item--rare .mwl-sidefx-summary-icon {
  color: #008b72;
  border-color: rgba(0, 139, 114, 0.22);
  background: rgba(0, 139, 114, 0.08);
}

.mwl-sidefx-item[open] .mwl-sidefx-summary-icon::before {
  transform: rotate(225deg);
}

.mwl-sidefx-body {
  padding: 0.25rem 1.2rem 1.2rem;
}

.mwl-sidefx-body p {
  margin: 0.85rem 0 0.55rem;
  color: #0f172a;
  font-weight: 700;
}

.mwl-sidefx-body ul {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.55rem;
  color: #1f2937;
  line-height: 1.6;
}

.mwl-sidefx-body li::marker {
  color: #f59e0b;
}

.mwl-sidefx-item--common .mwl-sidefx-body ul:nth-of-type(2) {
  padding-left: 0;
  list-style: none;
}

.mwl-sidefx-tick {
  display: inline-block;
  color: #f59e0b;
  font-weight: 900;
  margin-right: 0.5rem;
}

.mwl-sidefx-body li {
  font-size: 0.95rem;
}

.mwl-sidefx-foot {
  margin: 1.25rem auto 0;
  max-width: 980px;
  text-align: center;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.6;
}

.mwl-lifestyle {
  padding: 3.35rem 0 4.25rem;
  background: #ffffff;
}

.mwl-lifestyle-heading {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin: 0;
}

.mwl-lifestyle-grid {
  margin: 1.8rem auto 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.mwl-lifestyle-card {
  border-radius: 1rem;
  padding: 1.35rem 1.35rem 1.25rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mwl-lifestyle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 66px rgba(15, 23, 42, 0.11);
}

.mwl-lifestyle-card--diet {
  background: rgba(0, 139, 114, 0.08);
  border-color: rgba(0, 139, 114, 0.22);
}

.mwl-lifestyle-card--exercise {
  background: rgba(0, 139, 114, 0.08);
  border-color: rgba(0, 139, 114, 0.22);
}

.mwl-lifestyle-card--support {
  background: rgba(0, 139, 114, 0.08);
  border-color: rgba(0, 139, 114, 0.22);
}

.mwl-lifestyle-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  margin-bottom: 0.9rem;
  color: #008b72;
}

.mwl-lifestyle-icon .icon {
  font-size: 22px;
  line-height: 1;
  display: inline-block;
}

.mwl-lifestyle-card--exercise .mwl-lifestyle-icon {
  color: #0ea5a4;
}

.mwl-lifestyle-card--support .mwl-lifestyle-icon {
  color: #b45309;
}

.mwl-lifestyle-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.mwl-lifestyle-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a;
}

.mwl-lifestyle-list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.6rem;
  color: #1f2937;
  line-height: 1.55;
  font-size: 0.93rem;
}

.mwl-lifestyle-list li::marker {
  color: #0f172a;
}

.mwl-lifestyle-banner {
  margin: 1.75rem auto 0;
  max-width: 980px;
  padding: 1.1rem 1.25rem;
  border-radius: 0.9rem;
  text-align: center;
  font-weight: 900;
  color: #b45309;
  background: transparent;
  border: 1px solid rgba(245, 158, 11, 0.45);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.mwl-final {
  padding: 3.75rem 0 4.25rem;
  background:
    radial-gradient(circle at 20% 18%, rgba(0, 139, 114, 0.08), transparent 62%),
    radial-gradient(circle at 80% 25%, rgba(245, 158, 11, 0.1), transparent 64%),
    linear-gradient(180deg, rgba(248, 255, 252, 0.75), rgba(255, 255, 255, 0.98));
}

.mwl-final-inner {
  text-align: center;
}

.mwl-final-heading {
  margin: 0;
  font-size: clamp(1.55rem, 3.1vw, 2.15rem);
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.mwl-final-cta {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.mwl-final-cta .btn {
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.mwl-final-features {
  margin: 1.9rem auto 0;
  max-width: 720px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.15rem 1.6rem;
}

.mwl-final-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #0f172a;
  font-weight: 800;
  font-size: 0.95rem;
}

.mwl-final-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mwl-final-icon .icon {
  font-size: 18px;
  line-height: 1;
  display: inline-block;
}

.mwl-final-feature--care .mwl-final-icon {
  color: #008b72;
}

.mwl-final-feature--schedule .mwl-final-icon {
  color: #b45309;
}

.mwl-final-feature--support .mwl-final-icon {
  color: #008b72;
}

.appts-page {
  background: #ffffff;
}

.appts-hero {
  position: relative;
  padding: 0;
  background: #ffffff;
  overflow: hidden;
}

.appts-hero-media {
  position: relative;
  margin: 0;
  height: 440px;
  overflow: hidden;
}

.appts-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.95);
}

.appts-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.24) 42%, rgba(15, 23, 42, 0.08) 72%, rgba(15, 23, 42, 0) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.16));
  pointer-events: none;
}

.appts-hero-inner {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.appts-hero-card {
  max-width: 620px;
  color: #ffffff;
}

.appts-hero-card h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.appts-hero-subtitle {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.45;
  max-width: 46ch;
}

.appts-hero-pill {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1.05rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(10px);
}

.appts-hero-pill-icon {
  width: 34px;
  height: 34px;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
}

.appts-hero-pill-text {
  display: inline-block;
  font-size: 0.92rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
}

.appts-hero-pill-text strong {
  color: #ffffff;
}

.appts-availability {
  padding: 3rem 0 2.25rem;
  background: linear-gradient(180deg, rgba(241, 253, 249, 0.8), rgba(255, 255, 255, 0.96));
}

.appts-availability-card {
  max-width: 980px;
  margin: 0.75rem auto 0;
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1.15rem;
  border: 1px solid rgba(0, 139, 114, 0.18);
  box-shadow:
    0 24px 70px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(15, 23, 42, 0.04) inset;
  padding: 1.85rem 2.05rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.appts-availability-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 30px 92px rgba(15, 23, 42, 0.09),
    0 0 0 1px rgba(15, 23, 42, 0.04) inset;
}

.appts-availability-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(0, 139, 114, 0.16), rgba(0, 139, 114, 0)) ,
    radial-gradient(circle at 12% 18%, rgba(0, 139, 114, 0.1), transparent 55%);
  opacity: 0.55;
  pointer-events: none;
}

.appts-availability-card::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 0;
  height: 100%;
  width: 6px;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
  background: #008b72;
  opacity: 0.95;
  pointer-events: none;
}

.appts-availability-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}

.appts-availability-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.appts-availability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: #00735e;
}

.appts-availability-icon .icon {
  font-size: 22px;
  line-height: 1;
}

.appts-availability-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.appts-availability-details {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.4rem;
  max-width: 68ch;
}

.appts-availability-detail {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.76);
}

.appts-availability-detail + .appts-availability-detail {
  padding-top: 0.4rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.appts-availability-actions {
  margin-top: 0.75rem;
}

.appts-availability-actions .btn {
  border-radius: 0.85rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

.appts-options {
  padding: 2.25rem 0 4.25rem;
  background: #ffffff;
}

.appts-options-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.appts-options-title {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
}

.appts-options-subtitle {
  margin: 0.55rem 0 0;
  color: var(--hh-text-muted);
  font-size: 1rem;
}

.appts-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: stretch;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.appts-option-card {
  position: relative;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow:
    0 18px 58px rgba(15, 23, 42, 0.075),
    0 1px 0 rgba(255, 255, 255, 0.86) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.75rem 1.65rem 1.55rem;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
  display: flex;
  flex-direction: column;
}

.appts-book-btn {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.6rem 1.5rem;
  font-size: 0.92rem;
  border-radius: 999px;
}

.appts-option-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 78px rgba(15, 23, 42, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.appts-option-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.appts-option-card--new .appts-option-icon,
.appts-option-card--follow .appts-option-icon {
  background: rgba(0, 139, 114, 0.08);
  border-color: rgba(0, 139, 114, 0.22);
  color: #008b72;
}

.appts-option-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.appts-option-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 139, 114, 0.22);
  flex: 0 0 auto;
}

.appts-option-icon .icon {
  font-size: 18px;
  line-height: 1;
  filter: none;
}

.appts-option-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.appts-option-icon-plus {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.appts-option-icon-emoji {
  font-size: 18px;
  line-height: 1;
  filter: none;
}

.appts-option-icon-badge {
  position: absolute;
  right: -6px;
  top: -6px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.38);
  color: #0f172a;
  font-weight: 900;
  font-size: 11px;
  line-height: 1;
}

.appts-option-meta {
  min-width: 0;
}

.appts-option-name {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.appts-option-price {
  margin: 0.25rem 0 0;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: #008b72;
}

.appts-option-price {
  width: fit-content;
  position: relative;
  padding-top: 0.35rem;
}

.appts-option-price::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: rgba(0, 139, 114, 0.7);
  opacity: 0.85;
}

.appts-option-list {
  margin: 1.45rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.appts-option-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: start;
  color: rgba(15, 23, 42, 0.74);
  font-size: 0.93rem;
  line-height: 1.55;
}

.appts-option-check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.appts-option-check::before {
  content: "✓";
  font-size: 12px;
  line-height: 1;
  color: #b45309;
  font-weight: 800;
}

.appts-clinic {
  padding: 3.25rem 0 4.25rem;
  background: linear-gradient(180deg, rgba(241, 253, 249, 0.7), rgba(255, 255, 255, 0.96));
}

.appts-clinic-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.appts-clinic-title {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: -0.02em;
}

.appts-clinic-subtitle {
  margin: 0.55rem 0 0;
  color: var(--hh-text-muted);
  font-size: 1rem;
}

.appts-clinic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 1.35rem;
  align-items: stretch;
}

.appts-clinic-map {
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 58px rgba(15, 23, 42, 0.075);
}

.appts-clinic-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.appts-clinic-card {
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow:
    0 18px 58px rgba(15, 23, 42, 0.075),
    0 1px 0 rgba(255, 255, 255, 0.86) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.85rem 1.75rem;
  display: grid;
  gap: 1.4rem;
}

.appts-clinic-items {
  display: grid;
  gap: 1.05rem;
}

.appts-clinic-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.appts-clinic-item-icon {
  width: 22px;
  height: 22px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: #008b72;
}

.appts-clinic-item-icon .icon {
  font-size: 18px;
  line-height: 1;
}

.appts-clinic-item-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.appts-clinic-item-text {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.76);
}

.appts-clinic-link {
  color: inherit;
  text-decoration: none;
}

.appts-clinic-item-text .appts-clinic-link {
  display: inline-block;
}

.appts-clinic-link:hover {
  text-decoration: underline;
}

.appts-clinic-cta {
  width: 100%;
  border-radius: 0.95rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.appts-note {
  padding: 3.25rem 0;
  background: #ffffff;
}

.appts-note-card {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 1.2rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.28);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  padding: 1.65rem 1.75rem;
}

.appts-note-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.appts-note-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: #b45309;
  font-weight: 900;
  font-size: 0.95rem;
  line-height: 1;
}

.appts-note-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.appts-note-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.appts-note-list li {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  color: rgba(15, 23, 42, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}

.appts-note-bullet {
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.9);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}

.appts-final {
  padding: 3.75rem 0 4rem;
  background: linear-gradient(120deg, var(--hh-primary-soft), var(--hh-primary));
}

.appts-final-inner {
  text-align: center;
}

.appts-final-title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.appts-final-subtitle {
  margin: 0.75rem auto 0;
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
}

.appts-final-cta {
  margin-top: 1.6rem;
}

.contact-hero {
  padding: 3.25rem 0 4.25rem;
  background: linear-gradient(180deg, rgba(241, 253, 249, 0.8), rgba(255, 255, 255, 1));
}

.contact-hero-head {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-hero-title {
  margin: 0;
  letter-spacing: 0.18em;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.contact-hero-subtitle {
  margin: 0.7rem auto 0;
  max-width: 78ch;
  color: var(--hh-text-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: 1.35rem;
  align-items: stretch;
}

.contact-card {
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow:
    0 18px 58px rgba(15, 23, 42, 0.075),
    0 1px 0 rgba(255, 255, 255, 0.86) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.85rem 1.75rem;
  display: grid;
  gap: 1.35rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 26px 74px rgba(15, 23, 42, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card,
  .latest-card,
  .mwl-how-card,
  .mwl-candidate-card,
  .mwl-lifestyle-card,
  .appts-availability-card,
  .contact-card {
    transition: none;
  }

  .testimonial-card:hover,
  .latest-card:hover,
  .mwl-how-card:hover,
  .mwl-candidate-card:hover,
  .mwl-lifestyle-card:hover,
  .appts-availability-card:hover,
  .contact-card:hover {
    transform: none;
  }
}

.contact-card-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact-card-badge {
  width: 44px;
  height: 44px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 139, 114, 0.08);
  border: 1px solid rgba(0, 139, 114, 0.22);
  color: #008b72;
}

.contact-card-badge .icon {
  font-size: 18px;
  line-height: 1;
}

.contact-card-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.contact-card-caption {
  margin: 0.25rem 0 0;
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-items {
  display: grid;
  gap: 1.05rem;
}

.contact-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.contact-item-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #008b72;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-icon .icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.contact-item-icon .icon::before {
  display: block;
  line-height: 1;
}

.contact-item-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.contact-item-text {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.76);
}

.contact-link {
  color: inherit;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-cta {
  width: 100%;
  border-radius: 0.95rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.contact-map {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 58px rgba(15, 23, 42, 0.075);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.contact-map-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: #0f172a;
  text-decoration: none;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.contact-map-link:hover {
  background: rgba(255, 255, 255, 1);
}

@media (max-width: 900px) {
  .appts-options-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .appts-clinic-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .appts-option-card {
    padding: 1.5rem 1.25rem 1.35rem;
  }

  .appts-note-card {
    padding: 1.45rem 1.25rem;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-map iframe {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .appts-hero-media {
    height: 340px;
  }

  .appts-hero-media img {
    object-position: center 35%;
  }

  .appts-hero-inner {
    align-items: end;
    padding-top: 1.25rem;
    padding-bottom: 3.6rem;
  }

  .appts-hero-pill {
    margin-bottom: 1.1rem;
  }

  .appts-availability-card {
    margin-top: 0.65rem;
    padding: 1.5rem 1.25rem;
    gap: 0.95rem;
  }
}

@media (max-width: 520px) {
  .mwl-final-features {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }
}

@media (max-width: 900px) {
  .mwl-lifestyle-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.mwl-expect {
  padding: 3.25rem 0 4.25rem;
  background: #ffffff;
}

.mwl-expect-heading {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin: 0;
}

.mwl-expect-panel {
  margin: 1.6rem auto 0;
  max-width: 980px;
  padding: 1.5rem 1.5rem 1.55rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 139, 114, 0.18);
  background: linear-gradient(180deg, rgba(0, 139, 114, 0.08), rgba(255, 255, 255, 0.94));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.mwl-expect-panel-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.mwl-expect-stats {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
}

.mwl-expect-stat {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.9rem;
  padding: 1.1rem 1.1rem 1rem;
  text-align: center;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
}

.mwl-expect-value {
  font-size: 2.05rem;
  font-weight: 900;
  color: #008b72;
  letter-spacing: -0.02em;
}

.mwl-expect-dose {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a;
}

.mwl-expect-caption {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--hh-text-muted);
}

.mwl-expect-subtitle {
  margin: 1.25rem 0 0.55rem;
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
}

.mwl-expect-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
}

.mwl-expect-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.mwl-expect-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.55rem;
  align-items: start;
  color: #0f172a;
  font-size: 0.92rem;
}

.mwl-expect-check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 139, 114, 0.14);
  color: #008b72;
  border: 1px solid rgba(0, 139, 114, 0.22);
  margin-top: 0.12rem;
}

.mwl-expect-check svg {
  width: 12px;
  height: 12px;
  display: block;
}

.mwl-expect-note {
  margin: 1.2rem auto 0;
  max-width: 980px;
  padding: 1.15rem 1.2rem 1.05rem;
  border-radius: 0.9rem;
  background: rgba(245, 158, 11, 0.12);
  border-left: 4px solid rgba(245, 158, 11, 0.8);
  border-right: 1px solid rgba(245, 158, 11, 0.18);
  border-top: 1px solid rgba(245, 158, 11, 0.18);
  border-bottom: 1px solid rgba(245, 158, 11, 0.18);
}

.mwl-expect-note-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mwl-expect-note-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  color: #b45309;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.mwl-expect-note-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.mwl-expect-note-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  color: #0f172a;
}

.mwl-expect-note p {
  margin: 0.55rem 0 0;
  color: #1f2937;
  line-height: 1.6;
}

.mwl-expect-note-em {
  font-style: italic;
  color: #0f172a;
}

.mwl-expect-banner {
  margin: 1.15rem auto 0;
  max-width: 980px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  background: #ffffff;
  color: #008b72;
  border: 1px solid rgba(0, 139, 114, 0.35);
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.mwl-expect-banner .icon {
  font-size: 1.05rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .mwl-expect-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .mwl-expect-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

.mwl-process {
  padding: 3.25rem 0 4.25rem;
  background:
    radial-gradient(circle at 14% 10%, rgba(0, 139, 114, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(248, 255, 252, 0.72), rgba(255, 255, 255, 0.98));
}

.mwl-process-heading {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.35rem, 2.7vw, 1.85rem);
  margin: 0;
}

.mwl-process-grid {
  margin-top: 1.55rem;
  display: grid;
  justify-content: center;
}

.mwl-process-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  max-width: 980px;
  width: 100%;
}

.mwl-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
  padding: 0.85rem 0;
}

.mwl-process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 44px;
  width: 2px;
  height: calc(100% - 44px + 0.85rem);
  background: rgba(0, 139, 114, 0.55);
  border-radius: 999px;
}

.mwl-process-dot {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 139, 114, 0.98), rgba(0, 139, 114, 0.78));
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  position: relative;
  z-index: 1;
}

.mwl-process-card {
  background: #ffffff;
  border-radius: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  padding: 1.15rem 1.25rem;
}

.mwl-process-title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 900;
  color: #0f172a;
}

.mwl-process-text {
  margin: 0.45rem 0 0;
  color: var(--hh-text-muted);
  line-height: 1.55;
  font-size: 0.93rem;
}

.mwl-process-callout {
  margin: 1.55rem auto 0;
  max-width: 980px;
  background: #ffffff;
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 0.9rem;
  padding: 1.15rem 1.25rem;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.75rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.mwl-process-callout-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: #b45309;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

 .mwl-process-callout-icon .icon {
   font-size: 22px;
   line-height: 1;
   display: inline-block;
 }

.mwl-process-callout-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.mwl-process-callout-text {
  margin: 0;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .mwl-process-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .mwl-process-step:not(:last-child)::after {
    left: 18px;
    top: 38px;
    height: calc(100% - 38px + 0.85rem);
  }

  .mwl-process-dot {
    width: 38px;
    height: 38px;
  }

  .mwl-candidate-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.1rem;
  }
}

@media (max-width: 600px) {
  .mwl-first {
    padding: 2.5rem 0 3.25rem;
  }

  .mwl-heading {
    font-size: 1.85rem;
  }

  .mwl-hero-photo {
    grid-row: 1;
  }

  .mwl-hero-copy {
    grid-row: 2;
  }

  .mwl-hero-photo {
    justify-self: stretch;
  }

  .mwl-hero-photo img {
    height: auto;
  }

  .mwl-info {
    padding: 1.25rem 1.1rem 1.2rem;
  }

  .mwl-info-top {
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    gap: 0.85rem;
  }

  .mwl-feature {
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .mwl-feature-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 700px) {
  .mwl-heading {
    white-space: normal;
    font-size: 1.75rem;
  }

  .mwl-first {
    padding: 2.25rem 0 2.75rem;
  }

  .mwl-how {
    padding: 2.5rem 0 3rem;
  }

  .mwl-candidate {
    padding: 2.5rem 0 2.75rem;
  }

  .mwl-sidefx {
    padding: 2.5rem 0 3rem;
  }

  .mwl-how-media {
    height: 180px;
  }

  .mwl-candidate-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.1rem;
  }

  .mwl-candidate-cta .btn,
  .mwl-how-cta .btn {
    width: 100%;
    max-width: 520px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    font-size: 0.95rem;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .mwl-final-cta .btn {
    width: 100%;
    max-width: 520px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    font-size: 0.95rem;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 5.25rem;
  }
}

/* Responsive styles */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-image-wrapper {
    justify-self: center;
  }

  .hero-text-card {
    max-width: 100%;
  }

  .hero-text-card h1 {
    font-size: 2.15rem;
  }

  .why-grid,
  .testimonials-grid,
  .latest-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .latest-track .latest-card {
    min-width: 100%;
    flex: 0 0 100%;
  }
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: inline-flex;
  }

  h1 {
    font-size: clamp(1.5rem, 1.2rem + 2vw, 2.15rem);
  }

  h2 {
    font-size: clamp(1.3rem, 1.1rem + 1.2vw, 1.85rem);
  }

  h3 {
    font-size: clamp(1.125rem, 1.05rem + 0.6vw, 1.35rem);
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto 0;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 1.25rem 1.25rem;
    gap: 1rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-has-dropdown {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    padding: 0 0 0 0.75rem;
    margin: 0;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.18s ease, opacity 0.18s ease;
  }

  .nav-has-dropdown.open .nav-dropdown,
  .nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 0.25rem;
  }

  .nav-dropdown li a {
    padding-left: 0;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.1rem;
  }

  .site-header .container {
    padding: 0 1.1rem;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    height: 64px;
  }

  .nav-links {
    inset: 64px 0 auto 0;
    max-height: calc(100vh - 64px);
  }

  .hero {
    padding: 2.5rem 0 4.25rem;
  }

  .evidence {
    padding-top: 3.2rem;
  }

  .evidence-inner h2,
  .why h2,
  .testimonials h2,
  .latest h2 {
    font-size: clamp(1.35rem, 1.1rem + 1vw, 1.6rem);
  }

  .evidence-icons {
    flex-direction: column;
  }

  .appointments-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-card,
  .testimonial-card,
  .latest-card {
    border-radius: 1rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 2.75rem 0 4.25rem;
    background-image:
      linear-gradient(120deg, rgba(0, 139, 114, 0.2), rgba(59, 184, 154, 0.12)),
      url("images/hero-grandparents-garden.webp");
    background-size: cover;
    background-position: 75% 35%;
    background-repeat: no-repeat;
    color: #ffffff;
  }

  .hero-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 360px;
  }

  .hero-image-wrapper {
    display: none;
  }

  .hero-image {
    display: none;
  }

  .hero-text-card {
    position: relative;
    max-width: 520px;
    padding-left: 1.6rem;
  }

  .hero-text-card::before {
    content: "";
    position: absolute;
    left: 0.6rem;
    top: 0.35rem;
    bottom: 0.35rem;
    width: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
  }

  .hero-text-card h1 {
    font-size: 2.05rem;
    color: #ffffff;
    text-shadow: 0 10px 28px rgba(15, 23, 42, 0.4);
  }

  .hero-subtitle {
    font-size: 1.05rem;
    color: rgba(240, 253, 250, 0.92);
  }

  .hero-tagline {
    font-size: 0.95rem;
    color: rgba(240, 253, 250, 0.9);
  }

  .hero-cta {
    align-self: flex-start;
  }

  .hero .btn-light {
    background-color: #ffffff;
    color: #0f172a;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
  }

  .hero .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.92);
    color: #0f172a;
  }

  .evidence {
    padding-top: 3.2rem;
  }

  .sc-hero-media img {
    object-position: center 55%;
  }

  .appts-hero-media {
    height: 240px;
  }

  .appts-hero-media img {
    object-position: center 45%;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.15rem;
  }
}

@media (min-width: 1025px) {
  .sticky-cta {
    display: none;
  }
}

/* ===================================================================
   ENHANCEMENTS — Page Preloader
   =================================================================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--hh-surface, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3.5px solid rgba(0, 139, 114, 0.15);
  border-top-color: var(--hh-primary, #008b72);
  border-radius: 50%;
  animation: loaderSpin 0.7s linear infinite;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

/* ===================================================================
   ENHANCEMENTS — Header Scroll Effect
   =================================================================== */
.site-header {
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08);
}

/* ===================================================================
   ENHANCEMENTS — Scroll Reveal Animations
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.reveal-left {
  transform: translateX(-32px);
}

.reveal.reveal-right {
  transform: translateX(32px);
}

.reveal.reveal-scale {
  transform: scale(0.92);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays for cards in a grid */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ===================================================================
   ENHANCEMENTS — Back-to-Top Button
   =================================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--hh-primary, #008b72);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 139, 114, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, background-color 0.2s ease;
}

.back-to-top:hover {
  background: var(--hh-primary-dark, #006954);
  transform: translateY(-2px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Move back-to-top above sticky CTA on mobile */
@media (max-width: 1024px) {
  .back-to-top {
    bottom: 5.5rem;
    right: 1.25rem;
  }
}

/* ===================================================================
   ENHANCEMENTS — Smooth Scroll
   =================================================================== */
html {
  scroll-behavior: smooth;
}

/* ===================================================================
   UI POLISH — Header & Navigation
   =================================================================== */
.site-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.site-header.is-scrolled {
  border-bottom-color: transparent;
}

.nav-links a,
.nav-link {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links > li > a::after,
.nav-links > li > .nav-link:not(.nav-dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 2px;
  border-radius: 999px;
  background: var(--hh-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links > li > a:hover::after,
.nav-links > li > .nav-link:not(.nav-dropdown-toggle):hover::after {
  transform: scaleX(1);
}

.nav-links a.active::after,
.nav-links a[aria-current="page"]::after,
.nav-link.active::after {
  height: 2px;
  transform: scaleX(1);
  background: var(--hh-primary-dark);
}

.nav-dropdown-toggle {
  transition: color 0.2s ease;
}

/* ===================================================================
   UI POLISH — Buttons
   =================================================================== */
.btn {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:focus-visible {
  outline: 3px solid rgba(0, 139, 114, 0.4);
  outline-offset: 3px;
}

.btn-light:focus-visible {
  outline-color: rgba(255, 255, 255, 0.6);
}

.nav-cta .header-cta {
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.nav-cta .header-cta:hover {
  background-color: transparent;
  color: var(--hh-primary-dark);
  border-color: var(--hh-primary);
  transform: translateY(-1px);
}

/* ===================================================================
   UI POLISH — Cards & Images
   =================================================================== */
.testimonial-card,
.latest-card,
.about-recognition-card,
.svc-card,
.mwl-how-card,
.mwl-candidate-card,
.mwl-lifestyle-card,
.appts-option-card,
.pr-page-faq-card,
.pr-page-education-card {
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.22s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.22s ease;
}

.evidence-image-wrapper img,
.why-image-wrapper img,
.about-doctor-photo img,
.latest-card img,
.svc-card-image img,
.mwl-hero-photo img,
.mwl-how-media img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.evidence-image-wrapper:hover img,
.why-image-wrapper:hover img,
.about-doctor-photo:hover img,
.latest-card:hover img,
.svc-card:hover .svc-card-image img,
.mwl-hero-photo:hover img {
  transform: scale(1.03);
}

.mwl-how-card:hover .mwl-how-media:not(.mwl-how-media--contain-boost-lite):not(.mwl-how-media--contain-shrink-more) img {
  transform: scale(1.03);
}

.about-recognition-card {
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease;
}

.about-recognition-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

/* ===================================================================
   UI POLISH — Typography & Spacing
   =================================================================== */
h1 {
  letter-spacing: -0.025em;
}

h2 {
  letter-spacing: -0.02em;
}

.evidence-meta,
.svc-kicker {
  text-transform: uppercase;
}

.about-hero h1,
.contact-hero-title {
  background: linear-gradient(135deg, #0f172a 0%, var(--hh-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================================================
   UI POLISH — Footer
   =================================================================== */
.footer-social-link:hover {
  background: rgba(0, 139, 114, 0.15);
  border-color: rgba(0, 139, 114, 0.35);
  color: #6ee7b7;
}

.footer-cta {
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.footer-cta:hover {
  background-color: transparent;
  color: var(--hh-primary-dark);
  border-color: var(--hh-primary);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .footer-bottom p {
    text-align: center;
  }

  .footer-bottom .container {
    justify-content: center;
  }
}

/* ===================================================================
   UI POLISH — Mobile Navigation
   =================================================================== */
@media (max-width: 1024px) {
  .nav-toggle {
    transition: background-color 0.18s ease, border-color 0.18s ease;
  }

  .nav-toggle:hover {
    border-color: var(--hh-primary);
    background-color: rgba(0, 139, 114, 0.04);
  }

  .nav-toggle-bar {
    transition: transform 0.25s ease, opacity 0.2s ease;
  }

  .nav-links {
    border-radius: 0 0 1rem 1rem;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-links > li > a::after,
  .nav-links > li > .nav-link:not(.nav-dropdown-toggle)::after {
    display: none;
  }

  .nav-links a,
  .nav-link {
    padding: 0.35rem 0;
    font-size: 1.02rem;
  }

  .nav-links a:active,
  .nav-link:active {
    color: var(--hh-primary);
  }
}

/* ===================================================================
   UI POLISH — Section Separators & Premium Touches
   =================================================================== */
.evidence,
.why,
.testimonials,
.latest,
.bottom-cta {
  position: relative;
}

.about-care-inner {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-care-inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.5);
}

.contact-cta,
.appts-clinic-cta {
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-cta:hover,
.appts-clinic-cta:hover {
  background-color: transparent;
  color: var(--hh-primary-dark);
  border-color: var(--hh-primary);
  transform: translateY(-1px);
}

.appts-final-cta .btn-light,
.bottom-cta-button {
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.appts-final-cta .btn-light:hover {
  background-color: #ffffff;
  color: var(--hh-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.2);
}

.sc-service-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.sc-rx-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.mwl-expect-stat {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mwl-expect-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.mwl-process-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mwl-process-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.11);
}

/* ===================================================================
   UI POLISH — Glassmorphism consistency on hero overlays
   =================================================================== */
.appts-hero-pill,
.contact-map-link {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}

.contact-map-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
}

/* ===================================================================
   UI POLISH — Selection color
   =================================================================== */
::selection {
  background: rgba(0, 139, 114, 0.15);
  color: #0f172a;
}

/* ===================================================================
   UI POLISH — Scrollbar (Webkit)
   =================================================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 139, 114, 0.25);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 139, 114, 0.4);
}

/* ===================================================================
   PATIENT RESOURCES — Premium UI Overhaul
   =================================================================== */

/* --- Hero: rich gradient background with depth --- */
.pr-page-hero {
  padding: 5rem 0 3.5rem;
  background: linear-gradient(135deg, var(--hh-hero-start) 0%, var(--hh-hero-middle) 50%, var(--hh-hero-end) 100%);
  position: relative;
  overflow: hidden;
}

.pr-page-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 139, 114, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pr-page-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pr-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  text-align: center;
}

.pr-page-hero-inner h1 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--hh-text-main);
  margin-bottom: 0.75rem;
}

.pr-page-hero-inner h1::after {
  width: 56px;
  height: 3.5px;
  margin-top: 0.65rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--hh-primary), #2dd4bf);
}

.pr-page-hero-inner p {
  font-size: 1.15rem;
  color: var(--hh-text-muted);
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.65;
}

/* --- FAQ Section: premium spacing & refined cards --- */
.pr-page-faq {
  padding: 3.5rem 0 4rem;
  background: var(--hh-surface-alt);
}

.pr-page-faq-inner {
  max-width: 820px;
}

.pr-page-faq-header-row {
  margin-bottom: 2rem;
  gap: 1rem;
}

.pr-page-faq-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--hh-primary), #2dd4bf);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 139, 114, 0.25);
}

.pr-page-faq-header-row h2 {
  font-size: 1.5rem;
  letter-spacing: -0.015em;
}

.pr-page-faq-list {
  gap: 0.7rem;
}

.pr-page-faq-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;
  position: relative;
}

.pr-page-faq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3.5px;
  height: 100%;
  background: var(--hh-primary);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.pr-page-faq-card.open::before,
.pr-page-faq-card:hover::before {
  opacity: 1;
}

.pr-page-faq-card.open {
  border-color: rgba(0, 139, 114, 0.2);
  box-shadow: 0 8px 32px rgba(0, 139, 114, 0.08);
  background: linear-gradient(135deg, rgba(224, 247, 242, 0.3), #ffffff);
}

.pr-page-faq-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  border-color: rgba(0, 139, 114, 0.18);
}

.pr-page-faq-header {
  padding: 1.15rem 1.35rem;
}

.pr-page-faq-q {
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--hh-text-main);
  line-height: 1.5;
}

.pr-page-faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  background: var(--hh-primary-soft);
  color: var(--hh-primary);
  transition: background 0.2s ease, transform 0.3s ease;
}

.pr-page-faq-toggle::before {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--hh-primary);
}

.pr-page-faq-card.open .pr-page-faq-toggle {
  background: var(--hh-primary);
  transform: rotate(0deg);
}

.pr-page-faq-card.open .pr-page-faq-toggle::before {
  color: #ffffff;
}

.pr-page-faq-body {
  padding: 0 1.35rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--hh-text-muted);
}

.pr-page-faq-body ul {
  margin: 0.5rem 0 0;
  padding-left: 1.3rem;
}

.pr-page-faq-body li {
  margin-bottom: 0.3rem;
  line-height: 1.6;
}

.pr-page-faq-card.open .pr-page-faq-body {
  padding-top: 0.25rem;
  padding-bottom: 1.2rem;
}

/* --- Education Section: premium card redesign --- */
.pr-page-education {
  padding: 0 0 4rem;
  background: var(--hh-surface-alt);
}

.pr-page-education-card {
  max-width: 820px;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--hh-primary-soft) 100%);
  border: 1px solid rgba(0, 139, 114, 0.12);
  box-shadow: 0 8px 40px rgba(15, 23, 42, 0.06);
  padding: 2.5rem 2.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pr-page-education-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 1.35rem;
  padding: 2px;
  background: linear-gradient(135deg, var(--hh-primary), rgba(45, 212, 191, 0.5), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.pr-page-education-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--hh-primary), #2dd4bf);
  box-shadow: 0 6px 20px rgba(0, 139, 114, 0.3);
  margin: 0 auto 1.25rem;
}

.icon-book-mini::after {
  font-size: 1.5rem;
}

.pr-page-education-card h2 {
  font-size: 1.65rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.6rem;
}

.pr-page-education-card p {
  font-size: 1rem;
  color: var(--hh-text-muted);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.pr-page-pill {
  background: linear-gradient(135deg, var(--hh-primary-soft), rgba(0, 139, 114, 0.08));
  color: var(--hh-primary-dark);
  border: 1px solid rgba(0, 139, 114, 0.2);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* --- Bottom CTA: dark premium gradient like other pages --- */
.pr-page-bottom-cta {
  padding: 0 0 4.5rem;
  background: var(--hh-surface-alt);
}

.pr-page-bottom-inner {
  max-width: 820px;
  background: linear-gradient(135deg, #0f2b24 0%, #134e3e 50%, #0a3d2e 100%);
  border: 1px solid rgba(0, 139, 114, 0.25);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.2);
  border-radius: 1.25rem;
  padding: 2.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.pr-page-bottom-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 139, 114, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pr-page-bottom-text h2 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.pr-page-bottom-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.pr-page-bottom-actions {
  flex-shrink: 0;
}

.pr-page-bottom-actions .btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.pr-page-bottom-actions .btn-light:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: translateY(-1px);
}

.pr-page-bottom-actions .btn-primary {
  background: var(--hh-primary);
  color: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 4px 16px rgba(0, 139, 114, 0.35);
}

.pr-page-bottom-actions .btn-primary:hover {
  background: transparent;
  color: #ffffff;
  border-color: var(--hh-primary);
  transform: translateY(-1px);
}


/* --- Mobile Responsive for Patient Resources --- */
@media (max-width: 700px) {
  .pr-page-hero {
    padding: 4rem 0 2.5rem;
  }

  .pr-page-hero-inner h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .pr-page-hero-inner p {
    font-size: 1rem;
  }

  .pr-page-faq {
    padding: 2.5rem 0 3rem;
  }

  .pr-page-faq-header-row {
    margin-bottom: 1.5rem;
  }

  .pr-page-faq-header-row h2 {
    font-size: 1.25rem;
  }

  .pr-page-faq-header {
    padding: 1rem 1.1rem;
  }

  .pr-page-faq-q {
    font-size: 0.95rem;
  }

  .pr-page-education {
    padding: 0 0 3rem;
  }

  .pr-page-education-card {
    padding: 2rem 1.5rem;
  }

  .pr-page-education-card h2 {
    font-size: 1.35rem;
  }

  .pr-page-bottom-cta {
    padding: 0 0 3.5rem;
  }

  .pr-page-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
  }

  .pr-page-bottom-text h2 {
    font-size: 1.2rem;
  }

  .pr-page-bottom-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.65rem;
  }

  .pr-page-bottom-btn {
    width: 100%;
  }
}

/* ===================================================================
   AMBER ACCENT — Patient Resources page only
   =================================================================== */

/* --- Patient Resources: FAQ icon amber --- */
.pr-page-faq-icon {
  background: linear-gradient(135deg, var(--hh-amber), var(--hh-amber-dark));
  box-shadow: 0 4px 16px var(--hh-amber-glow);
}

/* --- Patient Resources: education card icon amber --- */
.pr-page-education-icon {
  background: linear-gradient(135deg, var(--hh-amber), var(--hh-amber-dark));
  box-shadow: 0 6px 20px var(--hh-amber-glow);
}

/* --- Patient Resources: "Coming Soon" pill amber --- */
.pr-page-pill {
  background: linear-gradient(135deg, var(--hh-amber-soft), rgba(245, 158, 11, 0.1));
  color: var(--hh-amber-dark);
  border-color: rgba(245, 158, 11, 0.25);
}

/* --- Patient Resources hero: warm amber decorative orb --- */
.pr-page-hero::after {
  background: radial-gradient(circle, var(--hh-amber-glow) 0%, transparent 70%);
}

/* ===================================================================
   CONTACT PAGE — Iframe lazy load placeholder
   =================================================================== */
.contact-map iframe[data-src] {
  background: var(--hh-surface-alt);
}

.contact-map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background: var(--hh-surface-alt);
  border-radius: 1.25rem;
  color: var(--hh-text-muted);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-map-placeholder:hover {
  background: var(--hh-primary-soft);
  color: var(--hh-primary-dark);
}

/* ═══════════════════════════════════════════════
   BOOKING SELECTOR MODAL
   ═══════════════════════════════════════════════ */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
}
.booking-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  position: relative;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
  padding: 2.5rem 2.25rem 2rem;
  max-width: 460px;
  width: calc(100% - 2rem);
  transform: translateY(20px) scale(0.97);
  transition: transform 320ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.booking-modal-overlay.is-open .booking-modal {
  transform: translateY(0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--hh-text);
  transition: background 180ms ease;
}
.booking-modal-close:hover {
  background: rgba(15, 23, 42, 0.12);
}
.booking-modal-close svg {
  width: 18px;
  height: 18px;
}

.booking-modal-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--hh-heading);
  margin: 0 0 0.25rem;
}

.booking-modal-subtitle {
  font-size: 0.92rem;
  color: var(--hh-text);
  margin: 0 0 1.5rem;
  opacity: 0.75;
}

.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 1rem;
  border: 2px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: all 200ms ease;
}
.booking-option-card:hover {
  border-color: var(--hh-primary);
  background: rgba(0, 139, 114, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 139, 114, 0.1);
}

.booking-option-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 139, 114, 0.08);
  border-radius: 0.75rem;
  color: var(--hh-primary);
}
.booking-option-icon svg {
  width: 26px;
  height: 26px;
}

.booking-option-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hh-heading);
}

.booking-option-desc {
  font-size: 0.78rem;
  color: var(--hh-text);
  opacity: 0.65;
  line-height: 1.4;
}

.booking-step--hidden {
  display: none;
}

.booking-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: none;
  background: none;
  color: var(--hh-primary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1rem;
  transition: opacity 180ms ease;
}
.booking-back:hover {
  opacity: 0.7;
}
.booking-back svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 480px) {
  .booking-modal {
    padding: 2rem 1.5rem 1.5rem;
  }
  .booking-options {
    grid-template-columns: 1fr;
  }
  .booking-option-card {
    flex-direction: row;
    text-align: left;
    padding: 1.1rem 1.25rem;
  }
  .booking-option-icon {
    flex-shrink: 0;
  }
}

/* ===================================================================
   ENHANCEMENTS — Respect reduced motion
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .page-loader {
    transition: none;
  }

  .loader-spinner {
    animation: none;
  }

  .back-to-top {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .evidence-image-wrapper img,
  .why-image-wrapper img,
  .about-doctor-photo img,
  .latest-card img,
  .svc-card-image img,
  .mwl-hero-photo img,
  .mwl-how-media img {
    transition: none;
  }

  .evidence-image-wrapper:hover img,
  .why-image-wrapper:hover img,
  .about-doctor-photo:hover img,
  .latest-card:hover img,
  .svc-card:hover .svc-card-image img,
  .mwl-hero-photo:hover img {
    transform: none;
  }

  .about-recognition-card,
  .about-care-inner,
  .mwl-expect-stat,
  .mwl-process-card,
  .sc-service-card,
  .sc-rx-card,
  .contact-cta,
  .appts-clinic-cta,
  .footer-cta,
  .btn {
    transition: none;
  }

  .about-recognition-card:hover,
  .about-care-inner:hover,
  .mwl-expect-stat:hover,
  .mwl-process-card:hover,
  .sc-service-card:hover,
  .sc-rx-card:hover,
  .contact-cta:hover,
  .appts-clinic-cta:hover,
  .footer-cta:hover {
    transform: none;
  }
}
