:root {
  --orange: #ea5a05;
  --orange-dark: #bf4300;
  --gold: #f3b33f;
  --green: #4c8d55;
  --brown: #6c431b;
  --ink: #1c1d20;
  --muted: #69717b;
  --line: #ece2d8;
  --cream: #fff7eb;
  --peach: #fde8da;
  --soft: #fffaf1;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(55, 32, 14, 0.12);
  --page-shell: min(1280px, calc(100% - 72px));
  --radius: 24px;
  --font: "Inter", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

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

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

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

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  color: var(--orange);
  font-size: clamp(2.65rem, 3.35vw, 3.45rem);
  font-weight: 800;
}

h2,
.section-heading h2,
.blog-title h2,
.testimonials .section-heading h2 {
  font-size: clamp(2.35rem, 3.1vw, 3.25rem);
  font-weight: 750;
  line-height: 1.1;
}

h3 {
  font-size: 1.15rem;
  font-weight: 750;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: 0;
}

summary,
a,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

i[class^="fa-"],
i[class*=" fa-"] {
  display: inline-grid;
  place-items: center;
  line-height: 1;
}

.shell {
  width: var(--page-shell);
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-soft,
.section-card {
  width: var(--page-shell);
  margin-right: auto;
  margin-left: auto;
}

.top-strip {
  background: var(--brown);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
}

.top-strip-inner {
  min-height: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-left,
.top-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.top-left span,
.top-contact {
  min-height: 18px;
}

.top-left span + span,
.contact-info {
  border-left: 1px solid rgba(255, 255, 255, 0.78);
  padding-left: 12px;
}

.top-left i,
.top-contact i {
  width: 11px;
  height: 11px;
  font-size: 10px;
  vertical-align: -1px;
}

.social-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-mini a {
  display: grid;
  width: 14px;
  height: 12px;
  place-items: center;
  background: var(--white);
  color: var(--brown);
}

p:not(.eyebrow):not(.hero-badge):not(.badge-holiday):not(.brand-name):not(.tagline):not(.copyright) {
  text-align: left;
}

.social-mini a i {
  width: 12px;
  height: 12px;
  font-size: 9px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(55, 32, 14, 0.08);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  color: var(--orange);
  font-size: 15px;
  line-height: 1;
}

.brand-copy small {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 38px);
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--orange);
  content: "";
  transition: width 180ms ease;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--orange);
}

.nav-links a:hover::after,
.nav-links .active::after {
  width: 100%;
}

.mobile-menu-cta {
  display: none !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 200ms ease;
}

.menu-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn i {
  width: 15px;
  height: 15px;
  font-size: 14px;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(234, 90, 5, 0.22);
  font-weight: 500;
  font-size: 13px;
}

.btn-orange:hover {
  background: var(--orange-dark);
}

.btn-light {
  background: var(--white);
  color: var(--orange);
}

.btn-outline {
  border: 1px solid var(--orange);
  background: transparent;
  color: var(--orange);
}

.section,
.section-soft,
.section-card,
section[id],
div[id] {
  scroll-margin-top: 85px;
}

.section {
  padding: 70px 0;
}

.section-soft,
.section-card {
  margin-bottom: 72px;
  border-radius: var(--radius);
}

.section-heading {
  width: min(850px, 100%);
  margin: 0 auto 34px;
}

.center {
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
}

.eyebrow.orange,
.section-heading h2,
.blog-title h2 {
  color: var(--orange);
}

.section-heading p {
  margin-top: 8px;
  color: #1c1d20;
  font-size: 14px;
  font-weight: 700;
}

.text-orange {
  color: #d45505;
  font-weight: 800;
}

.hero {
  height: calc(100vh - 95px);
  min-height: 560px;
  max-height: 880px;
  display: grid;
  align-items: stretch;
  padding: 0;
  background: var(--white);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  margin-left: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  grid-template-areas: "hero-slide";
  gap: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-slide {
  grid-area: hero-slide;
  position: relative;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: inherit;
  box-sizing: border-box;
  display: grid;
  align-items: center;
  padding: clamp(16px, 2.5vh, 32px) max(20px, calc((100% - 1280px) / 2)) 0;
  overflow: hidden;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(40px) scale(0.97);
  transition: opacity 650ms cubic-bezier(0.16, 1, 0.3, 1), transform 650ms cubic-bezier(0.16, 1, 0.3, 1), visibility 650ms ease;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  z-index: 2;
}

/* Staggered Element Entrance Animations */
.hero-slide.is-active .hero-copy > * {
  animation: heroFadeSlideIn 650ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slide.is-active .hero-badge,
.hero-slide.is-active .eyebrow {
  animation-delay: 60ms;
}

.hero-slide.is-active h1 {
  animation-delay: 120ms;
}

.hero-slide.is-active p:not(.eyebrow) {
  animation-delay: 200ms;
}

.hero-slide.is-active .quote-slider,
.hero-slide.is-active .visit-timing-box {
  animation-delay: 260ms;
}

.hero-slide.is-active .hero-actions,
.hero-slide.is-active .hero-actions-centered {
  animation-delay: 320ms;
}

.hero-slide.is-active .rating-row,
.hero-slide.is-active .rating-row-centered,
.hero-slide.is-active .visit-phone-strip {
  animation-delay: 380ms;
}

.hero-slide.is-active .hero-media {
  animation: heroMediaZoomIn 800ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroFadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroMediaZoomIn {
  from {
    opacity: 0;
    transform: scale(0.93) translateY(14px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-grid {
  height: 100%;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 12px;
  color: #141414;
  font-size: 14px;
  line-height: 1.55;
}

.hero-search {
  width: min(560px, 100%);
  min-height: 118px;
  margin: 12px 0 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.quote-slider {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 10px auto;
  padding: 10px 18px;
  border-left: 3px solid var(--orange);
  border-radius: 12px;
  background: rgba(255, 247, 235, 0.85);
  box-shadow: 0 4px 16px rgba(234, 90, 5, 0.08);
  overflow: hidden;
}

.quote-slider::before,
.quote-slider::after {
  display: none;
}

.quote-track {
  display: flex;
  width: 100%;
  animation: quoteSlide 20s cubic-bezier(0.72, 0, 0.28, 1) infinite;
}

.quote-slider:hover .quote-track {
  animation-play-state: paused;
}

.quote-slide {
  min-width: 100%;
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4px 8px;
  box-sizing: border-box;
}

.quote-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  width: 100%;
}

.quote-content p {
  margin: 0;
  max-width: 100%;
  color: var(--ink);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.42;
  text-align: center;
}

.quote-content cite {
  margin-top: 2px;
  color: var(--orange-dark);
  font-size: clamp(0.74rem, 1vw, 0.85rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.rating-row {
  position: relative;
  width: min(700px, 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  padding: 16px 0 0 8px;
  color: #121212;
  font-size: 11px;
  font-weight: 400;
}

.rating-row::before {
  position: absolute;
  top: 0;
  left: 6px;
  right: 0;
  height: 1px;
  background: #cccccc;
  content: "";
}

.rating-row strong,
.stars {
  color: #f5a915;
}

.hero-media {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: end center;
  align-self: end;
  isolation: isolate;
  overflow: visible;
}

.doctor-cutout {
  position: relative;
  z-index: 2;
  width: min(320px, 78%);
  height: auto;
  display: grid;
  align-items: end;
  overflow: visible;
}

.doctor-cutout img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-rings {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 1;
  width: min(430px, 108%);
  height: min(430px, 108vw);
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, transparent 0 39%, rgba(246, 216, 139, 0.58) 40% 46%, transparent 47% 57%, rgba(246, 216, 139, 0.52) 58% 64%, transparent 65% 74%, rgba(246, 216, 139, 0.42) 75% 81%, transparent 82%);
  animation: softPulse 5s ease-in-out infinite;
}

.flower-cluster {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 210px;
  height: 220px;
}

.original-hero-slide .hero-grid {
  grid-template-columns: minmax(0, 560px) minmax(320px, 1fr);
  gap: 34px;
}

.original-hero-slide .hero-copy {
  align-self: center;
}

.original-hero-slide h1 {
  max-width: 680px;
}

.original-hero-slide .hero-copy p:not(.eyebrow) {
  max-width: 520px;
  font-size: 13.5px;
  line-height: 1.58;
}

.original-hero-slide .hero-search,
.original-hero-slide .rating-row {
  width: min(560px, 100%);
}

.original-hero-slide .hero-search {
  min-height: 118px;
}

.original-hero-slide .hero-media {
  min-height: 100%;
  margin-top: 0;
}

.original-hero-slide .doctor-cutout {
  width: min(330px, 78%);
}

.original-hero-slide .hero-rings {
  width: min(430px, 108%);
  height: min(430px, 108vw);
}

.original-hero-slide .flower-cluster {
  width: 168px;
}

.promo-hero-slide {
  grid-area: hero-slide;
  position: relative;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: inherit;
  display: grid;
  padding: clamp(26px, 4vw, 46px) max(20px, calc((100% - 1280px) / 2)) 0;
  overflow: hidden;
  background: #fffbf3;
}

.promo-hero-slide .hero-grid {
  min-height: calc(100vh - 141px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.clinic-media {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.clinic-img-card {
  position: relative;
  width: min(470px, 92%);
  height: clamp(340px, 50vh, 440px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.clinic-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.promo-hero-slide .hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 34px 20px 70px 0;
}

.original-hero-slide h1,
.promo-hero-slide h1 {
  max-width: 680px;
  color: #d45505;
  font-size: clamp(2.5rem, 3.2vw, 3.1rem);
  font-weight: 500;
  line-height: 1.08;
  text-transform: none;
}

.promo-hero-slide .hero-copy p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 16px;
  color: #121212;
  font-size: 14.5px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.hero-actions .btn {
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
  white-space: nowrap;
}

.hero-actions .btn i {
  width: 16px;
  height: 16px;
  font-size: 13px;
}

.hero-actions .btn-orange {
  background: #d45505;
}

.hero-actions .btn-orange i {
  transform: rotate(-45deg);
}

.promo-hero-slide .rating-row {
  width: min(590px, 100%);
  margin-top: 26px;
  padding: 24px 0 0;
  gap: 6px;
  color: #111111;
  font-size: 12px;
}

.promo-hero-slide .rating-row::before {
  left: 0;
  background: #d0cec8;
}

.promo-hero-slide .rating-row strong {
  font-weight: 400;
}

.promo-hero-slide .stars {
  display: inline-flex;
  gap: 1px;
  color: #f3a30f;
  font-size: 15px;
  line-height: 1;
}

.hero-image {
  position: relative;
  min-height: 100%;
  display: grid;
  align-items: end;
  justify-items: center;
  isolation: isolate;
}

.diabetes-slide img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(650px, 48vw);
  max-width: none;
  height: calc(100% - 12px);
  object-fit: contain;
  object-position: right bottom;
}

.clinic-slide {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 20px 0 0;
}

.clinic-slide img {
  width: min(540px, 96%);
  height: min(460px, 72vh);
  max-height: 520px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

/* =========================
   DIABETES HERO SLIDE (SLIDE 2)
   ========================= */
.diabetes-hero-slide {
  grid-area: hero-slide;
  position: relative;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: inherit;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 4vw, 50px) max(20px, calc((100% - 1280px) / 2));
  background-image: url('img/diabetic-banner.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  isolation: isolate;
  overflow: hidden;
}

.diabetes-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12, 10, 15, 0.62) 0%, rgba(24, 16, 12, 0.72) 100%);
  pointer-events: none;
}

.diabetes-hero-slide .hero-copy-centered {
  position: relative;
  z-index: 3;
  width: min(860px, 94%);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.diabetes-hero-slide .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(234, 90, 5, 0.22);
  border: 1px solid rgba(255, 120, 30, 0.6);
  color: #ff9d5c;
  font-size: 14px;
  font-weight: 750;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.diabetes-hero-slide h1 {
  max-width: 820px;
  margin: 0 auto;
  color: #ff7a18;
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  font-weight: 850;
  line-height: 1.14;
  text-align: center;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.7);
}

.diabetes-hero-slide p:not(.eyebrow) {
  max-width: 740px;
  margin: 20px auto 0;
  color: #ffffff;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.65;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-actions-centered {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.hero-actions-centered .btn {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-actions-centered .btn-outline {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-actions-centered .btn-outline:hover {
  background: #ffffff;
  color: var(--orange-dark);
}

.rating-row-centered {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  width: min(650px, 100%);
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   Slide 4 - Visit Hero Slide (Clinic Entrance & Schedule)
   ========================================================================== */
.visit-hero-slide {
  grid-area: hero-slide;
  position: relative;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: inherit;
  box-sizing: border-box;
  display: grid;
  align-items: center;
  padding: clamp(16px, 2.5vh, 32px) max(20px, calc((100% - 1280px) / 2)) 0;
  overflow: hidden;
  background: linear-gradient(135deg, #fffdfa 0%, #fbf4ea 50%, #f4e9da 100%);
}

.mambalam-hero-slide {
  background: linear-gradient(135deg, #fffef9 0%, #fdf5e8 50%, #f9e9d2 100%);
}

.anna-nagar-hero-slide {
  background: linear-gradient(135deg, #fcfdfe 0%, #f1f6fa 50%, #e4ecf4 100%);
}

.visit-hero-slide .hero-grid {
  height: 100%;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.visit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234, 90, 5, 0.1);
  color: var(--orange-dark, #c84900);
  border: 1px solid rgba(234, 90, 5, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.visit-hero-slide h1 {
  color: var(--orange-dark, #d45505);
  font-size: clamp(2.2rem, 3.1vw, 2.9rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 12px;
}

.visit-hero-slide p:not(.eyebrow) {
  max-width: 600px;
  color: #2d3748;
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 18px;
}

/* Consultation Hours Box */
.visit-timing-box {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(234, 90, 5, 0.2);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  max-width: 580px;
}

.timing-badge-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange, #ea5a05);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(234, 90, 5, 0.22);
}

.timing-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.timing-slot {
  background: #fdfbf7;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.timing-slot:hover {
  border-color: rgba(234, 90, 5, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(234, 90, 5, 0.08);
}

.slot-label {
  display: block;
  font-size: 11.5px;
  color: #718096;
  font-weight: 600;
  margin-bottom: 4px;
}

.slot-label i {
  color: var(--orange);
  margin-right: 4px;
}

.slot-time {
  display: block;
  font-size: 13px;
  color: #1a202c;
  font-weight: 700;
}

.timing-holiday .slot-label i {
  color: #e53e3e;
}

.timing-holiday .slot-time {
  color: #e53e3e;
}

/* Phone Contact Strip */
.visit-phone-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 16px;
  background: rgba(15, 76, 129, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(15, 76, 129, 0.14);
  color: #1a365d;
  font-size: 13.5px;
  max-width: 580px;
}

.visit-phone-strip i {
  color: var(--orange, #ea5a05);
  font-size: 16px;
}

.visit-phone-strip a {
  color: #1a365d;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.visit-phone-strip a:hover {
  color: var(--orange, #ea5a05);
  text-decoration: underline;
}

/* Dual Image Media Showcase */
.visit-media {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
}

.dual-clinic-card {
  position: relative;
  width: min(480px, 100%);
  height: clamp(380px, 58vh, 500px);
}

/* Primary Card (Gate Photo) */
.visit-img-primary {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 82%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.15);
  border: 4px solid #ffffff;
  z-index: 1;
  transition: transform 0.35 ease, z-index 0.35 ease;
}

.visit-img-primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.dual-clinic-card:hover .visit-img-primary img {
  transform: scale(1.04);
}

/* Secondary Card (Board Photo) */
.visit-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 64%;
  height: 68%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  border: 4px solid #ffffff;
  z-index: 2;
  transition: transform 0.35s ease;
}

.visit-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.dual-clinic-card:hover .visit-img-secondary img {
  transform: scale(1.04);
}

.visit-img-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(234, 90, 5, 0.25);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--orange);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 200ms ease;
}

.hero-arrow:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 28px rgba(234, 90, 5, 0.35);
}

.hero-arrow-prev {
  left: 24px;
}

.hero-arrow-next {
  right: 24px;
}

/* Slider Dots */
.hero-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-slider-dots button {
  position: relative;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid rgba(234, 90, 5, 0.5);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: all 220ms ease;
}

.hero-slider-dots button::before {
  content: "";
  position: absolute;
  inset: -10px;
}

.hero-slider-dots button.is-active {
  width: 32px;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 12px rgba(234, 90, 5, 0.6);
}

.about.section-soft {
  width: 100%;
  margin-bottom: 72px;
  padding: 72px 0;
  border-radius: 0;
  background: var(--white);
  overflow: hidden;
}

.about .about-grid {
  width: min(1400px, 100%);
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(470px, 0.95fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  padding: 20px 40px;
}

.about-copy {
  position: relative;
  align-self: center;
}

.about-copy .eyebrow {
  margin: 0;
  color: #e85a05;
  font-size: 24px;
  line-height: 1;
}

.about-copy h2 {
  max-width: 610px;
  margin: 18px 0 12px;
  color: #000000;
  font-size: clamp(2.25rem, 3vw, 3.05rem);
  font-weight: 600;
}

.about-copy > p:not(.eyebrow):not(.about-brandline) {
  max-width: 620px;
  margin-bottom: 12px;
  color: #101010;
  font-size: 14.5px;
  line-height: 1.58;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.about-brandline {
  display: none;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 34px 0 42px;
}

.stats-row article {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 20px 18px;
  border: 1px solid #f2dfcf;
  border-radius: 10px;
  background: #efebeb;
  cursor: default;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.stats-row i {
  width: auto;
  height: auto;
  color: #d45505;
  font-size: 42px;
  transition: color 220ms ease, transform 220ms ease;
}

.stats-row strong {
  display: block;
  margin: 16px 0 4px;
  color: #000000;
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  transition: color 220ms ease;
}

.stats-row small {
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  transition: color 220ms ease;
}

.stats-row article:hover {
  border-color: #823403;
  background: #d45505;
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(212, 85, 5, 0.22);
}

.stats-row article:hover i,
.stats-row article:hover strong,
.stats-row article:hover small {
  color: #ffffff;
}

.stats-row article:hover i {
  transform: translateY(-2px) scale(1.04);
}

.about .btn-orange {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: #d45505;
  box-shadow: 0 14px 28px rgba(212, 85, 5, 0.22);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.about .btn-orange:hover {
  background: #bf4300;
  box-shadow: 0 18px 34px rgba(191, 67, 0, 0.26);
}

.about .btn-orange i {
  display: none;
}

.about-media {
  position: relative;
  min-height: 540px;
  align-self: center;
}

.about-media .about-img {
  position: absolute;
  min-height: 0;
  object-fit: cover;
  box-shadow: none;
}

.about-media .about-img.primary {
  z-index: 3;
  left: 0;
  top: 128px;
  width: 290px;
  height: 260px;
  border: 5px solid #ffffff;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.about-media .about-img.secondary {
  z-index: 1;
  right: 24px;
  top: 0;
  width: 410px;
  height: 520px;
  border-radius: 26px;
  object-position: center;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
}

.experience-badge {
  position: absolute;
  left: 70px;
  bottom: 42px;
  z-index: 4;
  width: 172px;
  height: 172px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #e85a00;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  animation: circleBadgePulse 4.2s ease-in-out infinite;
}

.experience-badge::before {
  position: absolute;
  inset: 36px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  content: "";
}

.experience-badge::after {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(232, 90, 0, 0.24);
  border-radius: 50%;
  content: "";
  animation: circleBadgeRing 2.8s ease-out infinite;
}

.experience-ring {
  position: absolute;
  inset: 11px;
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  overflow: visible;
  animation: aboutBadgeSpin 22s linear infinite;
}

.experience-ring text {
  fill: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.experience-core {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 3px;
  animation: aboutCoreFloat 3.6s ease-in-out infinite;
}

.experience-core strong {
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 0.92;
}

.experience-core small {
  color: #ffe58b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

/* ==========================================================================
   SURGICAL DISEASES (NON-SURGICAL) FEATURE SECTION
   ========================================================================== */
.surgical-section {
  width: 100%;
  margin-bottom: 72px;
  padding: 72px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.surgical-grid {
  width: min(1400px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  padding: 20px 40px;
}

.surgical-copy h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  color: var(--navy);
  margin: 14px 0 18px;
  line-height: 1.22;
  font-weight: 700;
}

.surgical-copy > p {
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

.surgical-conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.surgical-condition-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 220ms ease;
}

.surgical-condition-card:hover {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: rgba(234, 90, 5, 0.35);
  box-shadow: 0 10px 26px rgba(234, 90, 5, 0.12);
}

.surgical-condition-card .condition-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(234, 90, 5, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 200ms ease;
}

.surgical-condition-card:hover .condition-icon {
  background: var(--orange);
  color: #ffffff;
}

.surgical-condition-card .condition-info h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}

.surgical-condition-card .condition-info p {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.42;
  margin: 0;
}

.surgical-perks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 32px;
  padding: 14px 20px;
  background: rgba(234, 90, 5, 0.06);
  border: 1px solid rgba(234, 90, 5, 0.18);
  border-radius: 14px;
}

.surgical-perks-row span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.surgical-perks-row span i {
  color: var(--orange);
}

.surgical-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Surgical Media Styling */
.surgical-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.surgical-image-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.surgical-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.14);
}

.surgical-img-sub {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 210px;
  height: 165px;
  object-fit: cover;
  border-radius: 18px;
  border: 5px solid #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.surgical-floating-card {
  position: absolute;
  top: 24px;
  right: -24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(234, 90, 5, 0.3);
  padding: 12px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.surgical-floating-card .floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(234, 90, 5, 0.4);
}

.surgical-floating-card .floating-text strong {
  display: block;
  font-size: 0.94rem;
  color: var(--navy);
  font-weight: 700;
}

.surgical-floating-card .floating-text small {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
}

/* Responsive Surgical Section */
@media (max-width: 1024px) {
  .surgical-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 20px;
  }

  .surgical-image-stack {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .surgical-section {
    padding: 48px 0;
  }

  .surgical-conditions-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .surgical-img-sub {
    width: 150px;
    height: 120px;
    bottom: -16px;
    left: -12px;
  }

  .surgical-floating-card {
    right: 0px;
    top: 12px;
    padding: 8px 12px;
  }

  .surgical-actions {
    flex-direction: column;
    width: 100%;
  }

  .surgical-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.treatments.section-card {
  width: min(1330px, calc(100% - 32px));
  padding: 52px 44px 30px;
  border-radius: 44px;
  background: var(--peach);
  overflow: hidden;
}

.treatments > .shell {
  width: 100%;
}

.treatments .section-heading {
  margin-bottom: 42px;
}

.treatments .section-heading h2 {
  color: #d45505;
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.08;
}

.treatments .section-heading p {
  max-width: 620px;
  margin: 10px auto 0;
  color: #000000;
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  font-weight: 500;
  line-height: 1.45;
}

.treatment-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.treatment-grid {
  display: flex;
  transform: translateX(0);
  transition: transform 650ms ease;
  will-change: transform;
}

.treatment-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.treatment-nav {
  align-items: center;
  background: #d95a00;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(106, 42, 0, 0.2);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 18px;
  height: 48px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
  width: 48px;
  z-index: 4;
}

.treatment-nav:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-50%) scale(1.06);
}

.treatment-nav:focus-visible {
  outline: 3px solid rgba(217, 90, 0, 0.3);
  outline-offset: 4px;
}

.treatment-nav-prev {
  left: 10px;
}

.treatment-nav-next {
  right: 10px;
}

.treatment-card {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(155deg, #ffffff 0%, #fffcf8 100%);
  border: 1px solid rgba(234, 90, 5, 0.16);
  box-shadow: 0 10px 28px rgba(55, 32, 14, 0.05);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 280ms ease, border-color 280ms ease;
}

.treatment-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ea5a05, #ff9e59);
  opacity: 0;
  content: "";
  transition: opacity 280ms ease;
}

.treatment-card:hover {
  transform: translateY(-8px);
  border-color: rgba(234, 90, 5, 0.38);
  box-shadow: 0 24px 50px rgba(212, 85, 5, 0.16);
}

.treatment-card:hover::before {
  opacity: 1;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(234, 90, 5, 0.14);
}

.icon-pill {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #ea5a05, #ff7e33);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(234, 90, 5, 0.26);
  transition: transform 240ms ease;
}

.treatment-card:hover .icon-pill {
  transform: scale(1.06) rotate(-3deg);
}

.icon-pill i {
  color: #ffffff;
  font-size: 22px;
}

.card-title-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.card-top h3 {
  margin: 0;
  color: #111111;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.22;
}

.card-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.card-arrow-btn,
.card-top a {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-left: auto;
  border-radius: 50%;
  background: #fff7eb;
  border: 1px solid rgba(234, 90, 5, 0.2);
  color: var(--orange);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.card-arrow-btn i,
.card-top a i {
  font-size: 14px;
  transition: transform 220ms ease;
}

.card-arrow-btn:hover,
.card-top a:hover,
.treatment-card:hover .card-arrow-btn,
.treatment-card:hover .card-top a {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
  box-shadow: 0 8px 18px rgba(234, 90, 5, 0.3);
}

.treatment-card:hover .card-arrow-btn i,
.treatment-card:hover .card-top a i {
  transform: translateX(3px);
}

.card-desc,
.treatment-card p {
  min-height: 84px;
  margin: 16px 0 18px;
  color: #3b3b3b;
  font-size: 13.2px;
  font-weight: 450;
  line-height: 1.58;
}

.treatment-card-img-wrap {
  position: relative;
  margin-top: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(55, 32, 14, 0.08);
}

.treatment-card-img-wrap img,
.treatment-card img {
  width: 100%;
  height: 175px;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 420ms ease;
}

.treatment-card:hover .treatment-card-img-wrap img,
.treatment-card:hover img {
  transform: scale(1.06);
}

.img-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 99px;
  background: rgba(19, 14, 10, 0.68);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
}

.img-badge i {
  color: #25d366;
  font-size: 11px;
}

.treatment-dots,
.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-dots {
  gap: 9px;
  margin: 34px 0 14px;
}

.treatment-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  transition: background 220ms ease, transform 220ms ease;
}

.treatment-dots span.is-active {
  background: #e85a05;
  transform: scale(1.16);
}

.treatment-note {
  max-width: 920px;
  margin: 0 auto;
  color: #000000;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.58;
}

.diabetes.section {
  padding: 0 40px 20px;
  background: #ffffff;
}

.split-grid,
.doctor-grid,
.approach-grid,
.appointment-grid,
.faq-grid {
  display: grid;
  align-items: center;
}

.diabetes .split-grid {
  width: min(1244px, 100%);
  grid-template-columns: minmax(540px, 0.98fr) minmax(560px, 1.02fr);
  gap: 28px;
  align-items: start;
}
.diabetes .shell .reveal p {
  text-align: justify;
}
.diabetes .shell .reveal .eyebrow{
  text-align: start;
  font-size: 44px;
  font-weight: 500;
}

.diabetes .eyebrow {
  margin: 14px 0 16px;
  color: #d45505;
  font-size: clamp(2.25rem, 3.2vw, 3.15rem);
  font-weight: 800;
  line-height: 1;
}

.diabetes p:not(.eyebrow) {
  max-width: 625px;
  color: #111111;
  font-size: 16px;
  line-height: 1.52;
}

.feature-grid {
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.feature-grid span {
  min-height: 125px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 16px 10px;
  border-radius: 14px;
  background: #fdf2ea;
  border: 1px solid rgba(232, 90, 5, 0.12);
  color: #111111;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.feature-grid i {
  color: #e85a05;
  font-size: 30px;
  transition: transform 0.35s ease, color 0.35s ease;
}

.feature-grid span:hover {
  background: #e85a05;
  color: #ffffff;
  border-color: #e85a05;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 14px 28px rgba(232, 90, 5, 0.28);
}

.feature-grid span:hover i {
  color: #ffffff;
  transform: scale(1.2) rotate(-5deg);
}

.diabetes-media {
  position: relative;
  min-height: 540px;
  display: block;
  overflow: visible;
}

.diabetes-media img {
  position: absolute;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s ease;
}

.diabetes-media img:first-child {
  z-index: 3;
  left: 10px;
  top: 100px;
  width: 310px;
  height: 380px;
  border-radius: 20px;
  border: 4px solid #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  animation: floatSlow 6s ease-in-out infinite;
}

.diabetes-media img:first-child:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 24px 50px rgba(232, 90, 5, 0.25);
}

.diabetes-media img:nth-child(2) {
  z-index: 1;
  right: 0;
  top: 0;
  width: 380px;
  height: 520px;
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  animation: floatSlow 8s ease-in-out infinite reverse;
}

.diabetes-floating-badge {
  position: absolute;
  bottom: 30px;
  right: 25px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 90, 5, 0.25);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  animation: pulseBadge 3.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.diabetes-floating-badge:hover {
  transform: scale(1.06);
}

.diabetes-floating-badge i {
  color: #e85a05;
  font-size: 26px;
}

.diabetes-floating-badge strong {
  display: block;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.diabetes-floating-badge small {
  color: #666666;
  font-size: 12px;
  font-weight: 500;
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulseBadge {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.03);
  }
}

.doctor {
  padding: 42px 0 34px;
}

.doctor-grid {
  grid-template-columns: minmax(330px, 0.68fr) minmax(0, 1.32fr);
  gap: 60px;
}

.doctor-photo {
  min-height: 410px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, #dbeff4, #f8fbfd);
}

.doctor-photo img {
  height: 410px;
  min-height: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center bottom;
  box-shadow: none;
}

.doctor-copy h2,
.approach h2,
.appointment-card h2 {
  margin-bottom: 12px;
}

.doctor-copy p:not(.eyebrow) {
  margin-bottom: 13px;
  color: #333333;
}

.approach.section-soft {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: clamp(38px, 4.6vw, 56px) clamp(28px, 4.1vw, 50px);
  border: 1.4px solid #151515;
  border-radius: 46px;
  background: #ffffff;
  overflow: visible;
}

.approach-grid {
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
  gap: clamp(32px, 4.4vw, 56px);
}

.approach-copy {
  position: relative;
  z-index: 2;
}

.approach .eyebrow {
  margin-bottom: 8px;
  color: #d45505;
  font-size: clamp(1.08rem, 1.55vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

.approach h2 {
  max-width: 650px;
  color: #050505;
  font-size: clamp(2.15rem, 3.25vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
}

.approach-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 14px;
  color: #111111;
  font-size: 14.5px;
  line-height: 1.38;
}

.approach-list {
  position: relative;
  display: grid;
  gap: 22px;
  margin: 28px 0 30px 36px;
  padding-left: 26px;
}

.approach-list::before {
  position: absolute;
  left: 0;
  top: 8px;
  width: 1px;
  height: 0;
  background: #707070;
  content: "";
  transition: height 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.approach-copy.in .approach-list::before {
  height: calc(100% - 16px);
}

.approach-list article {
  position: relative;
  opacity: 0;
  transform: translateX(-18px);
}

.approach-list article::before {
  position: absolute;
  left: -31px;
  top: 7px;
  width: 9px;
  height: 9px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #d45505;
  box-shadow: 0 0 0 4px rgba(212, 85, 5, 0.16);
  content: "";
  transform: scale(0);
}

.approach-copy.in .approach-list article {
  animation: approachStepIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.approach-copy.in .approach-list article::before {
  animation: approachDotPop 420ms ease both;
}

.approach-copy.in .approach-list article:nth-child(1),
.approach-copy.in .approach-list article:nth-child(1)::before {
  animation-delay: 120ms;
}

.approach-copy.in .approach-list article:nth-child(2),
.approach-copy.in .approach-list article:nth-child(2)::before {
  animation-delay: 260ms;
}

.approach-copy.in .approach-list article:nth-child(3),
.approach-copy.in .approach-list article:nth-child(3)::before {
  animation-delay: 400ms;
}

.approach-list strong {
  display: block;
  color: #050505;
  font-size: clamp(1.22rem, 1.85vw, 1.68rem);
  font-weight: 700;
  line-height: 1.12;
}

.approach-list p {
  max-width: 640px;
  margin-top: 9px;
  color: #111111;
  font-size: 14px;
  line-height: 1.36;
}

.approach-cta {
  min-height: 45px;
  padding: 0 16px 0 18px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(212, 85, 5, 0.22);
  font-size: 18px;
  font-weight: 600;
}

.approach-cta i {
  width: 16px;
  height: 16px;
  transform: rotate(-45deg);
}

.approach-media {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(532px, 100%);
  overflow: visible;
  filter: drop-shadow(0 18px 20px rgba(55, 32, 14, 0.12));
  animation: approachImageFloat 5s ease-in-out infinite;
}

.approach-media img {
  width: 100%;
  height: clamp(360px, 49vh, 505px);
  min-height: 0;
  border-radius: 95px 0 95px 95px;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
  transition: transform 700ms ease;
}

.approach.section-soft:hover .approach-media img {
  transform: scale(1.035);
}

.approach-flower {
  position: absolute;
  right: -64px;
  bottom: -30px;
  z-index: 3;
  width: min(210px, 18vw);
  height: auto;
  opacity: 0.72;
  pointer-events: none;
  animation: approachFlowerDrift 5.8s ease-in-out infinite;
}

.appointment {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(28px, 4vh, 44px) 0;
  overflow: hidden;
}

.appointment-grid {
  grid-template-columns: minmax(430px, 0.88fr) minmax(610px, 1.12fr);
  gap: 0;
  align-items: start;
}

.clinic-photo {
  position: relative;
}

.appointment-clinic-card {
  position: relative;
  width: 100%;
  border-radius: 36px 36px 0 36px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.appointment-clinic-card .clinic-primary-img {
  height: min(72vh, 585px);
  width: 100%;
  min-height: 0;
  border-radius: 36px 36px 0 36px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.appointment-clinic-card .clinic-overlay-img {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 18px;
  border: 4px solid #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  z-index: 3;
  transition: transform 220ms ease;
}

.appointment-clinic-card:hover .clinic-overlay-img {
  transform: scale(1.04);
}

.clinic-photo-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(234, 90, 5, 0.28);
  padding: 10px 16px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.clinic-photo-badge i {
  font-size: 22px;
  color: var(--orange);
}

.clinic-photo-badge strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 700;
}

.clinic-photo-badge small {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.appointment-content {
  position: relative;
  z-index: 2;
  margin-left: clamp(-190px, -13vw, -120px);
}

.appointment-heading {
  max-width: 610px;
  margin: 0 0 clamp(32px, 5vh, 48px) clamp(190px, 15vw, 220px);
}

.appointment-heading .eyebrow {
  margin-bottom: 14px;
  color: #d45505;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

.appointment-heading h2 {
  color: #050505;
  font-size: clamp(2.1rem, 3.3vw, 3.1rem);
  font-weight: 400;
  line-height: 1.08;
}

.appointment-heading h2 strong {
  font-weight: 700;
}

.appointment-card {
  position: relative;
  min-height: min(62vh, 545px);
  padding: clamp(34px, 4.6vh, 50px) clamp(28px, 3.8vw, 42px) clamp(20px, 3vh, 30px) clamp(144px, 14vw, 190px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(39, 65, 84, 0.12);
  overflow: hidden;
}

.form-watermark {
  position: absolute;
  left: 34px;
  top: 50%;
  color: #edf1f5;
  font-size: clamp(5.4rem, 8.8vw, 8.5rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: 0.04em;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.appointment-card form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(14px, 2.1vh, 22px);
}

.appointment-card input,
.appointment-card select,
.appointment-card textarea {
  width: 100%;
  min-height: clamp(54px, 7.1vh, 80px);
  border: 0;
  border-radius: 9px;
  outline: 0;
  background: #e4ebf0;
  padding: 0 20px;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.35vw, 1.22rem);
}

.appointment-card textarea {
  min-height: clamp(110px, 14.2vh, 148px);
  padding-top: 20px;
  resize: vertical;
}

.appointment-card .btn {
  justify-self: start;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  font-size: clamp(0.98rem, 1.4vw, 1.25rem);
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 44px);
}

.form-status {
  min-height: 20px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.blog {
  padding: clamp(44px, 6vh, 72px) 0;
  background: #ffffff;
  overflow: hidden;
}

.blog .shell {
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
}

.blog-title {
  text-align: center;
  margin-bottom: clamp(28px, 4.5vh, 48px);
}

.blog-title .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #d45505;
  font-size: 15px;
  font-weight: 700;
}

.blog-title h2 {
  color: #050505;
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: stretch;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(232, 90, 5, 0.18);
  border-color: rgba(232, 90, 5, 0.35);
}

.blog-img-wrap {
  position: relative;
  width: 100%;
  height: 290px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.06);
}

.blog-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(232, 90, 5, 0.92);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.blog-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.blog-copy h3 {
  color: #111111;
  font-size: clamp(1.22rem, 1.65vw, 1.45rem);
  font-weight: 700;
  line-height: 1.3;
}

.blog-copy p {
  color: #333333;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.faq.section-soft {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: clamp(42px, 6vh, 64px) clamp(34px, 4.2vw, 58px);
  margin-top: 50px;
  background: #fff3ea;
  overflow: hidden;
}

.faq-grid {
  width: 100%;
  grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
}

.faq-copy h2 {
  max-width: 480px;
  font-weight: 600;
}

.faq-copy p:not(.eyebrow) {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.62;
}

.faq-cta {
  width: min(390px, 100%);
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(234, 90, 5, 0.14);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(212, 85, 5, 0.1);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.faq-cta:hover {
  border-color: rgba(234, 90, 5, 0.34);
  box-shadow: 0 20px 42px rgba(212, 85, 5, 0.16);
  transform: translateY(-4px);
}

.faq-cta > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(234, 90, 5, 0.1);
  color: var(--orange);
  font-size: 20px;
}

.faq-cta span,
.faq-cta strong,
.faq-cta a {
  display: block;
}

.faq-cta span {
  color: #5f6063;
  font-size: 13px;
  line-height: 1.4;
}

.faq-cta strong {
  margin: 8px 0 10px;
  color: #121212;
  font-size: 1.08rem;
  font-weight: 700;
}

.faq-cta a {
  width: fit-content;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 900;
  transition: color 220ms ease;
}

.faq-cta a:hover {
  color: #b94703;
}

.faq-list > .eyebrow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: #ea5a05;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.faq-list details {
  border-bottom: 1px solid rgba(212, 85, 5, 0.18);
  opacity: 0;
  transform: translateY(18px);
}

.faq-list summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: #1f1f1f;
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
  transition: color 220ms ease;
}

.faq-list summary::after {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(234, 90, 5, 0.1);
  color: var(--orange);
  content: "+";
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-list details p {
  max-width: 680px;
  margin-bottom: 18px;
  color: #555555;
  font-size: 14px;
  line-height: 1.64;
}

.faq-accordion-ready details {
  overflow: hidden;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.faq-accordion-ready details summary {
  user-select: none;
}

.faq-accordion-ready details summary::after {
  transition: transform 220ms ease, color 220ms ease;
}

.faq-accordion-ready details.is-open summary {
  color: var(--orange);
}

.faq-accordion-ready details.is-open summary::after {
  background: var(--orange);
  color: #ffffff;
  content: "-";
  transform: rotate(180deg);
}

.faq-accordion-ready details p {
  max-height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: max-height 320ms ease, opacity 240ms ease, transform 280ms ease, margin 240ms ease;
}

.faq-accordion-ready details.is-open p {
  max-height: calc(var(--faq-answer-height, 80px) + 18px);
  margin: 0 0 16px;
  opacity: 1;
  transform: translateY(0);
}

.faq-list.in details {
  animation: faqItemIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.faq-list.in details:nth-of-type(1) { animation-delay: 80ms; }
.faq-list.in details:nth-of-type(2) { animation-delay: 160ms; }
.faq-list.in details:nth-of-type(3) { animation-delay: 240ms; }
.faq-list.in details:nth-of-type(4) { animation-delay: 320ms; }
.faq-list.in details:nth-of-type(5) { animation-delay: 400ms; }

@keyframes faqItemIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-band {
  padding: 18px 0 52px;
}

.cta-inner {
  position: relative;
  
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(360px, 1fr) minmax(260px, 0.86fr);
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  min-height: 320px;
  padding: 28px clamp(28px, 4vw, 52px) 0;
  border-radius: 36px;
  background: #e95a00;
  color: #ffffff;
  overflow: hidden;
}

.cta-inner h2 {
  color: #ffffff;
  font-size: clamp(2.25rem, 2.2vw, 3.2rem);
  font-weight: 600;
  line-height: 0.98;
  text-align: center;
}

.cta-inner .btn {
  min-height: 44px;
  margin: 26px auto 0;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 1.02rem;
  font-weight: 500;
  box-shadow: none;
}

.cta-bottles {
  width: min(330px, 100%);
  max-height: 235px;
  justify-self: start;
  align-self: end;
  margin: 0 0 -4px -24px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(71, 41, 8, 0.18));
  animation: ctaBottleFloat 5.4s ease-in-out infinite;
}

.cta-doctor-wrap {
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: end center;
  min-height: inherit;
}

.cta-doctor-wrap img {
  position: relative;
  z-index: 2;
  width: min(286px, 100%);
  height: auto;
  max-height: 300px;
  border-radius: 0;
  object-fit: contain;
  object-position: center bottom;
  margin: 0 -10px 0 0;
  animation: ctaDoctorFloat 5.8s ease-in-out infinite;
}

.cta-rings {
  display: none;
}

.testimonials {
  padding: 8px 0 46px;
}

.testimonials .section-heading h2 {
  max-width: 620px;
  margin: 0 auto;
  color: #111111;
}

.testimonials .section-heading p:last-child {
  color: #5e5e5e;
  font-weight: 400;
}

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

.testimonial-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid #ededed;
  border-radius: 9px;
  background: #ffffff;
  box-shadow: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.testimonial-card p {
  min-height: 120px;
  margin: 10px 0 16px;
  color: #333333;
  font-size: 13.5px;
  line-height: 1.68;
}

.testimonial-card div {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #dcdcdc;
  padding-top: 10px;
}

.testimonial-card img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card strong {
  font-size: 10px;
}

.slider-dots {
  gap: 5px;
  margin-top: 16px;
}

.slider-dots span {
  width: 6px;
  height: 6px;
  border: 1px solid var(--orange);
  border-radius: 50%;
}

.slider-dots span:nth-child(2) {
  background: var(--orange);
}

.footer {
  position: relative;
  padding: 0 0 28px;
}

.footer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) 0.6fr 0.75fr 1.1fr;
  gap: 44px;
  padding: 32px 38px;
  border: 1px solid #eeeeee;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: none;
}

.footer-brand {
  align-items: flex-start;
  margin-bottom: 18px;
}

.footer-brand .brand-mark {
  width: 104px;
  height: 104px;
}

.footer-brand .brand-copy {
  display: none;
}

.footer-card > div:first-child p {
  max-width: 360px;
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 1.06rem;
  font-weight: 750;
}

.footer-card a {
  display: block;
  margin: 10px 0;
  color: #1e1e1e;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.35;
  transition: color 220ms ease, transform 220ms ease;
}

.footer-card a:hover {
  color: var(--orange);
  transform: translateX(3px);
}

.footer-brand:hover {
  transform: none;
}

.footer p {
  margin-bottom: 16px;
  color: #333333;
  font-size: 0.98rem;
  line-height: 1.7;
}

.socials {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  margin-top: 18px !important;
}

.socials a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 10px !important;
  background: var(--ink) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
  transition: transform 200ms ease, background-color 200ms ease, box-shadow 200ms ease !important;
}

.socials a:hover {
  background: var(--orange) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 18px rgba(234, 90, 5, 0.28) !important;
}

.socials a i,
.socials i {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-size: 16px !important;
  line-height: 1 !important;
  text-align: center !important;
}

.copyright {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px auto 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(234, 90, 5, 0.14);
  color: #222222;
  font-size: clamp(11.5px, 1.1vw, 13.5px);
  font-weight: 600;
  white-space: nowrap;
}

.copyright span {
  white-space: nowrap !important;
  flex-shrink: 0;
  color: #222222;
  font-weight: 600;
}

.copyright a {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--orange);
  font-weight: 800;
  text-decoration: none !important;
  transform: none !important;
  transition: color 180ms ease, opacity 180ms ease;
}

.copyright a:hover {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  text-decoration: none !important;
  color: #b94703;
  opacity: 0.85;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.float-btn {
  position: relative;
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  overflow: visible;
  pointer-events: auto;
  transform: none;
  box-shadow: 0 15px 35px rgba(18, 24, 31, 0.26);
  animation: floatPulse 2.4s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.float-btn::before {
  position: absolute;
  inset: -6px;
  border: 1px solid currentColor;
  border-radius: inherit;
  opacity: 0.28;
  content: "";
  animation: floatRing 2.4s ease-out infinite;
}

.float-btn:hover,
.float-btn:focus-visible {
  transform: translateY(-4px) scale(1.035);
}

.float-btn i {
  position: relative;
  z-index: 1;
  width: 21px;
  height: 21px;
  color: #ffffff;
  font-size: 21px;
}

.float-btn span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 2;
  display: block;
  max-width: none;
  padding: 6px 9px;
  border-radius: 7px;
  background: var(--ink);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  white-space: nowrap;
  transform: translateX(-50%) translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.float-btn:hover span,
.float-btn:focus-visible span {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.float-btn.whatsapp {
  background: #18b45b;
}

.float-btn.call {
  background: var(--orange);
  animation-delay: 0.35s;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.in:nth-child(2) {
  transition-delay: 80ms;
}

.reveal.in:nth-child(3) {
  transition-delay: 140ms;
}

.about-img,
.treatment-card img,
.blog-card img,
.clinic-photo img {
  transition: transform 450ms ease;
}

.about-media:hover .about-img,
.treatment-card:hover img,
.blog-card:hover img,
.clinic-photo:hover img,
.approach-media:hover img {
  transform: scale(1.025);
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.82;
    transform: translateX(-50%) scale(0.98);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.03);
  }
}

@keyframes softPulsePlain {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes ctaBottleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes ctaDoctorFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes aboutBadgeSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes aboutCoreFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.02);
  }
}

@keyframes circleBadgePulse {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  }

  50% {
    box-shadow: 0 16px 38px rgba(232, 90, 0, 0.34);
  }
}

@keyframes circleBadgeRing {
  0% {
    opacity: 0.65;
    transform: scale(0.92);
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes treatmentSlide {
  0%,
  16% {
    transform: translateX(0);
  }

  21%,
  37% {
    transform: translateX(-100%);
  }

  42%,
  58% {
    transform: translateX(-200%);
  }

  63%,
  79% {
    transform: translateX(-300%);
  }

  84%,
  100% {
    transform: translateX(-400%);
  }
}

@keyframes treatmentDot {
  0%,
  24% {
    background: #e85a05;
    transform: scale(1.16);
  }

  25%,
  100% {
    background: #ffffff;
    transform: scale(1);
  }
}

@keyframes quoteSlide {
  0%,
  13% {
    transform: translateX(0);
  }

  20%,
  33% {
    transform: translateX(-100%);
  }

  40%,
  53% {
    transform: translateX(-200%);
  }

  60%,
  73% {
    transform: translateX(-300%);
  }

  80%,
  100% {
    transform: translateX(-400%);
  }
}

@keyframes approachStepIn {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes approachDotPop {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@keyframes approachImageFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes approachFlowerDrift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes floatPulse {
  0%,
  100% {
    box-shadow: 0 15px 35px rgba(18, 24, 31, 0.24);
  }

  50% {
    box-shadow: 0 20px 42px rgba(18, 24, 31, 0.34);
  }
}

@keyframes floatRing {
  0% {
    opacity: 0.35;
    transform: scale(0.86);
  }

  100% {
    opacity: 0;
    transform: scale(1.42);
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  :root {
    --page-shell: min(100% - 44px, 1040px);
  }

  .nav {
    gap: 26px;
  }

  .nav-links {
    gap: clamp(14px, 2vw, 24px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  }

  .promo-hero-slide {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.92fr);
  }

  .diabetes .split-grid,
  .appointment-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  }

  .approach-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  }
}

@media (max-width: 980px) {
  :root {
    --page-shell: min(100% - 32px, 820px);
  }

  .top-strip-inner {
    min-height: 34px;
    gap: 12px;
  }

  .top-left,
  .top-contact {
    gap: 12px;
  }

  .nav {
    min-height: 72px;
    justify-content: space-between;
    gap: 16px;
  }

  body.menu-open {
    overflow: hidden !important;
    touch-action: none;
  }

  .site-header {
    z-index: 100;
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 64px;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    margin-right: auto;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
  }

  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    position: relative;
    z-index: 101;
    margin-left: auto;
    box-shadow: 0 4px 14px rgba(55, 32, 14, 0.08);
    transition: border-color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
  }

  .nav-toggle:hover {
    border-color: var(--orange);
    background: var(--soft);
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--ink);
    border-radius: 99px;
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background-color 200ms ease;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 24px 40px;
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: none;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.96) translateY(-12px);
    transition: opacity 280ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
                visibility 280ms ease;
    overflow-y: auto;
  }

  .menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1) translateY(0);
  }

  .nav-links a:not(.mobile-menu-cta) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    border-bottom: none;
    border-radius: 16px;
    color: var(--ink);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    transition: all 200ms ease;
  }

  .nav-links a:not(.mobile-menu-cta):hover,
  .nav-links a:not(.mobile-menu-cta).active {
    color: var(--orange);
    background: rgba(234, 90, 5, 0.08);
    transform: translateY(-2px);
  }

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

  .mobile-menu-cta {
    display: inline-flex !important;
    width: 100%;
    max-width: 320px;
    min-height: 48px;
    margin-top: 12px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(234, 90, 5, 0.28);
  }

  .nav-cta {
    display: none;
  }

  .section,
  .section-soft,
  .section-card {
    margin-bottom: 56px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  h1,
  .hero h1 {
    font-size: clamp(2.15rem, 6vw, 3rem);
  }

  h2,
  .section-heading h2,
  .blog-title h2,
  .testimonials .section-heading h2 {
    font-size: clamp(2rem, 5.5vw, 2.65rem);
  }

  p,
  .hero-copy p:not(.eyebrow),
  .about-copy p,
  .doctor-copy p,
  .diabetes p:not(.eyebrow),
  .faq-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.62;
  }

  .section-heading,
  .about-copy,
  .doctor-copy,
  .approach-copy,
  .appointment-heading,
  .blog-title,
  .faq-copy,
  .diabetes .split-grid > div:first-child {
    text-align: center;
  }

  .about-copy > p:not(.eyebrow):not(.about-brandline),
  .doctor-copy p,
  .approach-copy > p:not(.eyebrow),
  .approach-list p,
  .diabetes p:not(.eyebrow),
  .blog-card p,
  .faq-list details p {
    text-align: left;
  }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-slider {
    width: 100%;
    min-height: auto;
    margin-left: 0;
  }

  .hero-track,
  .hero-slide {
    min-height: auto;
  }

  .hero-slide {
    min-width: 100%;
    padding: 34px max(24px, calc((100vw - 820px) / 2)) 58px;
  }

  .hero-grid,
  .original-hero-slide .hero-grid,
  .promo-hero-slide .hero-grid,
  .visit-hero-slide .hero-grid,
  .about .about-grid,
  .diabetes .split-grid,
  .doctor-grid,
  .approach-grid,
  .appointment-grid,
  .faq-grid,
  .blog-grid,
  .testimonial-grid,
  .footer-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-grid,
  .original-hero-slide .hero-grid {
    min-height: auto;
  }

  .hero-copy,
  .hero-copy p:not(.eyebrow),
  .original-hero-slide h1,
  .promo-hero-slide h1,
  .promo-hero-slide .hero-copy p:not(.eyebrow) {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-search,
  .rating-row,
  .original-hero-slide .hero-search,
  .original-hero-slide .rating-row,
  .promo-hero-slide .rating-row {
    width: min(620px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .rating-row,
  .promo-hero-slide .rating-row {
    justify-content: center;
    flex-wrap: wrap;
    padding-left: 0;
  }

  .rating-row::before,
  .promo-hero-slide .rating-row::before {
    left: 0;
  }

  .quote-content p {
    max-width: 460px;
    text-align: center;
    font-size: clamp(1rem, 2.7vw, 1.2rem);
  }

  .blog-title h2 {
    font-size: clamp(1.48rem, 6vw, 1.92rem);
  }

  .cta-inner h2 {
    font-size: clamp(1.48rem, 6vw, 1.92rem);
  }

  .quote-content cite {
    font-size: clamp(0.76rem, 2vw, 0.88rem);
  }

  .hero-media,
  .original-hero-slide .hero-media {
    min-height: 320px;
    place-items: end center;
  }

  .doctor-cutout,
  .original-hero-slide .doctor-cutout {
    width: min(295px, 72%);
  }

  .flower-cluster,
  .original-hero-slide .flower-cluster {
    width: 120px;
    height: auto;
  }

  .promo-hero-slide,
  .visit-hero-slide {
    padding: 34px max(24px, calc((100vw - 820px) / 2)) 58px;
  }

  .visit-hero-slide h1,
  .visit-hero-slide p:not(.eyebrow) {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .visit-hero-slide .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .visit-hero-slide .hero-actions {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .visit-timing-box,
  .visit-phone-strip {
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
    width: 100%;
  }

  .promo-hero-slide .hero-grid,
  .visit-hero-slide .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }

  .clinic-media {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    height: auto;
  }

  .clinic-img-card {
    width: min(450px, 88vw);
    height: clamp(290px, 44vh, 390px);
    max-width: 100%;
    margin: 0 auto;
    border-radius: 18px;
  }

  .hero-slider-dots {
    bottom: 16px;
  }

  .about.section-soft {
    padding: 52px 0;
  }

  .about .about-grid,
  .diabetes .split-grid {
    width: min(100% - 32px, 820px);
    min-height: 0;
    align-items: center;
  }

  .about-copy h2,
  .about-copy > p:not(.eyebrow):not(.about-brandline) {
    max-width: 100%;
  }

  .stats-row {
    width: 100%;
    margin: 28px 0;
  }

  .about .btn-orange,
  .approach-cta {
    margin-left: auto;
    margin-right: auto;
  }

  .about-media {
    width: min(560px, 100%);
    min-height: 520px;
    justify-self: center;
  }

  .about-media .about-img.primary {
    left: 0;
    top: 108px;
    width: min(315px, 52%);
    height: 255px;
  }

  .about-media .about-img.secondary {
    right: 0;
    top: 0;
    width: min(440px, 72%);
    height: 500px;
  }

  .experience-badge {
    left: 12%;
    bottom: 38px;
    width: 150px;
    height: 150px;
  }

  .experience-core strong {
    font-size: 34px;
  }

  .experience-core small {
    font-size: 13px;
  }

  .treatments.section-card {
    width: min(100% - 32px, 820px);
    padding: 42px 28px 30px;
    border-radius: 34px;
  }

  .treatments .section-heading {
    margin-bottom: 30px;
  }

  .treatment-carousel,
  .treatment-grid {
    max-width: 100%;
  }

  .treatment-nav {
    height: 44px;
    width: 44px;
  }

  .treatment-page {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .treatment-card {
    min-height: 0;
  }

  .treatment-card img {
    height: 240px;
  }

  .treatment-note {
    font-size: 14px;
    text-align: center;
  }

  .diabetes.section {
    padding: 44px 0 56px;
  }

  .diabetes .shell .reveal .eyebrow {
    text-align: center;
    font-size: clamp(2rem, 5.5vw, 2.65rem);
  }

  .diabetes .shell .reveal p {
    text-align: left;
  }

  .diabetes p:not(.eyebrow),
  .feature-grid {
    max-width: 100%;
    width: 100%;
  }

  .diabetes-media {
    width: min(560px, 100%);
    min-height: 520px;
    justify-self: center;
  }

  .diabetes-media img:first-child {
    left: 0;
    width: min(330px, 48%);
  }

  .diabetes-media img:last-child {
    width: min(460px, 68%);
  }

  .doctor {
    padding: 48px 0;
  }

  .doctor-photo {
    width: min(360px, 100%);
    min-height: 360px;
    justify-self: center;
  }

  .doctor-photo img {
    height: 360px;
  }

  .approach.section-soft,
  .faq.section-soft {
    width: min(100% - 32px, 820px);
    min-height: auto;
    padding: 44px 32px;
    border-radius: 34px;
  }

  .approach-media {
    width: min(560px, 100%);
    justify-self: center;
  }

  .approach-media img {
    height: clamp(320px, 48vw, 430px);
    border-radius: 76px 0 76px 76px;
  }

  .approach-flower {
    right: -28px;
    bottom: -42px;
    width: min(170px, 24vw);
  }

  .appointment {
    min-height: auto;
    padding: 44px 0 56px;
    overflow: visible;
  }

  .appointment-grid {
    width: min(100% - 32px, 820px);
  }

  .clinic-photo img {
    height: clamp(300px, 52vw, 430px);
    border-radius: 28px;
  }

  .appointment-content {
    width: 100%;
    margin-left: 0;
  }

  .appointment-heading {
    max-width: 620px;
    margin: 0 auto 24px;
  }

  .appointment-heading .eyebrow {
    text-align: center;
  }

  .appointment-card {
    min-height: 0;
    margin: 0;
    padding: 34px 28px;
  }

  .form-watermark {
    display: none;
  }

  .blog {
    min-height: auto;
    padding: 52px 0;
  }

  .blog .shell {
    width: min(100% - 32px, 820px);
  }

  .blog-title h2 {
    white-space: normal;
  }

  .blog-card img,
  .blog-card.large img,
  .blog-card:not(.large) img {
    height: clamp(300px, 52vw, 440px);
    border-radius: 24px;
  }

  .faq-grid {
    gap: 34px;
  }

  .faq-copy h2,
  .faq-copy p:not(.eyebrow) {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-copy p:not(.eyebrow) {
    text-align: center;
  }

  .faq-cta {
    width: min(420px, 100%);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .faq-cta > i,
  .faq-cta a {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
    overflow: hidden;
    padding: 34px 24px 0;
    border-radius: 28px;
    text-align: center;
  }

  .cta-bottles {
    order: 2;
    width: min(270px, 80%);
    margin: 0 auto;
    justify-self: center;
  }

  .cta-doctor-wrap {
    order: 3;
    min-height: 250px;
  }

  .cta-doctor-wrap img {
    width: min(230px, 72%);
    max-height: 250px;
    margin: 0 auto;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-card {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 24px !important;
    padding: 32px 24px !important;
    text-align: left !important;
  }

  .footer-card > div:nth-child(1) {
    grid-column: 1 / -1 !important;
  }

  .footer-card > div:nth-child(2) {
    grid-column: 1 !important;
  }

  .footer-card > div:nth-child(3) {
    grid-column: 2 !important;
  }

  .footer-card > div:nth-child(4) {
    grid-column: 1 / -1 !important;
  }

  .footer-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-align: left !important;
  }

  .footer-brand .brand-mark {
    width: 64px !important;
    height: 64px !important;
    flex-shrink: 0 !important;
  }

  .footer-brand .brand-copy {
    display: grid !important;
  }

  .socials {
    justify-content: flex-start !important;
    align-items: center !important;
  }

  .copyright {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
    white-space: normal !important;
    padding-top: 18px !important;
    margin-top: 18px !important;
  }

  .floating-contact {
    right: 18px;
  }
}

@media (max-width: 620px) {
  :root {
    --page-shell: min(100% - 22px, 520px);
  }

  .top-strip {
    display: none;
  }

  .nav {
    min-height: 66px;
  }

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

  .brand-copy {
    display: none;
  }

  .section,
  .section-soft,
  .section-card {
    margin-bottom: 42px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  h1,
  .hero h1,
  .original-hero-slide h1,
  .promo-hero-slide h1 {
    font-size: clamp(1.35rem, 5.4vw, 1.85rem);
    line-height: 1.15;
  }

  h2,
  .section-heading h2,
  .about-copy h2,
  .blog-title h2,
  .testimonials .section-heading h2 {
    font-size: clamp(1.35rem, 5.4vw, 1.78rem) !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em;
    margin-top: 6px;
    margin-bottom: 12px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  p,
  p:not(.eyebrow),
  .hero-copy p:not(.eyebrow),
  .about-copy p,
  .doctor-copy p,
  .diabetes p:not(.eyebrow),
  .faq-copy p:not(.eyebrow) {
    font-size: 14px !important;
    line-height: 1.58 !important;
    text-align: left !important;
    text-justify: none !important;
    word-spacing: normal !important;
    letter-spacing: 0 !important;
  }

  .hero {
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: calc(100dvh - 66px);
    height: auto;
    max-height: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
  }

  .hero-slider {
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: calc(100dvh - 66px);
    height: auto;
    max-height: none;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0;
    overflow: hidden !important;
  }

  .hero-track {
    display: grid;
    grid-template-areas: "hero-slide";
    width: 100%;
    min-height: inherit;
    height: auto;
    overflow: hidden;
  }

  .hero-slide {
    grid-area: hero-slide;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 16px 16px 52px;
    overflow: hidden;
    min-height: inherit;
    height: auto;
  }

  /* Slide 1: Original Doctor Hero Slide */
  .original-hero-slide .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    min-height: 0;
    gap: 8px;
    text-align: center;
  }

  .original-hero-slide .hero-media {
    order: -1;
    min-height: 0;
    max-height: 28vh;
    margin: 0 auto 4px;
    place-items: center;
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .original-hero-slide .hero-copy {
    order: 1;
    width: 100%;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
  }

  .original-hero-slide h1 {
    font-size: clamp(1.18rem, 4.8vw, 1.58rem);
    line-height: 1.15;
    margin: 0 auto 4px auto;
    text-align: center !important;
    max-width: 95%;
  }

  .hero-copy p:not(.eyebrow),
  .original-hero-slide .hero-copy p:not(.eyebrow) {
    font-size: clamp(0.78rem, 3.1vw, 0.9rem);
    line-height: 1.4;
    margin: 4px auto 8px auto !important;
    text-align: center !important;
    text-justify: none !important;
    max-width: 92vw;
  }

  .quote-slider,
  .hero-search,
  .original-hero-slide .hero-search {
    min-height: auto;
    height: auto;
    max-height: none;
    margin: 8px auto;
    padding: 8px 14px;
    width: min(500px, 96vw);
    box-sizing: border-box;
  }

  .quote-content p {
    max-width: 100%;
    font-size: clamp(0.8rem, 3.2vw, 0.92rem);
    line-height: 1.38;
    text-align: center !important;
  }

  .quote-content cite {
    font-size: clamp(0.68rem, 2.8vw, 0.78rem);
    text-align: center !important;
    margin-top: 3px;
  }

  .rating-row,
  .promo-hero-slide .rating-row {
    gap: 4px 8px;
    margin: 8px auto 0 auto;
    padding-top: 8px;
    font-size: 10.5px;
    justify-content: center;
    text-align: center !important;
    width: 100%;
  }

  .doctor-cutout,
  .original-hero-slide .doctor-cutout {
    width: min(180px, 46vw);
    max-height: 26vh;
  }

  .doctor-cutout img {
    max-height: 26vh;
    object-fit: contain;
  }

  .hero-rings,
  .original-hero-slide .hero-rings {
    width: min(260px, 80vw);
    height: min(260px, 80vw);
  }

  .flower-cluster,
  .original-hero-slide .flower-cluster {
    top: 0;
    width: 90px;
  }

  /* Slide 2: Diabetes Hero Slide */
  .diabetes-hero-slide {
    grid-area: hero-slide;
    padding: 24px 16px 52px !important;
    width: 100%;
    min-width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: inherit;
    height: auto;
  }

  .diabetes-hero-slide .hero-copy-centered {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .diabetes-hero-slide .hero-badge {
    order: -1;
    font-size: 11px;
    padding: 5px 14px;
    margin-bottom: 10px;
  }

  .diabetes-hero-slide h1 {
    font-size: clamp(1.28rem, 5.2vw, 1.72rem);
    line-height: 1.16;
    text-align: center;
    margin: 0 auto;
    max-width: 95%;
  }

  .diabetes-hero-slide p:not(.eyebrow) {
    font-size: clamp(0.78rem, 3.2vw, 0.9rem);
    line-height: 1.4;
    margin: 8px auto 0;
    text-align: center;
    max-width: 92vw;
  }

  .hero-actions,
  .hero-actions-centered {
    width: 100%;
    max-width: 320px;
    margin: 14px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .hero-actions .btn,
  .hero-actions-centered .btn {
    width: 100%;
    max-width: 270px;
    min-height: 38px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 999px;
  }

  .rating-row-centered {
    justify-content: center;
    margin-top: 14px;
    padding-top: 10px;
    gap: 6px;
    font-size: 11px;
  }

  /* Slide 3 & 4: Clinic Branch Visit Slides (West Mambalam & Anna Nagar) */
  .visit-hero-slide {
    grid-area: hero-slide;
    padding: 16px 16px 52px;
    width: 100%;
    min-width: 100%;
    min-height: inherit;
    height: auto;
  }

  .visit-hero-slide .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    min-height: 0;
    gap: 10px;
    text-align: center;
  }

  .visit-hero-slide .hero-media,
  .visit-hero-slide .clinic-media {
    order: -1;
    min-height: 0;
    margin: 0 auto 4px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .visit-hero-slide .clinic-img-card,
  .single-clinic-card {
    width: min(340px, 88vw);
    height: clamp(160px, 26vh, 205px);
    max-height: 28vh;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }

  .visit-hero-slide .clinic-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .visit-hero-slide .hero-copy {
    order: 1;
    width: 100%;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
  }

  .visit-badge {
    font-size: 11px;
    padding: 4px 12px;
    margin-bottom: 6px;
  }

  .visit-hero-slide h1 {
    font-size: clamp(1.2rem, 4.8vw, 1.55rem);
    line-height: 1.15;
    margin: 0 auto 4px auto;
    text-align: center !important;
    max-width: 95%;
  }

  .visit-hero-slide p:not(.eyebrow) {
    font-size: clamp(0.76rem, 3vw, 0.86rem);
    line-height: 1.38;
    margin: 2px auto 8px auto;
    text-align: center !important;
    max-width: 94vw;
  }

  .visit-timing-box {
    width: min(500px, 96vw);
    padding: 10px 12px;
    margin: 6px auto;
    border-radius: 14px;
    box-sizing: border-box;
    text-align: center;
  }

  .timing-badge-header {
    justify-content: center;
    font-size: 11px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    letter-spacing: 0.3px;
  }

  .timing-slots {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .timing-slot {
    padding: 6px 4px;
    border-radius: 8px;
  }

  .slot-label {
    font-size: 10px;
    margin-bottom: 2px;
  }

  .slot-time {
    font-size: 11px;
    font-weight: 750;
    white-space: nowrap;
  }

  .visit-hero-slide .hero-actions {
    width: 100%;
    max-width: 320px;
    margin: 8px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .visit-hero-slide .hero-actions .btn {
    width: 100%;
    max-width: 270px;
    min-height: 38px;
    font-size: 13px;
    justify-content: center;
    margin: 0 auto;
  }

  .visit-phone-strip {
    width: min(500px, 96vw);
    font-size: 11px;
    padding: 8px 12px;
    margin: 8px auto 0;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    box-sizing: border-box;
    border-radius: 10px;
    gap: 6px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-slider-dots {
    bottom: 14px;
    gap: 8px;
  }

  .hero-slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    border: 2px solid var(--orange);
    background: rgba(255, 255, 255, 0.85);
  }

  .hero-slider-dots button.is-active {
    width: 28px;
    background: var(--orange);
  }

  .about.section-soft {
    padding: 42px 0;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .about .about-grid,
  .diabetes .split-grid {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .about-copy {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }

  .about-copy .eyebrow {
    font-size: 20px;
  }

  .about-copy > p:not(.eyebrow):not(.about-brandline) {
    hyphens: none;
  }

  .stats-row,
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stats-row article {
    min-height: 128px;
  }

  .about .btn-orange {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  .about-media {
    position: relative;
    width: 100%;
    max-width: 380px;
    min-height: auto;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-media .about-img.secondary {
    display: none !important;
  }

  .about-media .about-img.primary {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none !important;
    width: 100%;
    max-width: 350px;
    height: clamp(210px, 50vw, 260px);
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(55, 32, 14, 0.12);
  }

  .experience-badge {
    position: absolute;
    right: -6px;
    bottom: -14px;
    left: auto;
    top: auto;
    width: 108px;
    height: 108px;
    transform: none;
  }

  .experience-badge::before {
    inset: 28px;
  }

  .experience-ring text {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
  }

  .experience-core strong {
    font-size: 30px;
    font-weight: 700;
  }

  .experience-core small {
    font-size: 12px;
    font-weight: 700;
  }

  .treatments.section-card {
    width: min(100% - 22px, 520px);
    padding: 32px 16px 24px;
    border-radius: 26px;
  }

  .treatments .section-heading p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .treatment-page {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .treatment-card {
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .treatment-nav {
    font-size: 15px;
    height: 38px;
    width: 38px;
  }

  .treatment-nav-prev {
    left: 6px;
  }

  .treatment-nav-next {
    right: 6px;
  }

  .card-top {
    gap: 12px;
    padding-bottom: 12px;
  }

  .icon-pill {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .icon-pill i {
    font-size: 19px;
  }

  .card-top h3 {
    font-size: 15px;
  }

  .card-tag {
    font-size: 10px;
  }

  .card-arrow-btn,
  .card-top a {
    width: 34px;
    height: 34px;
  }

  .card-desc,
  .treatment-card p {
    min-height: auto;
    margin: 12px 0 14px;
    font-size: 13px;
    line-height: 1.5;
  }

  .treatment-card-img-wrap img,
  .treatment-card img {
    height: clamp(150px, 45vw, 190px);
    border-radius: 16px;
  }

  .img-badge {
    padding: 4px 10px;
    font-size: 10px;
  }

  .treatment-note {
    font-size: 13px;
    line-height: 1.52;
  }

  .diabetes .shell .reveal .eyebrow {
    font-size: clamp(1.48rem, 6vw, 1.92rem);
  }

  .diabetes .feature-grid span {
    min-height: 108px;
    font-size: 12px;
  }

  .diabetes-media {
    position: relative;
    width: 100%;
    max-width: 380px;
    min-height: auto;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .diabetes-media img:last-child,
  .diabetes-media .diabetic-img-secondary {
    display: none !important;
  }

  .diabetes-media img:first-child,
  .diabetes-media .diabetic-img-primary {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none !important;
    width: 100%;
    max-width: 350px;
    height: clamp(210px, 50vw, 260px);
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(55, 32, 14, 0.12);
  }

  .diabetes-floating-badge {
    position: absolute;
    bottom: -10px;
    right: -4px;
    left: auto;
    top: auto;
  }

  .appointment-clinic-card .clinic-overlay-img {
    width: 130px;
    height: 95px;
    bottom: 12px;
    left: 12px;
    border-width: 3px;
  }

  .clinic-photo-badge {
    top: 12px;
    left: 12px;
    padding: 6px 12px;
  }

  .clinic-photo-badge i {
    font-size: 16px;
  }

  .clinic-photo-badge strong {
    font-size: 0.82rem;
  }

  .clinic-photo-badge small {
    font-size: 0.72rem;
  }

  .doctor-grid {
    gap: 24px;
  }

  .doctor-photo,
  .doctor-photo img {
    min-height: 0;
    height: 270px;
  }

  .approach.section-soft,
  .faq.section-soft {
    width: min(100% - 22px, 520px);
    padding: 30px 18px;
    border-radius: 24px;
  }

  .approach h2 {
    font-size: clamp(1.48rem, 6vw, 1.92rem);
  }

  .approach-copy > p:not(.eyebrow),
  .approach-list p {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .approach-list {
    gap: 20px;
    margin: 24px 0 26px 8px;
    padding-left: 22px;
  }

  .approach-list article::before {
    left: -27px;
  }

  .approach-list strong {
    font-size: 1.25rem;
  }

  .approach-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .approach-media,
  .approach-flower {
    display: none !important;
  }

  .appointment {
    padding: 34px 0 42px;
  }

  .appointment-grid {
    width: min(100% - 22px, 520px);
  }

  .appointment-heading {
    margin-bottom: 18px;
  }

  .appointment-heading h2 {
    font-size: clamp(1.48rem, 6vw, 1.92rem);
  }

  .appointment-heading .eyebrow {
    font-size: 1rem;
  }

  .clinic-photo img {
    height: 270px;
  }

  .appointment-card {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .appointment-card input,
  .appointment-card select,
  .appointment-card textarea {
    min-height: 52px;
    padding: 0 14px;
    font-size: 14px;
  }

  .appointment-card textarea {
    min-height: 104px;
    padding-top: 14px;
  }

  .appointment-card .btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .blog {
    padding: 38px 0;
  }

  .blog .shell {
    width: min(100% - 22px, 520px);
  }

  .blog-title {
    margin-bottom: 22px;
  }

  .blog-title h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .blog-grid {
    gap: 24px;
  }

  .blog-card p {
    font-size: 14px;
    line-height: 1.4;
  }

  .blog-card img,
  .blog-card.large img,
  .blog-card:not(.large) img {
    height: 270px;
  }

  .faq-grid {
    gap: 26px;
  }

  .faq-list summary {
    min-height: 58px;
    font-size: 14px;
  }

  .faq-list details p {
    font-size: 13px;
    line-height: 1.55;
  }

  .cta-inner {
    padding: 28px 18px 0;
    border-radius: 24px;
  }

  .cta-inner h2 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }

  .cta-inner .btn {
    min-height: 40px;
    margin-top: 20px;
    padding: 0 22px;
    font-size: 14px;
  }

  .cta-bottles {
    width: min(230px, 86%);
  }

  .cta-doctor-wrap {
    min-height: 220px;
  }

  .cta-doctor-wrap img {
    width: min(205px, 72%);
    max-height: 220px;
  }

  .footer {
    padding: 0 0 20px !important;
  }

  .footer-card {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 22px 14px !important;
    padding: 22px 16px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }

  .footer-card > div:nth-child(1) {
    grid-column: 1 / -1 !important;
  }

  .footer-card > div:nth-child(2) {
    grid-column: 1 !important;
  }

  .footer-card > div:nth-child(3) {
    grid-column: 2 !important;
  }

  .footer-card > div:nth-child(4) {
    grid-column: 1 / -1 !important;
  }

  .footer-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
  }

  .footer-brand .brand-mark {
    width: 56px !important;
    height: 56px !important;
    flex-shrink: 0 !important;
  }

  .footer-brand .brand-copy {
    display: grid !important;
    gap: 2px !important;
  }

  .footer-brand .brand-copy strong {
    color: var(--orange) !important;
    font-size: 15px !important;
    line-height: 1.1 !important;
  }

  .footer-brand .brand-copy small {
    color: var(--green) !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
  }

  .footer-card p {
    color: #444444 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
    text-align: left !important;
  }

  .footer h3 {
    color: var(--orange) !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.4px !important;
    text-align: left !important;
  }

  .footer-card div:nth-child(2) a,
  .footer-card div:nth-child(3) a {
    display: block !important;
    padding: 3px 0 !important;
    color: #222222 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    text-align: left !important;
  }

  .socials {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 14px !important;
  }

  .socials a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 10px !important;
  }

  .socials a i,
  .socials i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-size: 15px !important;
    line-height: 1 !important;
    text-align: center !important;
  }

  .copyright {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 6px !important;
    white-space: normal !important;
    font-size: 11.5px !important;
    padding-top: 14px !important;
    margin-top: 14px !important;
    border-top: 1px solid rgba(234, 90, 5, 0.16) !important;
  }

  .copyright span {
    white-space: normal !important;
    text-align: center !important;
    color: #444444 !important;
    font-weight: 600 !important;
  }

  .copyright a {
    color: var(--orange) !important;
    font-weight: 800 !important;
  }

  .floating-contact {
    right: 12px;
    bottom: 16px;
    gap: 8px;
  }

  .float-btn {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .float-btn i {
    width: 19px;
    height: 19px;
    font-size: 19px;
  }

  .float-btn span {
    display: none;
  }
}

@media (max-width: 420px) {
  :root {
    --page-shell: min(100% - 18px, 390px);
  }

  .hero-actions,
  .hero-actions-centered {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 8px auto 0;
  }

  .hero-actions .btn,
  .hero-actions-centered .btn {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }

  .quote-content p {
    font-size: 0.94rem;
  }

  .treatments.section-card {
    padding-left: 12px;
    padding-right: 12px;
  }

  .treatment-card {
    padding: 14px;
  }

  .appointment-card {
    padding: 22px 14px;
  }

  .cta-inner {
    padding: 24px 14px 0;
  }

  .floating-contact {
    right: 10px;
    bottom: 12px;
  }

  .float-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

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